diff --git a/Makefile b/Makefile index 44f59b4f93..b729bd33ad 100644 --- a/Makefile +++ b/Makefile @@ -517,3 +517,27 @@ test: @echo "Running quick static tests" uv run pytest -m 'not buildonlytest' @./scripts/check_dockerfile_alignment.sh + + +#This is temporary lock on the final implementation that will covers all the folders should apply smart logic for the locks +CPU_INDEX=https://console.redhat.com/api/pypi/public-rhai/rhoai/3.0/cpu-ubi9/simple/ +CUDA_INDEX=https://console.redhat.com/api/pypi/public-rhai/rhoai/3.0/cuda-ubi9/simple/ +ROCM_INDEX=https://console.redhat.com/api/pypi/public-rhai/rhoai/3.0/rocm-ubi9/simple/ + +lock-cuda: + uv pip compile \ + --python-platform=linux \ + jupyter/minimal/ubi9-python-3.12/pyproject.toml \ + --index-url=$(CUDA_INDEX) \ + --output-file=jupyter/minimal/ubi9-python-3.12/uv.lock/pylock.cuda.toml \ + --python-version=3.12 + + +lock-rocm: + uv pip compile \ + --python-platform=linux \ + jupyter/minimal/ubi9-python-3.12/pyproject.toml \ + --index-url=$(ROCM_INDEX) \ + --output-file=jupyter/minimal/ubi9-python-3.12/uv.lock/pylock.rocm.toml \ + --python-version=3.12 + diff --git a/jupyter/minimal/ubi9-python-3.12/Dockerfile.konflux.cuda b/jupyter/minimal/ubi9-python-3.12/Dockerfile.konflux.cuda index 3c741d9715..5449430961 100644 --- a/jupyter/minimal/ubi9-python-3.12/Dockerfile.konflux.cuda +++ b/jupyter/minimal/ubi9-python-3.12/Dockerfile.konflux.cuda @@ -79,13 +79,16 @@ ENV PATH="/usr/local/texlive/bin/linux:/usr/local/pandoc/bin:$PATH" USER 1001 -COPY ${MINIMAL_SOURCE_CODE}/pylock.toml ${MINIMAL_SOURCE_CODE}/start-notebook.sh ./ +COPY ${MINIMAL_SOURCE_CODE}/uv.lock/pylock.cuda.toml ${MINIMAL_SOURCE_CODE}/start-notebook.sh ./ + +# Makes available the internal python package index from aipcc on the container runtime +COPY ${MINIMAL_SOURCE_CODE}/cuda-pip.conf /etc/pip.conf # Install Python dependencies from requirements.txt file RUN echo "Installing softwares and packages" && \ # This may have to download and compile some dependencies, and as we don't lock requirements from `build-system.requires`, # we often don't know the correct hashes and `--require-hashes` would therefore fail on non amd64, where building is common. - uv pip install --strict --no-deps --no-cache --no-config --no-progress --verify-hashes --compile-bytecode --index-strategy=unsafe-best-match --requirements=./pylock.toml && \ + uv pip install --strict --no-deps --no-cache --no-config --no-progress --verify-hashes --compile-bytecode --index-strategy=unsafe-best-match --requirements=./pylock.cuda.toml && \ # Disable announcement plugin of jupyterlab \ jupyter labextension disable "@jupyterlab/apputils-extension:announcements" && \ # Replace Notebook's launcher, "(ipykernel)" with Python's version 3.x.y \ diff --git a/jupyter/minimal/ubi9-python-3.12/Dockerfile.konflux.rocm b/jupyter/minimal/ubi9-python-3.12/Dockerfile.konflux.rocm index 0dfa9b3db8..36716c1a7e 100644 --- a/jupyter/minimal/ubi9-python-3.12/Dockerfile.konflux.rocm +++ b/jupyter/minimal/ubi9-python-3.12/Dockerfile.konflux.rocm @@ -67,13 +67,16 @@ ENV PATH="/usr/local/texlive/bin/linux:/usr/local/pandoc/bin:$PATH" USER 1001 -COPY ${MINIMAL_SOURCE_CODE}/pylock.toml ${MINIMAL_SOURCE_CODE}/start-notebook.sh ./ +COPY ${MINIMAL_SOURCE_CODE}/uv.lock/pylock.rocm.toml ${MINIMAL_SOURCE_CODE}/start-notebook.sh ./ + +# Makes available the internal python package index from aipcc on the container runtime +COPY ${MINIMAL_SOURCE_CODE}/rocm-pip.conf /etc/pip.conf # Install Python dependencies from Pipfile.lock file RUN echo "Installing softwares and packages" && \ # This may have to download and compile some dependencies, and as we don't lock requirements from `build-system.requires`, # we often don't know the correct hashes and `--require-hashes` would therefore fail on non amd64, where building is common. - uv pip install --strict --no-deps --no-cache --no-config --no-progress --verify-hashes --compile-bytecode --index-strategy=unsafe-best-match --requirements=./pylock.toml && \ + uv pip install --strict --no-deps --no-cache --no-config --no-progress --verify-hashes --compile-bytecode --index-strategy=unsafe-best-match --requirements=./pylock.rocm.toml && \ # Disable announcement plugin of jupyterlab \ jupyter labextension disable "@jupyterlab/apputils-extension:announcements" && \ # Replace Notebook's launcher, "(ipykernel)" with Python's version 3.x.y \ diff --git a/jupyter/minimal/ubi9-python-3.12/cuda-pip.conf b/jupyter/minimal/ubi9-python-3.12/cuda-pip.conf new file mode 100644 index 0000000000..3ba153d5b6 --- /dev/null +++ b/jupyter/minimal/ubi9-python-3.12/cuda-pip.conf @@ -0,0 +1,8 @@ +[global] +index-url = https://console.redhat.com/api/pypi/public-rhai/rhoai/3.0/cuda-ubi9/simple/ + +# Optional fallback (if you *do* want PyPI as backup) +extra-index-url = https://pypi.org/simple/ + +[install] +trusted-host = console.redhat.com diff --git a/jupyter/minimal/ubi9-python-3.12/rocm-pip.conf b/jupyter/minimal/ubi9-python-3.12/rocm-pip.conf new file mode 100644 index 0000000000..3ba153d5b6 --- /dev/null +++ b/jupyter/minimal/ubi9-python-3.12/rocm-pip.conf @@ -0,0 +1,8 @@ +[global] +index-url = https://console.redhat.com/api/pypi/public-rhai/rhoai/3.0/cuda-ubi9/simple/ + +# Optional fallback (if you *do* want PyPI as backup) +extra-index-url = https://pypi.org/simple/ + +[install] +trusted-host = console.redhat.com diff --git a/jupyter/minimal/ubi9-python-3.12/uv.lock/pylock.cuda.toml b/jupyter/minimal/ubi9-python-3.12/uv.lock/pylock.cuda.toml new file mode 100644 index 0000000000..6fad6083b4 --- /dev/null +++ b/jupyter/minimal/ubi9-python-3.12/uv.lock/pylock.cuda.toml @@ -0,0 +1,604 @@ +# This file was autogenerated by uv via the following command: +# uv pip compile --python-platform=linux jupyter/minimal/ubi9-python-3.12/pyproject.toml --output-file=jupyter/minimal/ubi9-python-3.12/uv.lock/pylock.cuda.toml --python-version=3.12 +lock-version = "1.0" +created-by = "uv" +requires-python = ">=3.12" + +[[packages]] +name = "aiohappyeyeballs" +version = "2.6.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/aiohappyeyeballs-2.6.1-8-py3-none-any.whl", hashes = { sha256 = "a8d5b4252b213865e06ca787f505f8955959aceae8230864e99002d5f9c97253" } }] + +[[packages]] +name = "aiohttp" +version = "3.13.1" +wheels = [ + { url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/aiohttp-3.13.1-8-cp312-cp312-linux_aarch64.whl", hashes = { sha256 = "e69aaef4103e1db0a89297b0325d056fd1bed2c740891eea6af22df29d5dde9e" } }, + { url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/aiohttp-3.13.1-8-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "c58b83d2efe698efbf1593952deed99b4e6b39e0f49d6b3020772dbd7166de8f" } }, +] + +[[packages]] +name = "aiosignal" +version = "1.4.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/aiosignal-1.4.0-8-py3-none-any.whl", hashes = { sha256 = "ed2c26cb3b0c8489d521688060a029e774a7508b4787d63e3e60287f61eeed60" } }] + +[[packages]] +name = "anyio" +version = "4.11.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/anyio-4.11.0-8-py3-none-any.whl", hashes = { sha256 = "35425ce0d2a2d623e30af7d0229dcc5f9a3e97f9df163dfa21c232afec14082a" } }] + +[[packages]] +name = "argon2-cffi" +version = "25.1.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/argon2_cffi-25.1.0-8-py3-none-any.whl", hashes = { sha256 = "08f7e838d6b46e3e150c706a1fd12628a640cc7a5493af14aae27b3a481fc625" } }] + +[[packages]] +name = "argon2-cffi-bindings" +version = "25.1.0" +wheels = [ + { url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/argon2_cffi_bindings-25.1.0-8-cp312-abi3-linux_aarch64.whl", hashes = { sha256 = "458af6cd03ac30f13e28437527029bb095bfa090dcd65c69b463ff46d15e1bcd" } }, + { url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/argon2_cffi_bindings-25.1.0-8-cp312-abi3-linux_x86_64.whl", hashes = { sha256 = "33392d72ff879cc98ccfa4b6519c98a85cba9c236785367d7fad66ef62331ab5" } }, +] + +[[packages]] +name = "arrow" +version = "1.3.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/arrow-1.3.0-8-py3-none-any.whl", hashes = { sha256 = "cb398119b6fe10efcffa70bbb7471d547c151398a05263ba0e1552a9990588be" } }] + +[[packages]] +name = "asttokens" +version = "3.0.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/asttokens-3.0.0-8-py3-none-any.whl", hashes = { sha256 = "71cd1f509505adf61cfb62e83f390d05760f2a1add76e9c7229f62ef65e28059" } }] + +[[packages]] +name = "async-lru" +version = "2.0.5" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/async_lru-2.0.5-8-py3-none-any.whl", hashes = { sha256 = "410e8e518985fb8ce849fe83e115f33f1d3db4d7a576fc2b7157c08fc04d35e9" } }] + +[[packages]] +name = "attrs" +version = "25.4.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/attrs-25.4.0-8-py3-none-any.whl", hashes = { sha256 = "5a1cc08bb88c20c7732b15f04b307ccca0c110eb35fb4a28013c72b3f68a703b" } }] + +[[packages]] +name = "babel" +version = "2.17.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/babel-2.17.0-8-py3-none-any.whl", hashes = { sha256 = "b9388e2d88d8ec3483e4f9644f365e2e70237b2d1233000cca08592d5fb444db" } }] + +[[packages]] +name = "beautifulsoup4" +version = "4.14.2" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/beautifulsoup4-4.14.2-8-py3-none-any.whl", hashes = { sha256 = "84b96cdfe59a81cddb0a77b2c697953e297309fa1038addd768bd35eded5a926" } }] + +[[packages]] +name = "bleach" +version = "6.2.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/bleach-6.2.0-8-py3-none-any.whl", hashes = { sha256 = "4d97914411cd135988468ab46718635406a345d6deb137ad0606f20a76602936" } }] + +[[packages]] +name = "certifi" +version = "2025.10.5" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/certifi-2025.10.5-8-py3-none-any.whl", hashes = { sha256 = "446369f557ba1ec0497be45bbd466075ae1858c98407cdd331607eb961e1ea7a" } }] + +[[packages]] +name = "cffi" +version = "2.0.0" +marker = "python_full_version < '3.14'" +wheels = [ + { url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/cffi-2.0.0-8-cp312-cp312-linux_aarch64.whl", hashes = { sha256 = "b1299cd730e9f0a4ef69f93c113f1b5956d470ec37199f8640511110c947157d" } }, + { url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/cffi-2.0.0-8-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "abccfc752856e08035310135e05e04b135db0b30447331b08a2e7211256f09e9" } }, +] + +[[packages]] +name = "charset-normalizer" +version = "3.4.4" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/charset_normalizer-3.4.4-8-py3-none-any.whl", hashes = { sha256 = "7ed70ac91a02e9070b375cf804522191fe78b7d5a276af53907ac5e8ec5ba8d8" } }] + +[[packages]] +name = "colorama" +version = "0.4.6" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/colorama-0.4.6-8-py2.py3-none-any.whl", hashes = { sha256 = "8db04440e6c85aef47246d23558a8aa81bb29b22fc2776528819919f2483250d" } }] + +[[packages]] +name = "comm" +version = "0.2.3" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/comm-0.2.3-8-py3-none-any.whl", hashes = { sha256 = "0b6fc004104320c03a1bf9f1261613fbc451ae8bb6a9d013721c0eb403d0c9eb" } }] + +[[packages]] +name = "debugpy" +version = "1.8.17" +wheels = [ + { url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/debugpy-1.8.17-8-cp312-cp312-linux_aarch64.whl", hashes = { sha256 = "adb89704005901e2f06af079ed820830f13a542e2569054c159984e27a85bd30" } }, + { url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/debugpy-1.8.17-8-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "17f88b9d8eeff81e3c4b382308dd269f8b0651ebc851534d29a33208c5a819c6" } }, +] + +[[packages]] +name = "decorator" +version = "5.2.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/decorator-5.2.1-8-py3-none-any.whl", hashes = { sha256 = "00948518ae0f9094c82f683d474ca702f4b1a4ef098d09b30a5c645de586287d" } }] + +[[packages]] +name = "defusedxml" +version = "0.7.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/defusedxml-0.7.1-8-py2.py3-none-any.whl", hashes = { sha256 = "3e34fec001869e971125507af855df9dab06bd5bd4d40a4b2955ef0b90c0821c" } }] + +[[packages]] +name = "executing" +version = "2.2.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/executing-2.2.1-8-py2.py3-none-any.whl", hashes = { sha256 = "f70f37dccebbc518bdd453620304ceb4dfc8bb0167e703b2413753416f85747b" } }] + +[[packages]] +name = "fastjsonschema" +version = "2.21.2" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/fastjsonschema-2.21.2-8-py3-none-any.whl", hashes = { sha256 = "404c045523a1f51a51c9c6b2c1292d3a81e7f7ed499cca49f057660850663e18" } }] + +[[packages]] +name = "fqdn" +version = "1.5.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/fqdn-1.5.1-8-py3-none-any.whl", hashes = { sha256 = "d27d850a7a03408f36678ab5b5313e776025048657c81fd0341ea5776de76650" } }] + +[[packages]] +name = "frozenlist" +version = "1.8.0" +wheels = [ + { url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/frozenlist-1.8.0-8-cp312-cp312-linux_aarch64.whl", hashes = { sha256 = "878599773633f430a14567c6a1369346c061bd85c193c93a5da16e6fcde25bde" } }, + { url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/frozenlist-1.8.0-8-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "9eb258ba0eb67e4c39e9c912aab6e82774c322d9b396f560bbfb733316ea39fe" } }, +] + +[[packages]] +name = "gitdb" +version = "4.0.12" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/gitdb-4.0.12-8-py3-none-any.whl", hashes = { sha256 = "a9bf940f82edad57d02f896d455f61a2317005e304866b34b70de4ef905a32cc" } }] + +[[packages]] +name = "gitpython" +version = "3.1.45" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/gitpython-3.1.45-8-py3-none-any.whl", hashes = { sha256 = "eb2513894e813f1cbe388c9c6b66e99d897f5ec5a4d5cb74b90f8b8122d4490d" } }] + +[[packages]] +name = "h11" +version = "0.16.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/h11-0.16.0-8-py3-none-any.whl", hashes = { sha256 = "fba81515258cd638cd279a37eb7e7cb5519ff1fec9e831f22388c1ac0a2d5b79" } }] + +[[packages]] +name = "httpcore" +version = "1.0.9" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/httpcore-1.0.9-8-py3-none-any.whl", hashes = { sha256 = "7681309a2e123b904763f96846b94d12a341166356cffd6b197049da51e4a22c" } }] + +[[packages]] +name = "httpx" +version = "0.28.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/httpx-0.28.1-8-py3-none-any.whl", hashes = { sha256 = "ef83138bcfcd94f1093487bfb2e18bb8616d496e752b6784441b2927baaea3cc" } }] + +[[packages]] +name = "idna" +version = "3.11" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/idna-3.11-8-py3-none-any.whl", hashes = { sha256 = "5a7e8ce4b9437bcf84ca0c0b1a6e35fdac09e8f6698bd5e776347facbc1e3599" } }] + +[[packages]] +name = "ipykernel" +version = "7.0.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/ipykernel-7.0.1-8-py3-none-any.whl", hashes = { sha256 = "c13292923b3599bb3f456891634aca6c89d5e0f9fb87ed38fecbd1df52e5e617" } }] + +[[packages]] +name = "ipython" +version = "9.6.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/ipython-9.6.0-8-py3-none-any.whl", hashes = { sha256 = "501b37f909d326a66e53dc07d6e915f856793adb30742f2a61ff718925b671b8" } }] + +[[packages]] +name = "ipython-pygments-lexers" +version = "1.1.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/ipython_pygments_lexers-1.1.1-8-py3-none-any.whl", hashes = { sha256 = "f493cc82ef1f75d3bdee48ce41478720aeb2acbf37e5c4188978ce2ab675ea7f" } }] + +[[packages]] +name = "isoduration" +version = "20.11.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/isoduration-20.11.0-8-py3-none-any.whl", hashes = { sha256 = "f4b1941d204b46a3a5ca0bf5afeed718171aa1ef8ca5980bcbd66dedc7728112" } }] + +[[packages]] +name = "jedi" +version = "0.19.2" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/jedi-0.19.2-8-py2.py3-none-any.whl", hashes = { sha256 = "13d2c547bcff03daddb1e1c96668e6ef1ba006ec90ef89a923f10cd8d9a2cd56" } }] + +[[packages]] +name = "jinja2" +version = "3.1.6" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/jinja2-3.1.6-8-py3-none-any.whl", hashes = { sha256 = "44862ece643b09a296408560eb88f4adc66bb0f5da5346633e91e39dc8a12857" } }] + +[[packages]] +name = "json5" +version = "0.12.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/json5-0.12.1-8-py3-none-any.whl", hashes = { sha256 = "5fc539aaa7abea4fd07e2b6055578bebf0eeee203911dfc5fd2b700bd20cfd0b" } }] + +[[packages]] +name = "jsonpointer" +version = "3.0.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/jsonpointer-3.0.0-8-py2.py3-none-any.whl", hashes = { sha256 = "220b113ace952a67a872a3d2991f1b57bf687371d04356dc155038442041f747" } }] + +[[packages]] +name = "jsonschema" +version = "4.25.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/jsonschema-4.25.1-8-py3-none-any.whl", hashes = { sha256 = "da86626c060580b27a67486e68d95a0bc4da43e965c84057fa5330ad5458b55c" } }] + +[[packages]] +name = "jsonschema-specifications" +version = "2025.9.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/jsonschema_specifications-2025.9.1-8-py3-none-any.whl", hashes = { sha256 = "64268997c86da5a0ca49cdd20e5edd36b435655e2d1288e90e5b337b5f7805aa" } }] + +[[packages]] +name = "jupyter-client" +version = "8.6.3" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/jupyter_client-8.6.3-8-py3-none-any.whl", hashes = { sha256 = "2fc9a4b9a9dffc34293a5e0570a85c891073ec02e345e29e90e5a968fa74ace8" } }] + +[[packages]] +name = "jupyter-core" +version = "5.9.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/jupyter_core-5.9.1-8-py3-none-any.whl", hashes = { sha256 = "f9101879ff775c6e617bf80d64cbc9670605568b8b5cd89b24a5ae617dc4ef37" } }] + +[[packages]] +name = "jupyter-events" +version = "0.12.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/jupyter_events-0.12.0-8-py3-none-any.whl", hashes = { sha256 = "8d1b2cc42f06d228c9cfdfec4a0b9a7c43d70aa0317174e90984a54e42df308d" } }] + +[[packages]] +name = "jupyter-lsp" +version = "2.3.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/jupyter_lsp-2.3.0-8-py3-none-any.whl", hashes = { sha256 = "c943bef95d62f91f161466167f25bffe6e604789e4d2672e8288ce868e4e2ad9" } }] + +[[packages]] +name = "jupyter-server" +version = "2.17.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/jupyter_server-2.17.0-8-py3-none-any.whl", hashes = { sha256 = "5f0b66e2c9abd62909b359ee9256f90d2ea0bd0454e02b65d6e48cd36f2b1023" } }] + +[[packages]] +name = "jupyter-server-mathjax" +version = "0.2.6" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/jupyter_server_mathjax-0.2.6-py3-none-any.whl", hashes = { sha256 = "416389dde2010df46d5fbbb7adb087a5607111070af65a1445391040f2babb5e" } }] + +[[packages]] +name = "jupyter-server-proxy" +version = "4.4.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/jupyter_server_proxy-4.4.0-8-py3-none-any.whl", hashes = { sha256 = "d369efe5beeacf5ba460a6a355c5dad9390f4d9d9750a6c9bcc46c1deed7a046" } }] + +[[packages]] +name = "jupyter-server-terminals" +version = "0.5.3" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/jupyter_server_terminals-0.5.3-8-py3-none-any.whl", hashes = { sha256 = "d33381cb638a65ade4f5f5b1e8dbb8982194b81cd70fb3bf5b506d5448a5b33c" } }] + +[[packages]] +name = "jupyterlab" +version = "4.4.9" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/jupyterlab-4.4.9-8-py3-none-any.whl", hashes = { sha256 = "72f8dc23cb847e48430527aba4cbcfe258a98aaa518cf0302ca5ec85295fc6ea" } }] + +[[packages]] +name = "jupyterlab-git" +version = "0.51.2" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/jupyterlab_git-0.51.2-8-py3-none-any.whl", hashes = { sha256 = "d8a87a2075f4b4431b6e3095bc2e6880b2b0ec77c85a7c4d30207f74a1fd4c18" } }] + +[[packages]] +name = "jupyterlab-pygments" +version = "0.3.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/jupyterlab_pygments-0.3.0-9-py3-none-any.whl", hashes = { sha256 = "3467784e2099b1e56615965f6b58e7b6ace6b3a1e716e4fe40852c755f13bdb6" } }] + +[[packages]] +name = "jupyterlab-server" +version = "2.27.3" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/jupyterlab_server-2.27.3-8-py3-none-any.whl", hashes = { sha256 = "51ba03c6e8a29e110d2ef832cd87c177de30ad84244f48364b63fc6906e82c8a" } }] + +[[packages]] +name = "lark" +version = "1.3.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/lark-1.3.0-8-py3-none-any.whl", hashes = { sha256 = "c0e8e5fa92b9ac64faaa9d10924c99f76535cf688277dfd50057bfde2cd014fd" } }] + +[[packages]] +name = "markupsafe" +version = "3.0.3" +wheels = [ + { url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/markupsafe-3.0.3-8-cp312-cp312-linux_aarch64.whl", hashes = { sha256 = "818c75c5a7bfe710e1fab5a50689aa25f9b1b976de6a5176c9ba6d46477f0628" } }, + { url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/markupsafe-3.0.3-8-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "4d7a65e71ac7605edd4acaf1e4e55d62e15c695528be2517a0566563b0290214" } }, +] + +[[packages]] +name = "matplotlib-inline" +version = "0.1.7" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/matplotlib_inline-0.1.7-8-py3-none-any.whl", hashes = { sha256 = "f5ab739619bd3aa1d354ea682c74cd59695133db38f6d9f3f096e2adf6670243" } }] + +[[packages]] +name = "mistune" +version = "3.1.4" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/mistune-3.1.4-8-py3-none-any.whl", hashes = { sha256 = "b99af5c067e3a331d461d1bb9e727b3dd81379a71b31ee66656d4fc249aa2d63" } }] + +[[packages]] +name = "multidict" +version = "6.7.0" +wheels = [ + { url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/multidict-6.7.0-8-cp312-cp312-linux_aarch64.whl", hashes = { sha256 = "a2ecb8445dc402f5451417fbbd9355e7506a35adb1e1b2dd3ac5de599ec6e70a" } }, + { url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/multidict-6.7.0-8-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "8fdf1d51551745edda4007ce4bfd593b2b43bb7f50e1edb32bfad69471a535e1" } }, +] + +[[packages]] +name = "nbclient" +version = "0.10.2" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/nbclient-0.10.2-8-py3-none-any.whl", hashes = { sha256 = "136290c1ca87f605c2b9b9f8282511ae46dad21f04ddc42e8569b82186a6a974" } }] + +[[packages]] +name = "nbconvert" +version = "7.16.6" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/nbconvert-7.16.6-8-py3-none-any.whl", hashes = { sha256 = "cec53ae7939c1150db78e7670f038354b99aacdf8918c14632cb9c353618fe9c" } }] + +[[packages]] +name = "nbdime" +version = "4.0.2" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/nbdime-4.0.2-8-py3-none-any.whl", hashes = { sha256 = "0d20d33c9283ee4a2a32bc3ca4f279a7fc9da1934bcc983a2dbf0463cc2a3107" } }] + +[[packages]] +name = "nbformat" +version = "5.10.4" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/nbformat-5.10.4-8-py3-none-any.whl", hashes = { sha256 = "6a2cc8da344d842f06bd7aec40d87316f7a83a52d640b5a43e4514a4a29325a3" } }] + +[[packages]] +name = "nbgitpuller" +version = "1.2.2" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/nbgitpuller-1.2.2-8-py2.py3-none-any.whl", hashes = { sha256 = "8ced33b5658258abba83eb264ec706f5127d81d80125f9e8dec380d9551ba354" } }] + +[[packages]] +name = "nest-asyncio" +version = "1.6.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/nest_asyncio-1.6.0-8-py3-none-any.whl", hashes = { sha256 = "bf6bc796e039c57c80134acad2bd42f3e347e14f0810b3d6d838c066c550f859" } }] + +[[packages]] +name = "notebook-shim" +version = "0.2.4" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/notebook_shim-0.2.4-8-py3-none-any.whl", hashes = { sha256 = "ef82ab57c93cedc7f6229e21395719b8215cb5b662bceea02593c9a49198d7a4" } }] + +[[packages]] +name = "odh-jupyter-trash-cleanup" +version = "0.1.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/odh_jupyter_trash_cleanup-0.1.1-8-py3-none-any.whl", hashes = { sha256 = "0095fcc8172c78e9820b4b78c4cf3ab8832eb9dbe35bb698fbfc6d25e0d6e150" } }] + +[[packages]] +name = "packaging" +version = "25.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/packaging-25.0-8-py3-none-any.whl", hashes = { sha256 = "7d473c23d59e2ece8ba40e1995e6ab09786f16bb09e97fc4bbab783cf6c750ff" } }] + +[[packages]] +name = "pandocfilters" +version = "1.5.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/pandocfilters-1.5.1-8-py2.py3-none-any.whl", hashes = { sha256 = "7c2e2aaa3f71230c3912328cfd3f57870db3d99446dc8be7e52cf747430e2e61" } }] + +[[packages]] +name = "parso" +version = "0.8.5" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/parso-0.8.5-8-py2.py3-none-any.whl", hashes = { sha256 = "51dd41d45bd53b3296e382cf515e1523fcd808ea1c1a2612f515986e77f0a4fd" } }] + +[[packages]] +name = "pexpect" +version = "4.9.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/pexpect-4.9.0-8-py2.py3-none-any.whl", hashes = { sha256 = "cabcf8de55e57320396ff976aeb6053f71c9fcd9403edaf11b617a6d43c77454" } }] + +[[packages]] +name = "platformdirs" +version = "4.5.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/platformdirs-4.5.0-8-py3-none-any.whl", hashes = { sha256 = "f6fdf7d9301fd7fc3c15805deb4f8ca67c13c92d2d15d4415386784200b0b2f7" } }] + +[[packages]] +name = "prometheus-client" +version = "0.23.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/prometheus_client-0.23.1-8-py3-none-any.whl", hashes = { sha256 = "34c78d5f809cc8098a7a01996c5347be2dc3667f8c38c2bc8c7fafb3c340a61f" } }] + +[[packages]] +name = "prompt-toolkit" +version = "3.0.52" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/prompt_toolkit-3.0.52-8-py3-none-any.whl", hashes = { sha256 = "fdc2fd3ca26c3320114c38c6fbd0ea89c104aac9b47ce57bcce876d0956ccab1" } }] + +[[packages]] +name = "propcache" +version = "0.4.1" +wheels = [ + { url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/propcache-0.4.1-8-cp312-cp312-linux_aarch64.whl", hashes = { sha256 = "84fc66ac6596f7ba38f159f409c695d23a6fcaeba09d0425452e47b422743827" } }, + { url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/propcache-0.4.1-8-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "8399a22642cc045c7198f06324c5806c1a9afb1201f963173a36941f5f1d18c2" } }, +] + +[[packages]] +name = "psutil" +version = "7.1.0" +wheels = [ + { url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/psutil-7.1.0-9-cp36-abi3-linux_aarch64.whl", hashes = { sha256 = "f054a636be0a803a2cdc8380593fd3b4da4f7ae6e42358a7d6832bb51df60398" } }, + { url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/psutil-7.1.0-9-cp36-abi3-linux_x86_64.whl", hashes = { sha256 = "3a102a98e58461024392c169ba13527c94082b2b748df649db30edfe5e62ad5d" } }, +] + +[[packages]] +name = "ptyprocess" +version = "0.7.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/ptyprocess-0.7.0-8-py2.py3-none-any.whl", hashes = { sha256 = "e8a9826938b926f649b85398ebabae7b388329af7de297f23cdeea0044f37a3f" } }] + +[[packages]] +name = "pure-eval" +version = "0.2.3" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/pure_eval-0.2.3-8-py3-none-any.whl", hashes = { sha256 = "50c3772b5e43de2b57c83ee7386f665684af256158665843dd52ac279cd9bf10" } }] + +[[packages]] +name = "pycparser" +version = "2.23" +marker = "python_full_version < '3.14' and implementation_name != 'PyPy'" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/pycparser-2.23-8-py3-none-any.whl", hashes = { sha256 = "5d765f3e944d3e9ba1080558588f8e52861ffe39f01cb84c8bf9c4507c6f215b" } }] + +[[packages]] +name = "pygments" +version = "2.19.2" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/pygments-2.19.2-8-py3-none-any.whl", hashes = { sha256 = "a412437581a9df0b86761b7e364435236594ff91aaef206a2027a4825773ca70" } }] + +[[packages]] +name = "python-dateutil" +version = "2.9.0.post0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/python_dateutil-2.9.0.post0-8-py2.py3-none-any.whl", hashes = { sha256 = "a9fe5057f8d9b853dcf5b845053f902d4e2f2ba08ecf3c9a83e887e767288895" } }] + +[[packages]] +name = "python-json-logger" +version = "4.0.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/python_json_logger-4.0.0-8-py3-none-any.whl", hashes = { sha256 = "73a96c5b5de1d5b7fb630f77b5d7a640fadf06fdefae90e348ca751ffb38532f" } }] + +[[packages]] +name = "pyyaml" +version = "6.0.3" +wheels = [ + { url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/pyyaml-6.0.3-8-cp312-cp312-linux_aarch64.whl", hashes = { sha256 = "0f0c4fb803b84633b5f7464f064f4b4f09b80d468e04a243c2d09399aa2fd5f6" } }, + { url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/pyyaml-6.0.3-8-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "72bd3b1a7f6bc575a139bcdf4482ed030ab8d4abc811dd21cf1d8ad5aa190df0" } }, +] + +[[packages]] +name = "pyzmq" +version = "27.1.0" +wheels = [ + { url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/pyzmq-27.1.0-8-cp312-cp312-linux_aarch64.whl", hashes = { sha256 = "b850f32b6d8d49f1e33f1bd52154bd6da627996bfc31255f3b792d07009c9f9c" } }, + { url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/pyzmq-27.1.0-8-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "3fda2271433f99c80726e19a364b347e314bc24bd4480980a4b3f3fd10850b9a" } }, +] + +[[packages]] +name = "referencing" +version = "0.37.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/referencing-0.37.0-8-py3-none-any.whl", hashes = { sha256 = "6b9f76d76dcca1c39233e0fab4060aeafbc6f5deff0721612d969e04eb123675" } }] + +[[packages]] +name = "requests" +version = "2.32.5" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/requests-2.32.5-8-py3-none-any.whl", hashes = { sha256 = "04dd827577c257f28f22e499f30f8889fb4dd2aa701a66b71771bb9697a85ca0" } }] + +[[packages]] +name = "rfc3339-validator" +version = "0.1.4" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/rfc3339_validator-0.1.4-8-py2.py3-none-any.whl", hashes = { sha256 = "642e557f43a43084aa3015b2bf917f8c9f18c7a1b1e2d2005458c7cd82d6db4f" } }] + +[[packages]] +name = "rfc3986-validator" +version = "0.1.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/rfc3986_validator-0.1.1-8-py2.py3-none-any.whl", hashes = { sha256 = "42bb0270115f59d967d5a8ab1739b4bb265dbe1973e0b9e8ab61151b5b9a14c6" } }] + +[[packages]] +name = "rfc3987-syntax" +version = "1.1.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/rfc3987_syntax-1.1.0-8-py3-none-any.whl", hashes = { sha256 = "a13d59945950bb59f7ee4c36ca8fa3b6ffa3e3b0e9bbcca414d9cd15370e11aa" } }] + +[[packages]] +name = "rpds-py" +version = "0.27.1" +wheels = [ + { url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/rpds_py-0.27.1-8-cp312-cp312-linux_aarch64.whl", hashes = { sha256 = "e92dba81df0c9e679a54e4b7d0b496ce3496f2147aa7355f46f57ff76e85a1b9" } }, + { url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/rpds_py-0.27.1-8-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "0422ae7bb25eedc859af6f723e7b67234d9bc6e2537d6206a93f143803f4ef29" } }, +] + +[[packages]] +name = "send2trash" +version = "1.8.3" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/send2trash-1.8.3-8-py3-none-any.whl", hashes = { sha256 = "68135a966f47c0a60b30cdfd350a5a789c676644f0ba69124a666f1889f401a6" } }] + +[[packages]] +name = "setuptools" +version = "80.9.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/setuptools-80.9.0-8-py3-none-any.whl", hashes = { sha256 = "c9d1294239d456d3f336548960cb2e08a991a3b8bd54cbac8bdb6fd69924b175" } }] + +[[packages]] +name = "simpervisor" +version = "1.0.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/simpervisor-1.0.0-8-py3-none-any.whl", hashes = { sha256 = "d94b38adcd2736b5f0b1d6ae540d2f56b1d877cf83c1255df1557769577af566" } }] + +[[packages]] +name = "six" +version = "1.17.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/six-1.17.0-8-py2.py3-none-any.whl", hashes = { sha256 = "3611f16cbb03bf7ce78eb1bb259f9ef1a0852f2fd62ab0e288a82a02289885aa" } }] + +[[packages]] +name = "smmap" +version = "5.0.2" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/smmap-5.0.2-8-py3-none-any.whl", hashes = { sha256 = "31f2ca9fb829c9ef74fb99e8471dba111fa21b270b0e3085f247f1ddfd6a23d1" } }] + +[[packages]] +name = "sniffio" +version = "1.3.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/sniffio-1.3.1-8-py3-none-any.whl", hashes = { sha256 = "861fe9d25e27d915a44b1e267e7802ff073e862671643853cc342be08e919912" } }] + +[[packages]] +name = "soupsieve" +version = "2.8" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/soupsieve-2.8-8-py3-none-any.whl", hashes = { sha256 = "c350383e0589f4d5bf597a0f31aabbd70f3ff97fdeb850e7e9390f418199d978" } }] + +[[packages]] +name = "stack-data" +version = "0.6.3" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/stack_data-0.6.3-8-py3-none-any.whl", hashes = { sha256 = "00201e73454dc411eac8c6ca7d5e90b875e2d996b2965ed14080ce755ef1598c" } }] + +[[packages]] +name = "terminado" +version = "0.18.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/terminado-0.18.1-8-py3-none-any.whl", hashes = { sha256 = "45978b8d0366a7a59d18da8a8d3f606d2131568252578a6252bbbaaadd27388f" } }] + +[[packages]] +name = "tinycss2" +version = "1.4.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/tinycss2-1.4.0-8-py3-none-any.whl", hashes = { sha256 = "39493ba9fdaa13259552e708b9c111bcf6dd2c97e148370648e64914cd75eb07" } }] + +[[packages]] +name = "tornado" +version = "6.5.2" +wheels = [ + { url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/tornado-6.5.2-8-cp39-abi3-linux_aarch64.whl", hashes = { sha256 = "c9087ff89e21f0389e5a372213a53e37d470809782ba93aa6e27e9bbc4dc6f18" } }, + { url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/tornado-6.5.2-8-cp39-abi3-linux_x86_64.whl", hashes = { sha256 = "9540b77721afaa55a56be9d244e480fc0b73d54b0babc7892ac4ee42e1822fde" } }, +] + +[[packages]] +name = "traitlets" +version = "5.14.3" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/traitlets-5.14.3-8-py3-none-any.whl", hashes = { sha256 = "c4f6eb0e5d1ed749419fcbe1f41c1dcde3c989751717c6a063b59102c41cc639" } }] + +[[packages]] +name = "types-python-dateutil" +version = "2.9.0.20251008" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/types_python_dateutil-2.9.0.20251008-8-py3-none-any.whl", hashes = { sha256 = "bf1ae5bb144efe02cbff82f87c4830b82e66febc927ff9a611654fe90a95410a" } }] + +[[packages]] +name = "typing-extensions" +version = "4.15.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/typing_extensions-4.15.0-8-py3-none-any.whl", hashes = { sha256 = "1d0e52b774a55f4cc68b17e2449eeccff8e66b3fbfae946373ae8be06897d202" } }] + +[[packages]] +name = "uri-template" +version = "1.3.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/uri_template-1.3.0-8-py3-none-any.whl", hashes = { sha256 = "4fb1fde33d50346e8cdeda0a4559ebfc7a63e63d992bb76004740dfd4f7e9021" } }] + +[[packages]] +name = "urllib3" +version = "2.5.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/urllib3-2.5.0-8-py3-none-any.whl", hashes = { sha256 = "62eab27a24e00294123c2ec3e9f227ad2a9bcbb5f5bdb1facc33880a7d998dda" } }] + +[[packages]] +name = "wcwidth" +version = "0.2.14" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/wcwidth-0.2.14-8-py3-none-any.whl", hashes = { sha256 = "4394a3482b54d6ea94dc3b19ac5c2c9192c523d5a8c61819aac84c33e3c9e6dc" } }] + +[[packages]] +name = "webcolors" +version = "24.11.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/webcolors-24.11.1-8-py3-none-any.whl", hashes = { sha256 = "bafab3a15020019faee1c4c2f6e8c0c254099473528cc5704bcb23ef68d63534" } }] + +[[packages]] +name = "webencodings" +version = "0.5.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/webencodings-0.5.1-8-py2.py3-none-any.whl", hashes = { sha256 = "bde12ec6e1a7137892465933b46dc0ac93ed1852f03f0427f4fecd2fbc6564cc" } }] + +[[packages]] +name = "websocket-client" +version = "1.9.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/websocket_client-1.9.0-8-py3-none-any.whl", hashes = { sha256 = "210b54c64b4fab5dcb8fb841f9390caf216e87ae31502dd12ac91d5bcc18ddb0" } }] + +[[packages]] +name = "wheel" +version = "0.45.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/wheel-0.45.1-8-py3-none-any.whl", hashes = { sha256 = "de09a773a3d009c9b2f8768dd6ed1c65d2b622419fc27bce1efb285fd4cb83f2" } }] + +[[packages]] +name = "yarl" +version = "1.22.0" +wheels = [ + { url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/yarl-1.22.0-8-cp312-cp312-linux_aarch64.whl", hashes = { sha256 = "64e5c3c3900c8d5717abcd28f8adbd557724342c0b758966eab1f7038ea2836d" } }, + { url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/cuda-ubi9/yarl-1.22.0-8-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "21cb00f1fc5c7345f7808987f88c6ad3809b3c8bb12b5182ea66eab409765669" } }, +] diff --git a/jupyter/minimal/ubi9-python-3.12/uv.lock/pylock.rocm.toml b/jupyter/minimal/ubi9-python-3.12/uv.lock/pylock.rocm.toml new file mode 100644 index 0000000000..ce841bc063 --- /dev/null +++ b/jupyter/minimal/ubi9-python-3.12/uv.lock/pylock.rocm.toml @@ -0,0 +1,562 @@ +# This file was autogenerated by uv via the following command: +# uv pip compile --python-platform=linux jupyter/minimal/ubi9-python-3.12/pyproject.toml --output-file=jupyter/minimal/ubi9-python-3.12/uv.lock/pylock.rocm.toml --python-version=3.12 +lock-version = "1.0" +created-by = "uv" +requires-python = ">=3.12" + +[[packages]] +name = "aiohappyeyeballs" +version = "2.6.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/aiohappyeyeballs-2.6.1-10-py3-none-any.whl", hashes = { sha256 = "4b4b6a1fbd0c97c0f8e6ca956c472732cd38770181200fdd454b907a86da2f45" } }] + +[[packages]] +name = "aiohttp" +version = "3.13.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/aiohttp-3.13.1-10-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "e1b9fce3f4e0be766b10e35e5d01ae2a0ef3c5d839c547ebec4e5e4ea77b1a19" } }] + +[[packages]] +name = "aiosignal" +version = "1.4.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/aiosignal-1.4.0-10-py3-none-any.whl", hashes = { sha256 = "7c29bde462af06651a8b5f02ef6ca2523cd4739db59e1940efc667e4a1e2523c" } }] + +[[packages]] +name = "anyio" +version = "4.11.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/anyio-4.11.0-10-py3-none-any.whl", hashes = { sha256 = "b8bc3e8d12e715d7dd3f67a14a09371d14d2c64db8d67e5049b13dc6f51b062a" } }] + +[[packages]] +name = "argon2-cffi" +version = "25.1.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/argon2_cffi-25.1.0-10-py3-none-any.whl", hashes = { sha256 = "913ae65c0d70cc73b800e16b22b9d1991ac0920f5e0a8a4243dfc7ec9f4baba8" } }] + +[[packages]] +name = "argon2-cffi-bindings" +version = "25.1.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/argon2_cffi_bindings-25.1.0-10-cp312-abi3-linux_x86_64.whl", hashes = { sha256 = "85c2befcc106932ca5d8b7ade86e108d2b9e365f5818ae64f0c6634a86863d2d" } }] + +[[packages]] +name = "arrow" +version = "1.3.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/arrow-1.3.0-10-py3-none-any.whl", hashes = { sha256 = "8bb2694062e9ec573773882a96dfaa716b34218730267e7e76006ef2eceb1864" } }] + +[[packages]] +name = "asttokens" +version = "3.0.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/asttokens-3.0.0-10-py3-none-any.whl", hashes = { sha256 = "ee080ad2e8b8931105a90b321379806beb860bd0d988791f16bda83a572ef3d2" } }] + +[[packages]] +name = "async-lru" +version = "2.0.5" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/async_lru-2.0.5-10-py3-none-any.whl", hashes = { sha256 = "4b92154cd60557b4a430f2799b5eabd3e382f3cf641e91dafb895e5e7f776270" } }] + +[[packages]] +name = "attrs" +version = "25.4.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/attrs-25.4.0-10-py3-none-any.whl", hashes = { sha256 = "e08a2da9bfa37e546a9665ea6c8e361b20e8d87398498981ae41d52faacd81f5" } }] + +[[packages]] +name = "babel" +version = "2.17.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/babel-2.17.0-10-py3-none-any.whl", hashes = { sha256 = "33ba092d26b510fba90ba1a8679fe02949823776889262f3c25b07d76422a390" } }] + +[[packages]] +name = "beautifulsoup4" +version = "4.14.2" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/beautifulsoup4-4.14.2-10-py3-none-any.whl", hashes = { sha256 = "ed621dd3754937b829477876993dd7702cf285516d70c297b429749d39414c84" } }] + +[[packages]] +name = "bleach" +version = "6.2.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/bleach-6.2.0-10-py3-none-any.whl", hashes = { sha256 = "ee096a950668d3b5709189611905018f4ab62c66c8a1283e879fe3335f086803" } }] + +[[packages]] +name = "certifi" +version = "2025.10.5" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/certifi-2025.10.5-10-py3-none-any.whl", hashes = { sha256 = "a5450d1f81604725c5e5343e35f8dc8a1101153c82f85db7db79a6038aa626e6" } }] + +[[packages]] +name = "cffi" +version = "2.0.0" +marker = "python_full_version < '3.14'" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/cffi-2.0.0-10-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "6b5a0f09ea049ce7be6baae0d811b6e8618d5b829a46e642166641bb29e99384" } }] + +[[packages]] +name = "charset-normalizer" +version = "3.4.4" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/charset_normalizer-3.4.4-10-py3-none-any.whl", hashes = { sha256 = "cd618da36a26adbc7893cd316228d5e2f46176d0ecc911fb179bda7fa0afb49f" } }] + +[[packages]] +name = "colorama" +version = "0.4.6" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/colorama-0.4.6-10-py2.py3-none-any.whl", hashes = { sha256 = "a92c6895123fbc15859d556c135fa29c51add99b80ca65e16158064046830667" } }] + +[[packages]] +name = "comm" +version = "0.2.3" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/comm-0.2.3-10-py3-none-any.whl", hashes = { sha256 = "1968c2e8b52e944620c3a753772eff74261ab4ae4e5c6e1bfd57b873cffac488" } }] + +[[packages]] +name = "debugpy" +version = "1.8.17" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/debugpy-1.8.17-10-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "b152a1c2284ba1de618a195247f99ecbcec1180aecb89e2afa704db68b368ba5" } }] + +[[packages]] +name = "decorator" +version = "5.2.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/decorator-5.2.1-10-py3-none-any.whl", hashes = { sha256 = "c5a6d4bb9d584f4f19cccd0cf81f74a078b980dc9e0f6a0dc447944b4d0f117d" } }] + +[[packages]] +name = "defusedxml" +version = "0.7.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/defusedxml-0.7.1-10-py2.py3-none-any.whl", hashes = { sha256 = "4e7ca9c9443b124215b5c866082a6bbf368d72d3f88e697f50883da4994a013e" } }] + +[[packages]] +name = "executing" +version = "2.2.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/executing-2.2.1-10-py2.py3-none-any.whl", hashes = { sha256 = "a77f91b991f83bbc8e51933479550c729a4530912a745ea7093051f1ae396c08" } }] + +[[packages]] +name = "fastjsonschema" +version = "2.21.2" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/fastjsonschema-2.21.2-10-py3-none-any.whl", hashes = { sha256 = "55199eecb72c2e1f3512b69acb30ad07aa246a9fc60f218649bbf1e75b919930" } }] + +[[packages]] +name = "fqdn" +version = "1.5.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/fqdn-1.5.1-10-py3-none-any.whl", hashes = { sha256 = "c8a7a278c41617aff07d234e703672704a813c84c3a358c37d0d35ad66af11a8" } }] + +[[packages]] +name = "frozenlist" +version = "1.8.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/frozenlist-1.8.0-10-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "24f703b97f7bcc58a45abc8ea3d0cc37de790eeb0b7df3ed662fb32862eb2642" } }] + +[[packages]] +name = "gitdb" +version = "4.0.12" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/gitdb-4.0.12-10-py3-none-any.whl", hashes = { sha256 = "7f10c587d72b63ecbfa9f9d80974d66456a46191d73583ab55c6294bb49e3fc2" } }] + +[[packages]] +name = "gitpython" +version = "3.1.45" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/gitpython-3.1.45-10-py3-none-any.whl", hashes = { sha256 = "ed0a58eac8bc783ed97f6121dbfab4504642bbb1d777284758f62fe8d90cd80e" } }] + +[[packages]] +name = "h11" +version = "0.16.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/h11-0.16.0-10-py3-none-any.whl", hashes = { sha256 = "0a63b2c6c40d9a43e912495a4ec22a08efc5f7a1ebb19a1c776b37944ad10edb" } }] + +[[packages]] +name = "httpcore" +version = "1.0.9" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/httpcore-1.0.9-10-py3-none-any.whl", hashes = { sha256 = "25af2f7d203a0cb2e38b7cd1a283f9d8b1381dc2cae4a9a0ec19015c44019faa" } }] + +[[packages]] +name = "httpx" +version = "0.28.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/httpx-0.28.1-10-py3-none-any.whl", hashes = { sha256 = "cf3ac8f1aefa8a9df9ff0ef020d0cab0009a09c35b316bad30081a693b028287" } }] + +[[packages]] +name = "idna" +version = "3.11" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/idna-3.11-10-py3-none-any.whl", hashes = { sha256 = "797548635d83b4a6af114859b2e938e0d71f2b9446a4f2ae9672b26a2ee880bb" } }] + +[[packages]] +name = "ipykernel" +version = "7.0.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/ipykernel-7.0.1-10-py3-none-any.whl", hashes = { sha256 = "279a4913ad2c3e3fbb70c7ee39e856da30bfad39d3ca6dd3f89a60997fd348cc" } }] + +[[packages]] +name = "ipython" +version = "9.6.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/ipython-9.6.0-10-py3-none-any.whl", hashes = { sha256 = "fefee2ebf8e393756dc202ad62f0c4e843dad76a634cde00e61c22c38c2068c9" } }] + +[[packages]] +name = "ipython-pygments-lexers" +version = "1.1.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/ipython_pygments_lexers-1.1.1-10-py3-none-any.whl", hashes = { sha256 = "751a738eacfa7aaa54ce7785c8012f462b14bedb68b7bd159265b71885ec7648" } }] + +[[packages]] +name = "isoduration" +version = "20.11.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/isoduration-20.11.0-10-py3-none-any.whl", hashes = { sha256 = "313dfc02c2248cddd3e1aaad74c87f92bde68f4a33bb7976a9003fab79c4ed0f" } }] + +[[packages]] +name = "jedi" +version = "0.19.2" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/jedi-0.19.2-10-py2.py3-none-any.whl", hashes = { sha256 = "4d00ca8ce39927a4d67ebe352d440f09b607f65e3a1d205fda77636ec71a879e" } }] + +[[packages]] +name = "jinja2" +version = "3.1.6" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/jinja2-3.1.6-10-py3-none-any.whl", hashes = { sha256 = "f52688f0d87d2337a216a1fab6deb6330b3fbcba07f8fb6a65c787a3a05b3f02" } }] + +[[packages]] +name = "json5" +version = "0.12.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/json5-0.12.1-10-py3-none-any.whl", hashes = { sha256 = "f2059bc3449085eebd4d52349c2776e5765f6d68b15a28889e53251424825c15" } }] + +[[packages]] +name = "jsonpointer" +version = "3.0.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/jsonpointer-3.0.0-10-py2.py3-none-any.whl", hashes = { sha256 = "bfbbe158623f46ae4478872c587e4964402cc725feda0f6a74724df17072a919" } }] + +[[packages]] +name = "jsonschema" +version = "4.25.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/jsonschema-4.25.1-10-py3-none-any.whl", hashes = { sha256 = "07a553a29223fc067593ae1c0e2f05715c2f2b4ccfe11507a739fd9489bd8366" } }] + +[[packages]] +name = "jsonschema-specifications" +version = "2025.9.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/jsonschema_specifications-2025.9.1-10-py3-none-any.whl", hashes = { sha256 = "d9e791dc28fe485d00e121cb5fcf98aa31420c8d2054d96fd6962129a6f61170" } }] + +[[packages]] +name = "jupyter-client" +version = "8.6.3" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/jupyter_client-8.6.3-10-py3-none-any.whl", hashes = { sha256 = "6cb6b5c6fd173a62e6c530fb6ac19eef5d65d3eb0f2e9f60d37e2734add2cc73" } }] + +[[packages]] +name = "jupyter-core" +version = "5.9.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/jupyter_core-5.9.1-10-py3-none-any.whl", hashes = { sha256 = "b3b0bbe09f786809f35f9e456e133bf9a79af7d31582efa4f29f84bcb6bcfd9e" } }] + +[[packages]] +name = "jupyter-events" +version = "0.12.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/jupyter_events-0.12.0-10-py3-none-any.whl", hashes = { sha256 = "31c55feb93fd923ebe1139417436de964df828d99222fb03b48d66c9ed98eb7a" } }] + +[[packages]] +name = "jupyter-lsp" +version = "2.3.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/jupyter_lsp-2.3.0-10-py3-none-any.whl", hashes = { sha256 = "b21d2153b374863782164a33a47ece5560346a4d2a4b918922738ee42ee58d34" } }] + +[[packages]] +name = "jupyter-server" +version = "2.17.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/jupyter_server-2.17.0-10-py3-none-any.whl", hashes = { sha256 = "893e346dfdc523c3148b8acde5c3ad3116c6b3fdcee218ee4c0a0164c5919150" } }] + +[[packages]] +name = "jupyter-server-mathjax" +version = "0.2.6" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/jupyter_server_mathjax-0.2.6-py3-none-any.whl", hashes = { sha256 = "416389dde2010df46d5fbbb7adb087a5607111070af65a1445391040f2babb5e" } }] + +[[packages]] +name = "jupyter-server-proxy" +version = "4.4.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/jupyter_server_proxy-4.4.0-10-py3-none-any.whl", hashes = { sha256 = "edecd75e0f8171722b67ce668a43812781e179e8d120eedb713ee16cb3fa0722" } }] + +[[packages]] +name = "jupyter-server-terminals" +version = "0.5.3" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/jupyter_server_terminals-0.5.3-10-py3-none-any.whl", hashes = { sha256 = "881439615bb992112f5c0bcdd3de6077a335fedf7c907e74db2bb340498e9244" } }] + +[[packages]] +name = "jupyterlab" +version = "4.4.9" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/jupyterlab-4.4.9-10-py3-none-any.whl", hashes = { sha256 = "fd7cfeb8b192fad9857dd80fefead1505914f79fcba7f91fd175445f969456c0" } }] + +[[packages]] +name = "jupyterlab-git" +version = "0.51.2" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/jupyterlab_git-0.51.2-10-py3-none-any.whl", hashes = { sha256 = "02c819137a3ad75935f7925d9f29a83bc275e117eba078f07bf97d45ad30a279" } }] + +[[packages]] +name = "jupyterlab-pygments" +version = "0.3.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/jupyterlab_pygments-0.3.0-11-py3-none-any.whl", hashes = { sha256 = "f3c20b64a0a650bc0710a8590188662d7a7089ccdf5dd127e36ad8d6b092ebfa" } }] + +[[packages]] +name = "jupyterlab-server" +version = "2.27.3" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/jupyterlab_server-2.27.3-10-py3-none-any.whl", hashes = { sha256 = "e915829e5451496bdfda47f6b8db34044eee28102ce23ac1ebb5680717ea99a9" } }] + +[[packages]] +name = "lark" +version = "1.3.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/lark-1.3.0-10-py3-none-any.whl", hashes = { sha256 = "db7c291c66a9616bee5edb997dc30725d8c574cb467599748f3b0a24dce7957e" } }] + +[[packages]] +name = "markupsafe" +version = "3.0.3" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/markupsafe-3.0.3-10-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "98004de1ddc9affee64ed7f1071920df54a63157e05427f8ab2d8accdbe5ec94" } }] + +[[packages]] +name = "matplotlib-inline" +version = "0.1.7" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/matplotlib_inline-0.1.7-10-py3-none-any.whl", hashes = { sha256 = "4726020ddecddf2d43d90f6dac0ea0bb06792c8d48ff737dc870cb33402cefb5" } }] + +[[packages]] +name = "mistune" +version = "3.1.4" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/mistune-3.1.4-10-py3-none-any.whl", hashes = { sha256 = "05a73f4bd90199de04b27a03d9139ca9820fe34eb473e652905096397f979bfd" } }] + +[[packages]] +name = "multidict" +version = "6.7.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/multidict-6.7.0-10-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "7e9005e96fe97ab54d97628ee54fde79b83192f308cd4a090bbaa1229f257f8d" } }] + +[[packages]] +name = "nbclient" +version = "0.10.2" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/nbclient-0.10.2-10-py3-none-any.whl", hashes = { sha256 = "fefbbbba801aac2644087f8fdfe65ba832ed2b0a528b703f83eef6dbbe82c261" } }] + +[[packages]] +name = "nbconvert" +version = "7.16.6" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/nbconvert-7.16.6-10-py3-none-any.whl", hashes = { sha256 = "ac9c54d47096a5ac843bb7f12b7465cffbee4ea769db0f7294c229c7ca2ccc8c" } }] + +[[packages]] +name = "nbdime" +version = "4.0.2" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/nbdime-4.0.2-10-py3-none-any.whl", hashes = { sha256 = "efe199ccd322e4c7426a9fbb486279be5b7a9acb023023c264c77dcfdcd9a4cc" } }] + +[[packages]] +name = "nbformat" +version = "5.10.4" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/nbformat-5.10.4-10-py3-none-any.whl", hashes = { sha256 = "3986af0aee8ac00dfe5acc8267cec321e392de6b3dbb25773894d12ecc315e5b" } }] + +[[packages]] +name = "nbgitpuller" +version = "1.2.2" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/nbgitpuller-1.2.2-10-py2.py3-none-any.whl", hashes = { sha256 = "3de18267ef1fecca0b1d90a3e4175e647c9ad6115ccc8dc763adc2440f3cda93" } }] + +[[packages]] +name = "nest-asyncio" +version = "1.6.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/nest_asyncio-1.6.0-10-py3-none-any.whl", hashes = { sha256 = "a0f21996eb00941f69e8d9b5fb90aaae1090ee5ea462e6994f837827972687a7" } }] + +[[packages]] +name = "notebook-shim" +version = "0.2.4" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/notebook_shim-0.2.4-10-py3-none-any.whl", hashes = { sha256 = "551b993a097a5b9aecdde90ee9d0e11534ca0b58eb27247923b21b11c0c75e7f" } }] + +[[packages]] +name = "odh-jupyter-trash-cleanup" +version = "0.1.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/odh_jupyter_trash_cleanup-0.1.1-10-py3-none-any.whl", hashes = { sha256 = "b2317483ff4601ad3dd023b01d3a912babd6769a3f7f69447acd4dd2c33ca16d" } }] + +[[packages]] +name = "packaging" +version = "25.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/packaging-25.0-10-py3-none-any.whl", hashes = { sha256 = "099add6fcea96647be5f0671d87e63f92bf7b617c98bd6a7be2446f4bec7e8ba" } }] + +[[packages]] +name = "pandocfilters" +version = "1.5.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/pandocfilters-1.5.1-10-py2.py3-none-any.whl", hashes = { sha256 = "795ec406c6165f3b4316ef3930151b12f93179fb85d6cf5349c4745ee488b572" } }] + +[[packages]] +name = "parso" +version = "0.8.5" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/parso-0.8.5-10-py2.py3-none-any.whl", hashes = { sha256 = "b5fc8213db192f5bc37bde959fa4561d8b924a0badc61171ed490e954e9e1df4" } }] + +[[packages]] +name = "pexpect" +version = "4.9.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/pexpect-4.9.0-10-py2.py3-none-any.whl", hashes = { sha256 = "1c05c62419d81fecf8d36d1ea0c740d29809f28262692effcb5157d00d132153" } }] + +[[packages]] +name = "platformdirs" +version = "4.5.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/platformdirs-4.5.0-10-py3-none-any.whl", hashes = { sha256 = "f21cbea3bec64bfad58416601724c919658c353aebc3e0f11e4fcf0ac16c947f" } }] + +[[packages]] +name = "prometheus-client" +version = "0.23.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/prometheus_client-0.23.1-10-py3-none-any.whl", hashes = { sha256 = "6dd4379f4063bcb9dd22e0bc8402e243d452bc7ecbfaa49001bc6984ca5f15e1" } }] + +[[packages]] +name = "prompt-toolkit" +version = "3.0.52" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/prompt_toolkit-3.0.52-10-py3-none-any.whl", hashes = { sha256 = "4166e2d2d256416ab13c9b3d914b2f49a5022463b503c3445ee1a9da0de00453" } }] + +[[packages]] +name = "propcache" +version = "0.4.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/propcache-0.4.1-10-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "79b2a7836b442f64bb7984e4b04cd73e5dc3bf5789b061035245c5fe848d4585" } }] + +[[packages]] +name = "psutil" +version = "7.1.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/psutil-7.1.0-11-cp36-abi3-linux_x86_64.whl", hashes = { sha256 = "3051e89056442c83379178a84f54f248dc2cd828f5ba4fec44d7b062dbd1682e" } }] + +[[packages]] +name = "ptyprocess" +version = "0.7.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/ptyprocess-0.7.0-10-py2.py3-none-any.whl", hashes = { sha256 = "83a9f8945b3698e5465f8007cd8dd61517076d21f87ca3c698710af991df81c4" } }] + +[[packages]] +name = "pure-eval" +version = "0.2.3" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/pure_eval-0.2.3-10-py3-none-any.whl", hashes = { sha256 = "cccae442d9d1fb303b7959fd2a0ae68ec284540880df0a551be473f13932ed69" } }] + +[[packages]] +name = "pycparser" +version = "2.23" +marker = "python_full_version < '3.14' and implementation_name != 'PyPy'" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/pycparser-2.23-10-py3-none-any.whl", hashes = { sha256 = "37c69d5bf2a34d769647dddcb6931291fbf9d7e4eb87240f382525c9f45c33f3" } }] + +[[packages]] +name = "pygments" +version = "2.19.2" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/pygments-2.19.2-10-py3-none-any.whl", hashes = { sha256 = "055ee7d2076d27e5bb3a4f645c5c67f85f9e1d29026cc5aa2106ee6132448e35" } }] + +[[packages]] +name = "python-dateutil" +version = "2.9.0.post0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/python_dateutil-2.9.0.post0-10-py2.py3-none-any.whl", hashes = { sha256 = "f863ec121b045f9439494c624e6c1bb159773bf0043b20a583606c452b266299" } }] + +[[packages]] +name = "python-json-logger" +version = "4.0.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/python_json_logger-4.0.0-10-py3-none-any.whl", hashes = { sha256 = "09cdd727cda12a6c52f4af3f1ae69eee6a5be1d4b77b331a872a6b43be94744f" } }] + +[[packages]] +name = "pyyaml" +version = "6.0.3" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/pyyaml-6.0.3-10-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "0431bbf4c753792a45966b26dc0b2e4ea13deaa2abb8fa9bd33b4b0b05b61cef" } }] + +[[packages]] +name = "pyzmq" +version = "27.1.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/pyzmq-27.1.0-10-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "2f6a776faf1399c55ba895b09e74ca188185a8fa6d438835f76aee3c9e07f557" } }] + +[[packages]] +name = "referencing" +version = "0.37.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/referencing-0.37.0-10-py3-none-any.whl", hashes = { sha256 = "12673e7119e24319279ff9fecb6362f42fb5826f1a543995d9d64bad5a72f9c9" } }] + +[[packages]] +name = "requests" +version = "2.32.5" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/requests-2.32.5-10-py3-none-any.whl", hashes = { sha256 = "557f15a3a5538f02a0395b7c8a6ac94cc04c3fd0f01b15bfd913980d4483346a" } }] + +[[packages]] +name = "rfc3339-validator" +version = "0.1.4" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/rfc3339_validator-0.1.4-10-py2.py3-none-any.whl", hashes = { sha256 = "8ef066ddc7f8b606bf0e5bea93a5c75de8cb6f470ab4a96823f5b4607f39d2db" } }] + +[[packages]] +name = "rfc3986-validator" +version = "0.1.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/rfc3986_validator-0.1.1-10-py2.py3-none-any.whl", hashes = { sha256 = "a9e42443f6946098c0a5c8b4b31cd37cfd1677ef4b5e7ada4cabc73c3401cc8c" } }] + +[[packages]] +name = "rfc3987-syntax" +version = "1.1.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/rfc3987_syntax-1.1.0-10-py3-none-any.whl", hashes = { sha256 = "2514aca7ab8f96e43239bf1eee72785ad2f01b79fb47902308f749ddbb4ba35f" } }] + +[[packages]] +name = "rpds-py" +version = "0.27.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/rpds_py-0.27.1-10-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "e36407b1898388ff3f0645197583729b380603995e5bc630b991d970c68e2468" } }] + +[[packages]] +name = "send2trash" +version = "1.8.3" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/send2trash-1.8.3-10-py3-none-any.whl", hashes = { sha256 = "acb078834c46f1fb0f4e352c057cc8bb93b8c1a97c983b625a53dded78c84248" } }] + +[[packages]] +name = "setuptools" +version = "80.9.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/setuptools-80.9.0-10-py3-none-any.whl", hashes = { sha256 = "08de7e4f4d5faf0fad68838d115213a4594045e541487ec49ddf09780d28fd21" } }] + +[[packages]] +name = "simpervisor" +version = "1.0.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/simpervisor-1.0.0-10-py3-none-any.whl", hashes = { sha256 = "f2e6216ba84f8eb91897fd37dc2b1469e7a4c171a580ffb482448fb29e51bf4a" } }] + +[[packages]] +name = "six" +version = "1.17.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/six-1.17.0-10-py2.py3-none-any.whl", hashes = { sha256 = "a45a0a812543f786c26cedf2180f5c75b99865459fdefa4591c4ef0bc65421e2" } }] + +[[packages]] +name = "smmap" +version = "5.0.2" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/smmap-5.0.2-10-py3-none-any.whl", hashes = { sha256 = "68db55c055a943d88635079e7da04d1f693e3beec476c3b06a7d014f1641ef23" } }] + +[[packages]] +name = "sniffio" +version = "1.3.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/sniffio-1.3.1-10-py3-none-any.whl", hashes = { sha256 = "863965143c613a30a5092ed3ecf2b7e4b2f3fdcad95e7814784021a04e9aee49" } }] + +[[packages]] +name = "soupsieve" +version = "2.8" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/soupsieve-2.8-10-py3-none-any.whl", hashes = { sha256 = "a2f7f498504e5ca7d9ce61e42c0771d6c9badd8b362dbd3673d6109e41656032" } }] + +[[packages]] +name = "stack-data" +version = "0.6.3" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/stack_data-0.6.3-10-py3-none-any.whl", hashes = { sha256 = "06c4a35b9556c8d032ff533cc4f3b8c0a4a56c33e7af1a30bdf7267ec84f0092" } }] + +[[packages]] +name = "terminado" +version = "0.18.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/terminado-0.18.1-10-py3-none-any.whl", hashes = { sha256 = "136b000f60844b2fda5d13b3f4fc5f67edab49798de4e21eceef4db0302abc0a" } }] + +[[packages]] +name = "tinycss2" +version = "1.4.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/tinycss2-1.4.0-10-py3-none-any.whl", hashes = { sha256 = "53dc2f979e1a263a338be2ee439f8b766fe5e484c956c23b3019bc0cf910ce2b" } }] + +[[packages]] +name = "tornado" +version = "6.5.2" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/tornado-6.5.2-10-cp39-abi3-linux_x86_64.whl", hashes = { sha256 = "c5ecf7584eaeb96ffd47c7f76c292ed3c108976393f751caf3d51c4bc47cbda8" } }] + +[[packages]] +name = "traitlets" +version = "5.14.3" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/traitlets-5.14.3-10-py3-none-any.whl", hashes = { sha256 = "f293342354bb248a34422af5cd21bb18e390a722a5fe5454c8a68e407a551f47" } }] + +[[packages]] +name = "types-python-dateutil" +version = "2.9.0.20251008" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/types_python_dateutil-2.9.0.20251008-10-py3-none-any.whl", hashes = { sha256 = "121ae818a68c7abaebe9ec79bb4736591ce9ca1836639e926e1b20cf81cb268d" } }] + +[[packages]] +name = "typing-extensions" +version = "4.15.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/typing_extensions-4.15.0-10-py3-none-any.whl", hashes = { sha256 = "627495182b5b2c860a357439d4e7655c7e88a494ca497166353db469bfe18fdf" } }] + +[[packages]] +name = "uri-template" +version = "1.3.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/uri_template-1.3.0-10-py3-none-any.whl", hashes = { sha256 = "e3ac6c8e37463b47e42a18b2d2a123401cfa3c21120bda7656703d5c98a9526a" } }] + +[[packages]] +name = "urllib3" +version = "2.5.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/urllib3-2.5.0-10-py3-none-any.whl", hashes = { sha256 = "20c16b4edcfdc25141df89d3d3749609a0bce265ddebb5d683d3d13b9f34236a" } }] + +[[packages]] +name = "wcwidth" +version = "0.2.14" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/wcwidth-0.2.14-10-py3-none-any.whl", hashes = { sha256 = "590a9cb2dbdb8f82a90d839f32314b5e82f01cab69f298e7719e207ac9f9791f" } }] + +[[packages]] +name = "webcolors" +version = "24.11.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/webcolors-24.11.1-10-py3-none-any.whl", hashes = { sha256 = "ce26473f6ab0355675c8687c5544f1e6b96fccd07efb07b1a02b42a4d47e9d05" } }] + +[[packages]] +name = "webencodings" +version = "0.5.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/webencodings-0.5.1-10-py2.py3-none-any.whl", hashes = { sha256 = "6b609dd825b159d9447f89e9c95dd5b5786ccbc0e84219449f988b8262a3c7f5" } }] + +[[packages]] +name = "websocket-client" +version = "1.9.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/websocket_client-1.9.0-10-py3-none-any.whl", hashes = { sha256 = "adebf5266c102b4983b5ebd7546a4a6ab7d83a8e25c07f741e6ce2971677c6df" } }] + +[[packages]] +name = "wheel" +version = "0.45.1" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/wheel-0.45.1-10-py3-none-any.whl", hashes = { sha256 = "c4ea71a32ea7a3eb87099ec059d51a14426296367b53c53d4b17fb96b33ec469" } }] + +[[packages]] +name = "yarl" +version = "1.22.0" +wheels = [{ url = "https://console.redhat.com/api/pulp-content/public-rhai/rhoai/3.0/rocm-ubi9/yarl-1.22.0-10-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "74d515beefd03b03de03e67b36a64fdfeb4948cb2aa54df081526855bde76062" } }]