From b696cbb1681d68ed94b8b7377576c6cf2456070f Mon Sep 17 00:00:00 2001 From: ModelHub XC Date: Wed, 17 Jun 2026 15:54:21 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E5=A7=8B=E5=8C=96=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=EF=BC=8C=E7=94=B1ModelHub=20XC=E7=A4=BE=E5=8C=BA=E6=8F=90?= =?UTF-8?q?=E4=BE=9B=E6=A8=A1=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Model: ruslanmv/Meta-Llama-3.1-8B-Text-to-SQL-GGUF-q4 Source: Original Platform --- .gitattributes | 37 + ...n__Llama_3_1_8B_Text_to_SQL_GGUF_q4_.ipynb | 5074 +++++++++++++++++ README.md | 160 + config.json | 3 + unsloth.F16.gguf | 3 + unsloth.Q4_K_M.gguf | 3 + 6 files changed, 5280 insertions(+) create mode 100644 .gitattributes create mode 100644 Inference_with_llama_cpp_python__Llama_3_1_8B_Text_to_SQL_GGUF_q4_.ipynb create mode 100644 README.md create mode 100644 config.json create mode 100644 unsloth.F16.gguf create mode 100644 unsloth.Q4_K_M.gguf diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..cc073db --- /dev/null +++ b/.gitattributes @@ -0,0 +1,37 @@ +*.7z filter=lfs diff=lfs merge=lfs -text +*.arrow filter=lfs diff=lfs merge=lfs -text +*.bin filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.ckpt filter=lfs diff=lfs merge=lfs -text +*.ftz filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.h5 filter=lfs diff=lfs merge=lfs -text +*.joblib filter=lfs diff=lfs merge=lfs -text +*.lfs.* filter=lfs diff=lfs merge=lfs -text +*.mlmodel filter=lfs diff=lfs merge=lfs -text +*.model filter=lfs diff=lfs merge=lfs -text +*.msgpack filter=lfs diff=lfs merge=lfs -text +*.npy filter=lfs diff=lfs merge=lfs -text +*.npz filter=lfs diff=lfs merge=lfs -text +*.onnx filter=lfs diff=lfs merge=lfs -text +*.ot filter=lfs diff=lfs merge=lfs -text +*.parquet filter=lfs diff=lfs merge=lfs -text +*.pb filter=lfs diff=lfs merge=lfs -text +*.pickle filter=lfs diff=lfs merge=lfs -text +*.pkl filter=lfs diff=lfs merge=lfs -text +*.pt filter=lfs diff=lfs merge=lfs -text +*.pth filter=lfs diff=lfs merge=lfs -text +*.rar filter=lfs diff=lfs merge=lfs -text +*.safetensors filter=lfs diff=lfs merge=lfs -text +saved_model/**/* filter=lfs diff=lfs merge=lfs -text +*.tar.* filter=lfs diff=lfs merge=lfs -text +*.tar filter=lfs diff=lfs merge=lfs -text +*.tflite filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.wasm filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text +*tfevents* filter=lfs diff=lfs merge=lfs -text +unsloth.F16.gguf filter=lfs diff=lfs merge=lfs -text +unsloth.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text diff --git a/Inference_with_llama_cpp_python__Llama_3_1_8B_Text_to_SQL_GGUF_q4_.ipynb b/Inference_with_llama_cpp_python__Llama_3_1_8B_Text_to_SQL_GGUF_q4_.ipynb new file mode 100644 index 0000000..6f392db --- /dev/null +++ b/Inference_with_llama_cpp_python__Llama_3_1_8B_Text_to_SQL_GGUF_q4_.ipynb @@ -0,0 +1,5074 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": { + "id": "ihaZyg2aYQpH" + }, + "source": [ + "# llama-cpp-python\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "7MDuvLwarQO8" + }, + "source": [ + "The Python package provides simple bindings for the llama.cpp library, offering access to the C API via ctypes interface, a high-level Python API for text completion, OpenAI-like API, and LangChain compatibility. It supports multiple BLAS backends for faster processing and includes both high-level and low-level APIs, along with web server functionality.\n", + "\n", + "`llama.cpp`'s objective is to run the LLaMA model with 4-bit integer quantization on MacBook. It is a plain C/C++ implementation optimized for Apple silicon and x86 architectures, supporting various integer quantization and BLAS libraries. Originally a web chat example, it now serves as a development playground for ggml library features.\n", + "\n", + "`GGML`, a C library for machine learning, facilitates the distribution of large language models (LLMs). It utilizes quantization to enable efficient LLM execution on consumer hardware. GGML files contain binary-encoded data, including version number, hyperparameters, vocabulary, and weights. The vocabulary comprises tokens for language generation, while the weights determine the LLM's size. Quantization reduces precision to optimize resource usage." + ] + }, + { + "cell_type": "markdown", + "source": [ + "The GGML format has been replaced by GGUF, effective as of August 21st, 2023. Starting from this date, llama.cpp will no longer provide compatibility with GGML models. This notebook uses `llama-cpp-python==0.1.78, which is compatible with GGML Models`." + ], + "metadata": { + "id": "V2WYqinVm8DB" + } + }, + { + "cell_type": "markdown", + "metadata": { + "id": "OBnzlAqYZM6_" + }, + "source": [ + "| Code Credits | Link |\n", + "| ----------- | ---- |\n", + "| ๐ŸŽ‰ llama-cpp-python | [![GitHub Repository](https://img.shields.io/github/stars/abetlen/llama-cpp-python?style=social)](https://github.com/abetlen/llama-cpp-python) |\n", + "| ๐ŸŽ‰ llama.cpp | [![GitHub Repository](https://img.shields.io/github/stars/ggerganov/llama.cpp?style=social)](https://github.com/ggerganov/llama.cpp) |\n", + "| ๐ŸŽ‰ GGML | [![GitHub Repository](https://img.shields.io/github/stars/ggerganov/ggml?style=social)](https://github.com/ggerganov/ggml) |\n", + "| ๐Ÿš€ Online inference | [![Hugging Face Spaces](https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Spaces-blue)](https://huggingface.co/spaces/ysharma/Explore_llamav2_with_TGI) |\n", + "| ๐Ÿš€ Online inference | [![Replicate](https://replicate.com/google-research/frame-interpolation/badge)](https://replicate.com/replicate/llama70b-v2-chat)\n", + " |\n", + "| ๐Ÿ”ฅ Discover More Colab Notebooks | [![GitHub Repository](https://img.shields.io/badge/GitHub-Repository-black?style=flat-square&logo=github)](https://github.com/R3gm/InsightSolver-Colab/) |\n" + ] + }, + { + "cell_type": "code", + "source": [ + "!pip install llama-cpp-python \\\n", + " --extra-index-url https://abetlen.github.io/llama-cpp-python/whl/12.1 --force-reinstall --upgrade --no-cache-dir --verbose" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 1000 + }, + "id": "M2bsEHIjjH1t", + "outputId": "8e33609e-14ad-4f68-d1c4-d68f5cd78284" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Using pip 24.1.2 from /usr/local/lib/python3.10/dist-packages/pip (python 3.10)\n", + "Looking in indexes: https://pypi.org/simple, https://abetlen.github.io/llama-cpp-python/whl/12.1\n", + "Collecting llama-cpp-python\n", + " Downloading llama_cpp_python-0.3.1.tar.gz (63.9 MB)\n", + "\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m63.9/63.9 MB\u001b[0m \u001b[31m268.6 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[?25h Running command pip subprocess to install build dependencies\n", + " Using pip 24.1.2 from /usr/local/lib/python3.10/dist-packages/pip (python 3.10)\n", + " Non-user install by explicit request\n", + " Created build tracker: /tmp/pip-build-tracker-sbqaaasp\n", + " Entered build tracker: /tmp/pip-build-tracker-sbqaaasp\n", + " Created temporary directory: /tmp/pip-install-_zq3l7p7\n", + " Created temporary directory: /tmp/pip-ephem-wheel-cache-llx3s7sv\n", + " Looking in indexes: https://pypi.org/simple, https://abetlen.github.io/llama-cpp-python/whl/12.1\n", + " 2 location(s) to search for versions of scikit-build-core:\n", + " * https://pypi.org/simple/scikit-build-core/\n", + " * https://abetlen.github.io/llama-cpp-python/whl/12.1/scikit-build-core/\n", + " Fetching project page and analyzing links: https://pypi.org/simple/scikit-build-core/\n", + " Getting page https://pypi.org/simple/scikit-build-core/\n", + " Found index url https://pypi.org/simple/\n", + " Looking up \"https://pypi.org/simple/scikit-build-core/\" in the cache\n", + " Request header has \"max_age\" as 0, cache bypassed\n", + " Starting new HTTPS connection (1): pypi.org:443\n", + " https://pypi.org:443 \"GET /simple/scikit-build-core/ HTTP/1.1\" 304 0\n", + " Fetched page https://pypi.org/simple/scikit-build-core/ as application/vnd.pypi.simple.v1+json\n", + " Found link https://files.pythonhosted.org/packages/20/f2/ce98ebce47b0128a20c36004c4e750cffd33236e97f908d56bd410839952/scikit_build_core-0.1.0a0-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.1.0a0\n", + " Found link https://files.pythonhosted.org/packages/5d/b7/7f1b17cd290fd700b54a06549135dda21ed3b5efadec6e2c8693ab81aadc/scikit_build_core-0.1.0a0.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.1.0a0\n", + " Found link https://files.pythonhosted.org/packages/90/f3/2c02cb142bf83129db422b32f261ec617b9ea3f58222da5beca24782423b/scikit_build_core-0.1.0a1-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.1.0a1\n", + " Found link https://files.pythonhosted.org/packages/9a/dd/b10015351c4395e9ef3410663883d3567800557ea77514b16db7fc2b02b1/scikit_build_core-0.1.0a1.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.1.0a1\n", + " Found link https://files.pythonhosted.org/packages/39/4d/d217a498f4bff6b77898d5309564eeed7fba494b6a3b932a7f5666501e14/scikit_build_core-0.1.0b0-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.1.0b0\n", + " Found link https://files.pythonhosted.org/packages/30/91/bf4065f696decc69f1097e25e40d4be3653c177a3316a12109681b4f410e/scikit_build_core-0.1.0b0.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.1.0b0\n", + " Found link https://files.pythonhosted.org/packages/17/42/ea27a0fd27b2faf7c6017ec0319161387e9706cad34980408c672ae35779/scikit_build_core-0.1.0b1-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.1.0b1\n", + " Found link https://files.pythonhosted.org/packages/1c/b9/42d1e0436428017fd364b42a3d7212aea421c7a9a3f08e67a5d09518435e/scikit_build_core-0.1.0b1.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.1.0b1\n", + " Found link https://files.pythonhosted.org/packages/6f/91/7958be0715dc34f0e23f16e751890a59ab44b3d5c402c3a079cffd6ae9fe/scikit_build_core-0.1.0b2-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.1.0b2\n", + " Found link https://files.pythonhosted.org/packages/41/3a/84fbee712b001477fec5c2c4e074071de2be0ea2c930a95d2f9ad0bab551/scikit_build_core-0.1.0b2.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.1.0b2\n", + " Found link https://files.pythonhosted.org/packages/63/45/6d4f8488ca4b731dac4371fa315c9f0180388770da6e4091e9855a033a00/scikit_build_core-0.1.0rc1-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.1.0rc1\n", + " Found link https://files.pythonhosted.org/packages/39/ae/c7bd16ea05b37336e32cef48ba1dab507a30275b3ab5e3f50f39bdb1e794/scikit_build_core-0.1.0rc1.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.1.0rc1\n", + " Found link https://files.pythonhosted.org/packages/ea/00/2fcaad75b76996c1d49619fc288031e962b526dd36f1c0159b0edeba4bdf/scikit_build_core-0.1.0rc2-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.1.0rc2\n", + " Found link https://files.pythonhosted.org/packages/c2/6b/097f97057361e4151b04b2c29e1a15f5f20e8ce5872255ad735ebe88e221/scikit_build_core-0.1.0rc2.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.1.0rc2\n", + " Found link https://files.pythonhosted.org/packages/a3/77/dd2a37455a99f5286651c00299913f33d30d903a7af614c74f068eb70bcd/scikit_build_core-0.1.0-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.1.0\n", + " Found link https://files.pythonhosted.org/packages/c2/e2/0c5a80d223aa5af8e6ff8ec97994b850b0cf65b6ba9c87581ba0d57fcb01/scikit_build_core-0.1.0.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.1.0\n", + " Found link https://files.pythonhosted.org/packages/89/11/12528bc8a124eba1d0cce7e7489459360ed08c960b1574011c663a44d274/scikit_build_core-0.1.1-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.1.1\n", + " Found link https://files.pythonhosted.org/packages/5d/6e/a69ba03865644932ee68595eda6b657c7aa32a0e1bc70bec80a66f93a3f0/scikit_build_core-0.1.1.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.1.1\n", + " Found link https://files.pythonhosted.org/packages/81/fe/ffa8ed1611760e30a39cdad31245950342780040577a5a660c2b4d7a833f/scikit_build_core-0.1.2-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.1.2\n", + " Found link https://files.pythonhosted.org/packages/8d/49/6389e8729ad2b73c6fbf95ef03cb0f5352c7431368a111992b306e70c868/scikit_build_core-0.1.2.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.1.2\n", + " Found link https://files.pythonhosted.org/packages/7a/44/8a069bef99fa1b3c8afc8b5d0c427817e24d9d9b806d2079a5751ffbb9b7/scikit_build_core-0.1.3-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.1.3\n", + " Found link https://files.pythonhosted.org/packages/2d/44/eb2ed6442d93c5e4bb4e3ae3696de0db3ba3aab8fa551baf6fde86501916/scikit_build_core-0.1.3.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.1.3\n", + " Found link https://files.pythonhosted.org/packages/25/56/2d6ca15785f25800aea95add412f26803248c05b3295cdf0adfb3eed9658/scikit_build_core-0.1.4-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.1.4\n", + " Found link https://files.pythonhosted.org/packages/50/c5/b8e026e2a8dfaed2026b2f5eaf6a5aca7cbf6fdccb541b436bc01dd28ce2/scikit_build_core-0.1.4.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.1.4\n", + " Found link https://files.pythonhosted.org/packages/ff/bd/eda0ca6ce2023db3d329aa14837fe3f89bfea564766d465ba87db22812b1/scikit_build_core-0.1.5-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.1.5\n", + " Found link https://files.pythonhosted.org/packages/82/77/7a8b0509dbc04c91e71b97a8842f7777a8286c7c2ef9150bdbfefef4fe66/scikit_build_core-0.1.5.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.1.5\n", + " Found link https://files.pythonhosted.org/packages/25/86/5f7468c8ecf09edaaa38b98035b35803b5c2ef8eeb0adee5a6708c3fe697/scikit_build_core-0.1.6-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.1.6\n", + " Found link https://files.pythonhosted.org/packages/55/9e/94270b4d835661ead8036c498c2b41b1d7055c0c0541a389fa1a2d4fd35f/scikit_build_core-0.1.6.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.1.6\n", + " Found link https://files.pythonhosted.org/packages/16/d6/b144b3822e3eb8bae026487ab0b3e8588048d35fe13ad7efc825925dab84/scikit_build_core-0.2.0-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.2.0\n", + " Found link https://files.pythonhosted.org/packages/a6/84/3e470b68184ff2235b1b29a41dc63ff5adeeca8501e231ec690e31b39599/scikit_build_core-0.2.0.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.2.0\n", + " Found link https://files.pythonhosted.org/packages/ca/6e/f65e829031a097b38f0868ab2c50d44abaadd7921fbb69141d207d16e5b8/scikit_build_core-0.2.1-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.2.1\n", + " Found link https://files.pythonhosted.org/packages/63/2f/2395962c0513c7fc6f3de74c386f92d22d1a51b9a26b401b883102a45301/scikit_build_core-0.2.1.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.2.1\n", + " Found link https://files.pythonhosted.org/packages/85/86/1f2bb0695c6296e58e935dc58b5062de4307b9589025a81275ee79da688e/scikit_build_core-0.2.2-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.2.2\n", + " Found link https://files.pythonhosted.org/packages/de/8b/f3fac8135afa0929845f06ae9a0bbe53180928be561f662bf52ccd58f053/scikit_build_core-0.2.2.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.2.2\n", + " Found link https://files.pythonhosted.org/packages/fa/8d/cf075ceae1cf2fe50e16817fe087c8885d850cf6fd60d5321575de6a122d/scikit_build_core-0.3.0-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.3.0\n", + " Found link https://files.pythonhosted.org/packages/b5/68/2286037f3d9ec48b6158440bb749052b6858093fc03fad92005ba366ab6b/scikit_build_core-0.3.0.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.3.0\n", + " Found link https://files.pythonhosted.org/packages/6e/a3/55fe0dd84282467c856115b051ebfc065bccde17c7c5225e05ca11f66957/scikit_build_core-0.3.1-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.3.1\n", + " Found link https://files.pythonhosted.org/packages/c1/80/6e2e9fdb9236332a90f429a7795c43c73d34570aef9ff9218d0e730d6001/scikit_build_core-0.3.1.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.3.1\n", + " Found link https://files.pythonhosted.org/packages/02/78/1630f97ec0e4780087e6b12c364acee6b61ab915dd6742173e9cbf6d86ba/scikit_build_core-0.3.2-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.3.2\n", + " Found link https://files.pythonhosted.org/packages/67/c0/1ebdedc851f951924ee3fe4e92f413241b68b83dc9de68c10db118210823/scikit_build_core-0.3.2.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.3.2\n", + " Found link https://files.pythonhosted.org/packages/2c/9b/45cb7a73b1f7629fc840c3bc345768f00407b80efba68739452105de75a0/scikit_build_core-0.3.3-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.3.3\n", + " Found link https://files.pythonhosted.org/packages/9a/1c/c672bb90cd1bdf966f47ba3b88be8ee355aad92a2b0624c2b96f1b206d2c/scikit_build_core-0.3.3.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.3.3\n", + " Found link https://files.pythonhosted.org/packages/fe/1d/4fedab8ccb4d56e169616b5f2aa5b6cdeab9a4568b60188840920337e17e/scikit_build_core-0.4.0-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.4.0\n", + " Found link https://files.pythonhosted.org/packages/37/4b/517684b3d7b41f95be8ac40d7ec80cf9c3cfdaa51fc57190eb1049ac4925/scikit_build_core-0.4.0.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.4.0\n", + " Found link https://files.pythonhosted.org/packages/88/95/d1478efc98cca4ab098e29865ff8614b89b2bb61ae0fda0b031862fd13a8/scikit_build_core-0.4.1-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.4.1\n", + " Found link https://files.pythonhosted.org/packages/92/a8/ca494c5aa6ce022f858c5fd8901000f2cda8aa83f75aa536c359ad705f55/scikit_build_core-0.4.1.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.4.1\n", + " Found link https://files.pythonhosted.org/packages/c9/0e/bc5740fe3c20006c1ba701e96d347f3f2157849b3d8aea9e537b84bf8dba/scikit_build_core-0.4.2-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.4.2\n", + " Found link https://files.pythonhosted.org/packages/89/ef/760dfbf6e4533231bc583001463983df623f3404cc21564975648365033e/scikit_build_core-0.4.2.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.4.2\n", + " Found link https://files.pythonhosted.org/packages/2e/c2/48b24b08198bba5bb7110ef3ecb5c1d7c198afecbd400119155fdcb53a80/scikit_build_core-0.4.3-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.4.3\n", + " Found link https://files.pythonhosted.org/packages/0d/d3/2f15906c1071bd72794b603f1c5752b9196edb4729f8115ac9fc40dc9db8/scikit_build_core-0.4.3.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.4.3\n", + " Found link https://files.pythonhosted.org/packages/40/03/230148caa9416f5fbee3d7c10a35df38dd096578db2ced692e31f0a1bd6a/scikit_build_core-0.4.4-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.4.4\n", + " Found link https://files.pythonhosted.org/packages/a4/39/56d873d39947a5676358cc7a6ae5e536d1a3b52b1e8268161382bae6c1a1/scikit_build_core-0.4.4.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.4.4\n", + " Found link https://files.pythonhosted.org/packages/6c/32/4449e3508365bb14bc03723170da75186150946dc1783f9024d5c61946b7/scikit_build_core-0.4.5-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.4.5\n", + " Found link https://files.pythonhosted.org/packages/81/2c/992dfd4449dfc81ea42d3d84e31f565f1f6b98d81018e6cfd3c8a1394134/scikit_build_core-0.4.5.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.4.5\n", + " Found link https://files.pythonhosted.org/packages/c4/f8/dcb7012fa6240e4a596c19676b8c3fffdfde8e7b2f286c242284403bb2f7/scikit_build_core-0.4.6-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.4.6\n", + " Found link https://files.pythonhosted.org/packages/27/69/dd5e6de5f162e4187a8b8cb02da99327ad9a313da7816e0109cf2a7c9616/scikit_build_core-0.4.6.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.4.6\n", + " Found link https://files.pythonhosted.org/packages/4e/01/36cd4b3a915780631ed0f058ccdbd2b03ad07499182c41476a8cb19b6d9e/scikit_build_core-0.4.7-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.4.7\n", + " Found link https://files.pythonhosted.org/packages/7a/53/cfaef4a4a698e7919c22a5d0805c137eb1d07f257bf0dbd16529aab20b19/scikit_build_core-0.4.7.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.4.7\n", + " Found link https://files.pythonhosted.org/packages/92/3f/7c9795464776eb8356cff5c67cecb0491d478e2125e5e678f17cb980d599/scikit_build_core-0.4.8-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.4.8\n", + " Found link https://files.pythonhosted.org/packages/96/06/a8c27d8c9ab4382c2be602d8dfa33c40ea1692bac6039fad4afc86af59ec/scikit_build_core-0.4.8.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.4.8\n", + " Found link https://files.pythonhosted.org/packages/94/b8/fba31e512f4e1817e3adce4fa1e2dd73dd06b7013fca9671b6b5c19a0bae/scikit_build_core-0.5.0-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.5.0\n", + " Found link https://files.pythonhosted.org/packages/66/0f/f1508080607ca4f44b6811feb422729046d20741db8fc4e7cb34d36eda59/scikit_build_core-0.5.0.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.5.0\n", + " Found link https://files.pythonhosted.org/packages/69/37/1186e4c94d1cced90be00d4c71fa22d2170b8f1e1c0307fdd1012482b409/scikit_build_core-0.5.1-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.5.1\n", + " Found link https://files.pythonhosted.org/packages/bb/12/c7bedf7ff16f0e7261f2051066a2ca2850e6a161d3df2614fb0420b3eb0c/scikit_build_core-0.5.1.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.5.1\n", + " Found link https://files.pythonhosted.org/packages/b3/24/1a76b509b7685c5a8cc835c7b3f44d961864fa48f1ae7d1b7a8932b16b71/scikit_build_core-0.6.0-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.6.0\n", + " Found link https://files.pythonhosted.org/packages/0d/84/162fcd9c157554ce3b362599a8ac678137d65a5db1e6aabd287437a461e1/scikit_build_core-0.6.0.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.6.0\n", + " Found link https://files.pythonhosted.org/packages/4e/f3/7b19e4b6af177313b82e23b33bc2169f67bb7dd8c3ec47edd4d5d5ea1022/scikit_build_core-0.6.1-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.6.1\n", + " Found link https://files.pythonhosted.org/packages/74/f6/9ef8329ee2b6e1f2f7b46b2723a4a78a550b900ae344343b2dc1022cd467/scikit_build_core-0.6.1.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.6.1\n", + " Found link https://files.pythonhosted.org/packages/94/cc/37fab5c0d5f869e412175cb100d9b2d9472b2a546bb289485ed0a126bd63/scikit_build_core-0.7.0-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.7.0\n", + " Found link https://files.pythonhosted.org/packages/79/2f/0ded00dec94f7cd5c1934ad03c5a295afff80cf97ef498a45ce3cb230ae3/scikit_build_core-0.7.0.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.7.0\n", + " Found link https://files.pythonhosted.org/packages/19/ca/89551f9ed6986a25d214d50e7559d78224fcf67641e512764670344f4957/scikit_build_core-0.7.1-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.7.1\n", + " Found link https://files.pythonhosted.org/packages/be/19/3a468e7a58b2ebd449373e6def01a8943b060c622f1ad6f0ba6ef4afbb6b/scikit_build_core-0.7.1.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.7.1\n", + " Found link https://files.pythonhosted.org/packages/0c/5b/73dc7944ef0fdbe97626b40525f1f9ca2547d7c5229b358d45357ff62209/scikit_build_core-0.8.0-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.8.0\n", + " Found link https://files.pythonhosted.org/packages/44/70/7122a29d877ec2f7a0a293925d2e1235be05a8f32b644691ee72200cab6f/scikit_build_core-0.8.0.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.8.0\n", + " Found link https://files.pythonhosted.org/packages/75/44/16297674f790a9cad0c742bcc65e8527e0d1cf058980241139d26d27b56a/scikit_build_core-0.8.1-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.8.1\n", + " Found link https://files.pythonhosted.org/packages/54/ab/69f496e35e2fc1c8fb40422b99b154661d9dc3f8ca560f01b8c9f5624b5a/scikit_build_core-0.8.1.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.8.1\n", + " Found link https://files.pythonhosted.org/packages/78/54/f56626c91bab3952f961495cfc60a8ff0fd4176bdbbcb646bed6a4da3bef/scikit_build_core-0.8.2-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.8.2\n", + " Found link https://files.pythonhosted.org/packages/7a/4a/9f6eeb28ddfea451e0856c506df9146c14e1ce80bdbf39683ab16d28b334/scikit_build_core-0.8.2.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.8.2\n", + " Found link https://files.pythonhosted.org/packages/36/c5/5eaf1d1b8dedda991b26e7f673591bf26baa60cc3bf24d713f2297b21e51/scikit_build_core-0.9.0-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.9.0\n", + " Found link https://files.pythonhosted.org/packages/f5/20/f4f5dda0dbaee1db858ecab344722be90fe8218f1cf51ffb1e1814eda93d/scikit_build_core-0.9.0.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.9.0\n", + " Found link https://files.pythonhosted.org/packages/33/71/b680dd37c14b75cf91aa94e10b72419f1843a622dc5125cf742d523733cb/scikit_build_core-0.9.1-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.9.1\n", + " Found link https://files.pythonhosted.org/packages/11/7f/ad9a790fbe661cadb3e05934df836ab3083ecff378887285b58bfcff0e36/scikit_build_core-0.9.1.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.9.1\n", + " Found link https://files.pythonhosted.org/packages/83/f4/c192a6216676ee51c9a470af4fc9345dcb0a74207e11ea32365b73153589/scikit_build_core-0.9.2-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.9.2\n", + " Found link https://files.pythonhosted.org/packages/c2/fe/8254f8b334d61da20c28df93dfcb7e36c2780b33f0e3807730577c9333e5/scikit_build_core-0.9.2.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.9.2\n", + " Found link https://files.pythonhosted.org/packages/ae/e5/5ecff69e5e7ac562b71c0d1e53462efd273477a659d6e3474c6db74d9807/scikit_build_core-0.9.3-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.9.3\n", + " Found link https://files.pythonhosted.org/packages/20/f5/72b9100bfa57328ca82ede21447713dc14aa5c2eeecce3561388f21c7935/scikit_build_core-0.9.3.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.9.3\n", + " Found link https://files.pythonhosted.org/packages/84/c8/c0a99eb4bfc1bf7811d2826430cc3212688336257d98b5f531c589d3ce73/scikit_build_core-0.9.4-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.9.4\n", + " Found link https://files.pythonhosted.org/packages/62/ac/d710b58de10de99d7cf1d8f3bedd547cfd35b38111c4d68d1c4983a661db/scikit_build_core-0.9.4.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.9.4\n", + " Found link https://files.pythonhosted.org/packages/80/ea/fe79b0a1d3c8afe1c6accbd1e41a303b56aef559c8bde3ab8fa698a573f3/scikit_build_core-0.9.5-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.9.5\n", + " Found link https://files.pythonhosted.org/packages/35/91/23e5445cb1572efe17f1029c3bff1d57f235b5f909d442ca952b4efd87ab/scikit_build_core-0.9.5.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.9.5\n", + " Found link https://files.pythonhosted.org/packages/38/ae/9a305d2ba442f1a193544bbdd508eda78e4a72049e6dc85861105a08a771/scikit_build_core-0.9.6-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.9.6\n", + " Found link https://files.pythonhosted.org/packages/0e/76/fff33034a3a1c61396e7df7bd12ff4475d478b73a2a6609df3f879f299b3/scikit_build_core-0.9.6.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.9.6\n", + " Found link https://files.pythonhosted.org/packages/94/6c/e8f6508d2d3a9a2c132183d7353a4257cee5a9f86a97f0aba3c9c3e7c3a0/scikit_build_core-0.9.7-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.9.7\n", + " Found link https://files.pythonhosted.org/packages/7d/03/5893ab545ea0e96c172c9281511904b1f0d2711052cc80f9d200c36975a7/scikit_build_core-0.9.7.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.9.7\n", + " Found link https://files.pythonhosted.org/packages/0e/b7/62ede14d44d448bbb7424d5992e394d6980824312de05c9b4816a41602f0/scikit_build_core-0.9.8-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.9.8\n", + " Found link https://files.pythonhosted.org/packages/06/c7/46b4becf16d6164f46f26cfd3c8b192a994b2a90bd731df1974b788fb391/scikit_build_core-0.9.8.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.9.8\n", + " Found link https://files.pythonhosted.org/packages/ee/4f/1c15a7451b9484c566b3f272726383be96c3c0d54df85093b206fa64ad88/scikit_build_core-0.9.9-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.9.9\n", + " Found link https://files.pythonhosted.org/packages/a0/a9/3e99425ca417cf9bcda89c79deddb1c013f3510197cacfa7c01e75b344a3/scikit_build_core-0.9.9.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.9.9\n", + " Found link https://files.pythonhosted.org/packages/e4/25/19890add8dd5b97f149613217fdd05c31e9013704397b5b3ac16258e55b0/scikit_build_core-0.9.10-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.9.10\n", + " Found link https://files.pythonhosted.org/packages/04/c8/6613a04869e8c81cd91f688d3db950a056f48a2cb24d0dff32c694587128/scikit_build_core-0.9.10.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.9.10\n", + " Found link https://files.pythonhosted.org/packages/d5/19/7fa3fd37222fb779903de85265c0548dacfb4ba126767fcf0577a90554c4/scikit_build_core-0.10.0-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.10.0\n", + " Found link https://files.pythonhosted.org/packages/75/2d/6891c8517b98dab3d46341e77ee0ced57317abac4442c1b93dec71fdd65d/scikit_build_core-0.10.0.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.10.0\n", + " Found link https://files.pythonhosted.org/packages/df/1a/6a3d2b5d2ce1b87dbc9d58592cf67741f97eafee68e8008c2f56f8fc1be6/scikit_build_core-0.10.1-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.10.1\n", + " Found link https://files.pythonhosted.org/packages/15/17/afed472b82ec17df0bf0e7adac4f4516b353eb0fdaa0dfed99f43660cc9e/scikit_build_core-0.10.1.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.10.1\n", + " Found link https://files.pythonhosted.org/packages/72/4e/0f34859f131366931c868ef7e3bee6d7ce2dec9c1b0ea09b325669e9b467/scikit_build_core-0.10.2-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.10.2\n", + " Found link https://files.pythonhosted.org/packages/c5/c7/3af8e429969072cfda28daf25341597f233e91af2a15a2fe3d27ca2f11b9/scikit_build_core-0.10.2.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.10.2\n", + " Found link https://files.pythonhosted.org/packages/df/d9/051e1809217842f8a067af0d1f9129d4aeb0e485aad611e278fb6f2741b9/scikit_build_core-0.10.3-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.10.3\n", + " Found link https://files.pythonhosted.org/packages/eb/ed/3b83998ad9b5eee6dd4f198c192237525ebb0f3a28d1cfa99b93223bebc7/scikit_build_core-0.10.3.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.10.3\n", + " Found link https://files.pythonhosted.org/packages/05/8b/f8850f4406ec0276981be0b26f22a3db0e36beeaa2f43cdceb0ec0c1b5da/scikit_build_core-0.10.4-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.10.4\n", + " Found link https://files.pythonhosted.org/packages/2f/0d/a2449746d594180466506bea288261552d29058474c5e1f4884f83953af2/scikit_build_core-0.10.4.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.10.4\n", + " Found link https://files.pythonhosted.org/packages/20/f0/11b0f09173051647af2e140f68f3d94432c5b41a6ea0d45a43e38ab68192/scikit_build_core-0.10.5-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.10.5\n", + " Found link https://files.pythonhosted.org/packages/18/2d/c7b59c8f82c07f752fa2decd18536318f97a009bdbb4f5b3c53e126bc236/scikit_build_core-0.10.5.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.10.5\n", + " Found link https://files.pythonhosted.org/packages/95/a6/fbf3a66ed198138163059f2448ef01a473260cdb29ba58f178769bac7216/scikit_build_core-0.10.6-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.10.6\n", + " Found link https://files.pythonhosted.org/packages/e1/ab/c81d551fc4decf289efe09f3acafb47e73de70e3eac4257befbf4f77b304/scikit_build_core-0.10.6.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.10.6\n", + " Found link https://files.pythonhosted.org/packages/88/fe/90476c4f6a1b2f922efa00d26e876dd40c7279e28ec18f08f0851ad21ba6/scikit_build_core-0.10.7-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.10.7\n", + " Found link https://files.pythonhosted.org/packages/34/75/ad5664c8050bbbea46a5f2b6a3dfbc6e6cf284826c0eee0a12f861364b3f/scikit_build_core-0.10.7.tar.gz (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7), version: 0.10.7\n", + " Fetching project page and analyzing links: https://abetlen.github.io/llama-cpp-python/whl/12.1/scikit-build-core/\n", + " Getting page https://abetlen.github.io/llama-cpp-python/whl/12.1/scikit-build-core/\n", + " Found index url https://abetlen.github.io/llama-cpp-python/whl/12.1/\n", + " Looking up \"https://abetlen.github.io/llama-cpp-python/whl/12.1/scikit-build-core/\" in the cache\n", + " Request header has \"max_age\" as 0, cache bypassed\n", + " No cache entry available\n", + " Starting new HTTPS connection (1): abetlen.github.io:443\n", + " https://abetlen.github.io:443 \"GET /llama-cpp-python/whl/12.1/scikit-build-core/ HTTP/1.1\" 404 5254\n", + " Status code 404 not in (200, 203, 300, 301, 308)\n", + " Could not fetch URL https://abetlen.github.io/llama-cpp-python/whl/12.1/scikit-build-core/: 404 Client Error: Not Found for url: https://abetlen.github.io/llama-cpp-python/whl/12.1/scikit-build-core/ - skipping\n", + " Skipping link: not a file: https://pypi.org/simple/scikit-build-core/\n", + " Skipping link: not a file: https://abetlen.github.io/llama-cpp-python/whl/12.1/scikit-build-core/\n", + " Given no hashes to check 34 links for project 'scikit-build-core': discarding no candidates\n", + " Collecting scikit-build-core>=0.9.2 (from scikit-build-core[pyproject]>=0.9.2)\n", + " Obtaining dependency information for scikit-build-core>=0.9.2 from https://files.pythonhosted.org/packages/88/fe/90476c4f6a1b2f922efa00d26e876dd40c7279e28ec18f08f0851ad21ba6/scikit_build_core-0.10.7-py3-none-any.whl.metadata\n", + " Created temporary directory: /tmp/pip-unpack-ufcc900k\n", + " Looking up \"https://files.pythonhosted.org/packages/88/fe/90476c4f6a1b2f922efa00d26e876dd40c7279e28ec18f08f0851ad21ba6/scikit_build_core-0.10.7-py3-none-any.whl.metadata\" in the cache\n", + " Current age based on date: 216\n", + " Ignoring unknown cache-control directive: immutable\n", + " Freshness lifetime from max-age: 365000000\n", + " The response is \"fresh\", returning cached response\n", + " 365000000 > 216\n", + " Using cached scikit_build_core-0.10.7-py3-none-any.whl.metadata (21 kB)\n", + " 2 location(s) to search for versions of exceptiongroup:\n", + " * https://pypi.org/simple/exceptiongroup/\n", + " * https://abetlen.github.io/llama-cpp-python/whl/12.1/exceptiongroup/\n", + " Fetching project page and analyzing links: https://pypi.org/simple/exceptiongroup/\n", + " Getting page https://pypi.org/simple/exceptiongroup/\n", + " Found index url https://pypi.org/simple/\n", + " Looking up \"https://pypi.org/simple/exceptiongroup/\" in the cache\n", + " Request header has \"max_age\" as 0, cache bypassed\n", + " https://pypi.org:443 \"GET /simple/exceptiongroup/ HTTP/1.1\" 304 0\n", + " Fetched page https://pypi.org/simple/exceptiongroup/ as application/vnd.pypi.simple.v1+json\n", + " Found link https://files.pythonhosted.org/packages/25/dd/bc867428ecfe0f59f57c43f8a8849c2a45175f36b5912467738936f0fc32/exceptiongroup-0.0.0a0-py3-none-any.whl (from https://pypi.org/simple/exceptiongroup/), version: 0.0.0a0\n", + " Found link https://files.pythonhosted.org/packages/d3/20/e28a0a662128722f8cf73625289879812b60324c51eb75acbcb8d8d2bc93/exceptiongroup-0.0.0a0.tar.gz (from https://pypi.org/simple/exceptiongroup/), version: 0.0.0a0\n", + " Found link https://files.pythonhosted.org/packages/e9/ea/18491208b3531f7e78761c6d1a27fb0ea8137b999922040f0f1d9130c816/exceptiongroup-1.0.0rc1-py3-none-any.whl (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.0.0rc1\n", + " Found link https://files.pythonhosted.org/packages/68/98/541cc2de5ae2bef3838ad842e4da4113a4fe126685ca3d90b38e11efabcb/exceptiongroup-1.0.0rc1.tar.gz (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.0.0rc1\n", + " Found link https://files.pythonhosted.org/packages/84/9e/0aaafdcfb4613b045fa547a73b51ece17df0e2389de153172ddc2c0c1f6d/exceptiongroup-1.0.0rc2-py3-none-any.whl (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.0.0rc2\n", + " Found link https://files.pythonhosted.org/packages/af/d2/1c6b34cecf5ef7e5ffebcefe2c74e7583f15d9547f0bc38b64ce75bf369b/exceptiongroup-1.0.0rc2.tar.gz (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.0.0rc2\n", + " Found link https://files.pythonhosted.org/packages/d7/04/7613af2f98c5aa336ba0eb5313c0dd0318dcce73fe69b82f7660e32aec69/exceptiongroup-1.0.0rc3-py3-none-any.whl (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.0.0rc3\n", + " Found link https://files.pythonhosted.org/packages/1d/a6/d4eb8bc8d26184a860a5eebe662902ee6392aab381302750618c870b98a2/exceptiongroup-1.0.0rc3.tar.gz (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.0.0rc3\n", + " Found link https://files.pythonhosted.org/packages/40/f6/d04b98165dca52470033c3999afc9c67c22d970dc9bf6b719cec09455eab/exceptiongroup-1.0.0rc4-py3-none-any.whl (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.0.0rc4\n", + " Found link https://files.pythonhosted.org/packages/fd/b4/07b2c7fd089a21da2be74eaefb8bbeeb1ad77e5543318b543ee6ed173c78/exceptiongroup-1.0.0rc4.tar.gz (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.0.0rc4\n", + " Found link https://files.pythonhosted.org/packages/3a/2b/5573c354dbc27b8fcceddb4d7a7f7e1d63702c9acb528dbfea2d77e43513/exceptiongroup-1.0.0rc5-py3-none-any.whl (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.0.0rc5\n", + " Found link https://files.pythonhosted.org/packages/40/11/c99356538f598c305c81400a1e9f5ed82f8b1192bcab20ae6125cf7c6888/exceptiongroup-1.0.0rc5.tar.gz (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.0.0rc5\n", + " Found link https://files.pythonhosted.org/packages/b4/6f/0ce03efa2f2623aa7f90f1b34e67c8474c24df4a68eb9478c3ab2e28f48b/exceptiongroup-1.0.0rc6-py3-none-any.whl (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.0.0rc6\n", + " Found link https://files.pythonhosted.org/packages/e4/22/ea2f6554d3524334ff0a46bfb9919831b0ff990bdf05706b8de190339320/exceptiongroup-1.0.0rc6.tar.gz (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.0.0rc6\n", + " Found link https://files.pythonhosted.org/packages/8b/31/e81a7685eed779b50632cfe53202225584e9635efc817a01076ff6214733/exceptiongroup-1.0.0rc7-py3-none-any.whl (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.0.0rc7\n", + " Found link https://files.pythonhosted.org/packages/e7/4f/0e7d12b079b8d694be4b47997780d149e14a504a638caa56ac03ef48e248/exceptiongroup-1.0.0rc7.tar.gz (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.0.0rc7\n", + " Found link https://files.pythonhosted.org/packages/9a/8e/21e73923dabbf1b4bb36bc1c0f8f6da5c7d6becd0902213dbefa386ca8dc/exceptiongroup-1.0.0rc8-py3-none-any.whl (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.0.0rc8\n", + " Found link https://files.pythonhosted.org/packages/94/e0/2f58a7e00e28cd57f8239bd8d16963c2810142af58028cf5b0681ed9fdfd/exceptiongroup-1.0.0rc8.tar.gz (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.0.0rc8\n", + " Found link https://files.pythonhosted.org/packages/17/9e/81c897fcd6e2ed77ec86c0567cb7b25dc456cc1de74c67b6f2e95d59b639/exceptiongroup-1.0.0rc9-py3-none-any.whl (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.0.0rc9\n", + " Found link https://files.pythonhosted.org/packages/cb/b2/ca0513bb83e236707e22218d1e52d5f5b38b608653d385edb3fb3a03d35f/exceptiongroup-1.0.0rc9.tar.gz (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.0.0rc9\n", + " Found link https://files.pythonhosted.org/packages/de/4c/2854d9e3dcce78108126aa3634186a64ddbfd06d4d69af74954665529e52/exceptiongroup-1.0.0-py3-none-any.whl (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.0.0\n", + " Found link https://files.pythonhosted.org/packages/4f/7e/eca80dbb5c10ec12ffb50884f52ecbff653cb5f443b0529244a748f114da/exceptiongroup-1.0.0.tar.gz (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.0.0\n", + " Found link https://files.pythonhosted.org/packages/66/c7/564f6fb7412070356a31b03d53ee3c8f2d3695c2babe261a5cc1b75cf1a3/exceptiongroup-1.0.1-py3-none-any.whl (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.0.1\n", + " Found link https://files.pythonhosted.org/packages/13/55/43ff6658a50a7f722d2f904810b42514c23a5d649d8a5d890cdc16b617de/exceptiongroup-1.0.1.tar.gz (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.0.1\n", + " Found link https://files.pythonhosted.org/packages/8b/0a/72ed77311ab4f88b030749d7303b5aca361acce2cf74978cb48b8ef0ff17/exceptiongroup-1.0.2-py3-none-any.whl (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.0.2\n", + " Found link https://files.pythonhosted.org/packages/dc/a1/95af4babfb5c3d971493f338cdebfdee5958f689d551a2def2c2ae7be2c7/exceptiongroup-1.0.2.tar.gz (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.0.2\n", + " Found link https://files.pythonhosted.org/packages/f3/9c/c803215ccdd7ac7547bacbbbc4b8b2a64ef7b0540b9113e7861e57215f9e/exceptiongroup-1.0.3-py3-none-any.whl (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.0.3\n", + " Found link https://files.pythonhosted.org/packages/63/b6/0781c26b3dffe79b26e7b662d47efe4cbd50027b089a0b17a0a1fb896c84/exceptiongroup-1.0.3.tar.gz (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.0.3\n", + " Found link https://files.pythonhosted.org/packages/ce/2e/9a327cc0d2d674ee2d570ee30119755af772094edba86d721dda94404d1a/exceptiongroup-1.0.4-py3-none-any.whl (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.0.4\n", + " Found link https://files.pythonhosted.org/packages/fa/e1/4f89a2608978a78876a76e69e82fa1fc5ce3fb346297eed2a51dd3df2dcf/exceptiongroup-1.0.4.tar.gz (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.0.4\n", + " Found link https://files.pythonhosted.org/packages/e8/14/9c6a7e5f12294ccd6975a45e02899ed25468cd7c2c86f3d9725f387f9f5f/exceptiongroup-1.1.0-py3-none-any.whl (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.1.0\n", + " Found link https://files.pythonhosted.org/packages/15/ab/dd27fb742b19a9d020338deb9ab9a28796524081bca880ac33c172c9a8f6/exceptiongroup-1.1.0.tar.gz (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.1.0\n", + " Found link https://files.pythonhosted.org/packages/61/97/17ed81b7a8d24d8f69b62c0db37abbd8c0042d4b3fc429c73dab986e7483/exceptiongroup-1.1.1-py3-none-any.whl (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.1.1\n", + " Found link https://files.pythonhosted.org/packages/cc/38/57f14ddc8e8baeddd8993a36fe57ce7b4ba174c35048b9a6d270bb01e833/exceptiongroup-1.1.1.tar.gz (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.1.1\n", + " Found link https://files.pythonhosted.org/packages/fe/17/f43b7c9ccf399d72038042ee72785c305f6c6fdc6231942f8ab99d995742/exceptiongroup-1.1.2-py3-none-any.whl (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.1.2\n", + " Found link https://files.pythonhosted.org/packages/55/09/5d2079ecab0ca483e527a1707a483562bdc17abf829d3e73f0c1a73b61c7/exceptiongroup-1.1.2.tar.gz (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.1.2\n", + " Found link https://files.pythonhosted.org/packages/ad/83/b71e58666f156a39fb29417e4c8ca4bc7400c0dd4ed9e8842ab54dc8c344/exceptiongroup-1.1.3-py3-none-any.whl (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.1.3\n", + " Found link https://files.pythonhosted.org/packages/c2/e1/5561ad26f99b7779c28356f73f69a8b468ef491d0f6adf20d7ed0ac98ec1/exceptiongroup-1.1.3.tar.gz (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.1.3\n", + " Found link https://files.pythonhosted.org/packages/b8/9a/5028fd52db10e600f1c4674441b968cf2ea4959085bfb5b99fb1250e5f68/exceptiongroup-1.2.0-py3-none-any.whl (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.2.0\n", + " Found link https://files.pythonhosted.org/packages/8e/1c/beef724eaf5b01bb44b6338c8c3494eff7cab376fab4904cfbbc3585dc79/exceptiongroup-1.2.0.tar.gz (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.2.0\n", + " Found link https://files.pythonhosted.org/packages/01/90/79fe92dd413a9cab314ef5c591b5aa9b9ba787ae4cadab75055b0ae00b33/exceptiongroup-1.2.1-py3-none-any.whl (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.2.1\n", + " Found link https://files.pythonhosted.org/packages/a0/65/d66b7fbaef021b3c954b3bbb196d21d8a4b97918ea524f82cfae474215af/exceptiongroup-1.2.1.tar.gz (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.2.1\n", + " Found link https://files.pythonhosted.org/packages/02/cc/b7e31358aac6ed1ef2bb790a9746ac2c69bcb3c8588b41616914eb106eaf/exceptiongroup-1.2.2-py3-none-any.whl (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.2.2\n", + " Found link https://files.pythonhosted.org/packages/09/35/2495c4ac46b980e4ca1f6ad6db102322ef3ad2410b79fdde159a4b0f3b92/exceptiongroup-1.2.2.tar.gz (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7), version: 1.2.2\n", + " Fetching project page and analyzing links: https://abetlen.github.io/llama-cpp-python/whl/12.1/exceptiongroup/\n", + " Getting page https://abetlen.github.io/llama-cpp-python/whl/12.1/exceptiongroup/\n", + " Found index url https://abetlen.github.io/llama-cpp-python/whl/12.1/\n", + " Looking up \"https://abetlen.github.io/llama-cpp-python/whl/12.1/exceptiongroup/\" in the cache\n", + " Request header has \"max_age\" as 0, cache bypassed\n", + " No cache entry available\n", + " https://abetlen.github.io:443 \"GET /llama-cpp-python/whl/12.1/exceptiongroup/ HTTP/1.1\" 404 5254\n", + " Status code 404 not in (200, 203, 300, 301, 308)\n", + " Could not fetch URL https://abetlen.github.io/llama-cpp-python/whl/12.1/exceptiongroup/: 404 Client Error: Not Found for url: https://abetlen.github.io/llama-cpp-python/whl/12.1/exceptiongroup/ - skipping\n", + " Skipping link: not a file: https://pypi.org/simple/exceptiongroup/\n", + " Skipping link: not a file: https://abetlen.github.io/llama-cpp-python/whl/12.1/exceptiongroup/\n", + " Given no hashes to check 24 links for project 'exceptiongroup': discarding no candidates\n", + " Collecting exceptiongroup>=1.0 (from scikit-build-core>=0.9.2->scikit-build-core[pyproject]>=0.9.2)\n", + " Obtaining dependency information for exceptiongroup>=1.0 from https://files.pythonhosted.org/packages/02/cc/b7e31358aac6ed1ef2bb790a9746ac2c69bcb3c8588b41616914eb106eaf/exceptiongroup-1.2.2-py3-none-any.whl.metadata\n", + " Created temporary directory: /tmp/pip-unpack-avo4uirf\n", + " Looking up \"https://files.pythonhosted.org/packages/02/cc/b7e31358aac6ed1ef2bb790a9746ac2c69bcb3c8588b41616914eb106eaf/exceptiongroup-1.2.2-py3-none-any.whl.metadata\" in the cache\n", + " Current age based on date: 335404\n", + " Ignoring unknown cache-control directive: immutable\n", + " Freshness lifetime from max-age: 365000000\n", + " The response is \"fresh\", returning cached response\n", + " 365000000 > 335404\n", + " Using cached exceptiongroup-1.2.2-py3-none-any.whl.metadata (6.6 kB)\n", + " 2 location(s) to search for versions of packaging:\n", + " * https://pypi.org/simple/packaging/\n", + " * https://abetlen.github.io/llama-cpp-python/whl/12.1/packaging/\n", + " Fetching project page and analyzing links: https://pypi.org/simple/packaging/\n", + " Getting page https://pypi.org/simple/packaging/\n", + " Found index url https://pypi.org/simple/\n", + " Looking up \"https://pypi.org/simple/packaging/\" in the cache\n", + " Request header has \"max_age\" as 0, cache bypassed\n", + " https://pypi.org:443 \"GET /simple/packaging/ HTTP/1.1\" 304 0\n", + " Fetched page https://pypi.org/simple/packaging/ as application/vnd.pypi.simple.v1+json\n", + " Found link https://files.pythonhosted.org/packages/bc/4f/9f94808ebac790cc3edba502cb9a1cc29a3f8262f7e2961aed2a159692b5/packaging-14.0-py2.py3-none-any.whl (from https://pypi.org/simple/packaging/), version: 14.0\n", + " Found link https://files.pythonhosted.org/packages/db/ef/25e0ab6aebdd1c8898cac97c395b0ccc792a19ae9dd05ad8c66c4347ef50/packaging-14.0.tar.gz (from https://pypi.org/simple/packaging/), version: 14.0\n", + " Found link https://files.pythonhosted.org/packages/e1/0d/bc6e387b7726a5a4a54f9fb503512a86d2456440bb7bd2455d29b374f6e2/packaging-14.1-py2.py3-none-any.whl (from https://pypi.org/simple/packaging/), version: 14.1\n", + " Found link https://files.pythonhosted.org/packages/66/46/3d89d71421c24cfd74c17fff0fda2efb04bc698690d153048713c254d933/packaging-14.1.tar.gz (from https://pypi.org/simple/packaging/), version: 14.1\n", + " Found link https://files.pythonhosted.org/packages/a5/e0/2f27d770c3403d7dc4cf43bf13ec2b25ee8b7cd554247d5bc0f5c3f1d25e/packaging-14.2-py2.py3-none-any.whl (from https://pypi.org/simple/packaging/), version: 14.2\n", + " Found link https://files.pythonhosted.org/packages/17/8c/e00b08be0068f052982ccbab24dd687a447ac21039c522e1e8522556d855/packaging-14.2.tar.gz (from https://pypi.org/simple/packaging/), version: 14.2\n", + " Found link https://files.pythonhosted.org/packages/df/77/12ebad6ff79087e717e970461e5370c612cee44fa742cedc383300f62826/packaging-14.3-py2.py3-none-any.whl (from https://pypi.org/simple/packaging/), version: 14.3\n", + " Found link https://files.pythonhosted.org/packages/dc/ff/10c76c0bd03cccbdf87cedf0204ee2027b4261c559e4d30099230a098e13/packaging-14.3.tar.gz (from https://pypi.org/simple/packaging/), version: 14.3\n", + " Found link https://files.pythonhosted.org/packages/46/10/3febc5a1e47548af4b68eb4176aecd1303a369db8c40f28bf079bdb6f558/packaging-14.4-py2.py3-none-any.whl (from https://pypi.org/simple/packaging/), version: 14.4\n", + " Found link https://files.pythonhosted.org/packages/19/8d/30710be752fc9ad21d7774b75c2d0927ce14eac5bfbd89fa05a0694f710d/packaging-14.4.tar.gz (from https://pypi.org/simple/packaging/), version: 14.4\n", + " Found link https://files.pythonhosted.org/packages/31/c4/53a8c47f729663380a515c2582e517e2ebe921c277008498a34a247964f7/packaging-14.5-py2.py3-none-any.whl (from https://pypi.org/simple/packaging/), version: 14.5\n", + " Found link https://files.pythonhosted.org/packages/d8/80/cfb342741cd425e9dbff97a6d229c8796657bdfca1020b55316cbab6575e/packaging-14.5.tar.gz (from https://pypi.org/simple/packaging/), version: 14.5\n", + " Found link https://files.pythonhosted.org/packages/4b/f7/c3d00bfd39532f40a7463bfe57be4175c1a5de5b979c89de311f9cf71a2f/packaging-15.0-py2.py3-none-any.whl (from https://pypi.org/simple/packaging/), version: 15.0\n", + " Found link https://files.pythonhosted.org/packages/da/42/7a270854f87f93baa15b5e101c9dd2eb277c53fd7d2657937f0b8f6f4263/packaging-15.0.tar.gz (from https://pypi.org/simple/packaging/), version: 15.0\n", + " Found link https://files.pythonhosted.org/packages/10/eb/6251a2aed2e8d1399ff89e03a4ab4a829bf6f0d458239af527949c558cd1/packaging-15.1-py2.py3-none-any.whl (from https://pypi.org/simple/packaging/), version: 15.1\n", + " Found link https://files.pythonhosted.org/packages/c8/6e/3c567f29f0295d7ca0e18c7ee9dfbb761a56750c8f812134fad616c9bd34/packaging-15.1.tar.gz (from https://pypi.org/simple/packaging/), version: 15.1\n", + " Found link https://files.pythonhosted.org/packages/4f/52/83573919abe8090dc8825e63a265daa8de6814693c7ebe6ca023c80b1e34/packaging-15.2-py2.py3-none-any.whl (from https://pypi.org/simple/packaging/), version: 15.2\n", + " Found link https://files.pythonhosted.org/packages/24/c4/185da1304f07047dc9e0c46c31db75c0351bd73458ac3efad7da3dbcfbe1/packaging-15.2.tar.gz (from https://pypi.org/simple/packaging/), version: 15.2\n", + " Found link https://files.pythonhosted.org/packages/2f/2b/c681de3e1dbcd469537aefb15186b800209aa1f299d933d23b48d85c9d56/packaging-15.3-py2.py3-none-any.whl (from https://pypi.org/simple/packaging/), version: 15.3\n", + " Found link https://files.pythonhosted.org/packages/12/11/18d2bee4102033f3c174de28f1b37bb71e3b26c39e41b9b98e2ae51d2c75/packaging-15.3.tar.gz (from https://pypi.org/simple/packaging/), version: 15.3\n", + " Found link https://files.pythonhosted.org/packages/11/ae/3e8cc8ea7495b26f5579bea2db27375011c33352091775f0cc9b402b2b02/packaging-16.0-py2.py3-none-any.whl (from https://pypi.org/simple/packaging/), version: 16.0\n", + " Found link https://files.pythonhosted.org/packages/18/67/f11936677977f6d6badc10ad08fba60e36b89c16561d00fc28409f3c6d6f/packaging-16.0.tar.gz (from https://pypi.org/simple/packaging/), version: 16.0\n", + " Found link https://files.pythonhosted.org/packages/71/31/13514b030d25327a5a5d3542e32b6a442c9e52f85ad831b1f2110f7caa8a/packaging-16.1-py2.py3-none-any.whl (from https://pypi.org/simple/packaging/), version: 16.1\n", + " Found link https://files.pythonhosted.org/packages/b2/ed/b41840681d29d785727ab6cafd7528db5037612652cea2d31661e00ebbd5/packaging-16.1.tar.gz (from https://pypi.org/simple/packaging/), version: 16.1\n", + " Found link https://files.pythonhosted.org/packages/a1/4e/932a01cd7d7d025bc4ce52e41dfd85d27b0c7d47432965d90e542fb761fe/packaging-16.2-py2.py3-none-any.whl (from https://pypi.org/simple/packaging/), version: 16.2\n", + " Found link https://files.pythonhosted.org/packages/90/72/79b0ec4ee2cac2922792c8bff90e321ea3d37f9d2b59acbc2adb9da0e589/packaging-16.2.tar.gz (from https://pypi.org/simple/packaging/), version: 16.2\n", + " Found link https://files.pythonhosted.org/packages/b1/aa/6a89e3a6ad7a269c463e3287035c4f8e47e35390324b3cf1710f84636abf/packaging-16.3-py2.py3-none-any.whl (from https://pypi.org/simple/packaging/), version: 16.3\n", + " Found link https://files.pythonhosted.org/packages/25/1c/5fad66dbba7748a61591a8021611d5c3b5a8b04b9dbde3292f82882ad0fe/packaging-16.3.tar.gz (from https://pypi.org/simple/packaging/), version: 16.3\n", + " Found link https://files.pythonhosted.org/packages/4e/e9/46d443119910bf54d60584b28592a0483c6cd7b2a81f0e7c9ac60887266c/packaging-16.4-py2.py3-none-any.whl (from https://pypi.org/simple/packaging/), version: 16.4\n", + " Found link https://files.pythonhosted.org/packages/68/8e/798e7c2979adc00ad5b077dc00c5747e92721cded3f6766fdb62e593958e/packaging-16.4.tar.gz (from https://pypi.org/simple/packaging/), version: 16.4\n", + " Found link https://files.pythonhosted.org/packages/84/5d/ddff692c96ad269301c6f07042eaa02484b2c4a32e2f196075e00f7c6482/packaging-16.5-py2.py3-none-any.whl (from https://pypi.org/simple/packaging/), version: 16.5\n", + " Found link https://files.pythonhosted.org/packages/35/47/6f2138d89bc963d80dc5bf8e9578fb7204a9c29a31d17432bb19ee472f12/packaging-16.5.tar.gz (from https://pypi.org/simple/packaging/), version: 16.5\n", + " Found link https://files.pythonhosted.org/packages/ac/6d/e4af1127595629456532130288c636b5f62d37d39c2f8c879d2d8abd00a2/packaging-16.6-py2.py3-none-any.whl (from https://pypi.org/simple/packaging/), version: 16.6\n", + " Found link https://files.pythonhosted.org/packages/c3/fd/74cfa994e3c9fcaf13f37f6447ccefa252c04ad9358f91c76ebbc5006eaa/packaging-16.6.tar.gz (from https://pypi.org/simple/packaging/), version: 16.6\n", + " Found link https://files.pythonhosted.org/packages/9b/6f/aaca53ea2d5f974f42a910b52485b83e0e1e96096f17c11a37ca6bf5b728/packaging-16.7-py2.py3-none-any.whl (from https://pypi.org/simple/packaging/), version: 16.7\n", + " Found link https://files.pythonhosted.org/packages/28/ad/4e6601d14b11bb300719a8bb6247f6ef5861467a692523c978a4e9e3981a/packaging-16.7.tar.gz (from https://pypi.org/simple/packaging/), version: 16.7\n", + " Found link https://files.pythonhosted.org/packages/87/1b/c39b7c65b5612812b83d6cab7ef2885eac9f6beb0b7b8a7071a186aea3b1/packaging-16.8-py2.py3-none-any.whl (from https://pypi.org/simple/packaging/), version: 16.8\n", + " Found link https://files.pythonhosted.org/packages/c6/70/bb32913de251017e266c5114d0a645f262fb10ebc9bf6de894966d124e35/packaging-16.8.tar.gz (from https://pypi.org/simple/packaging/), version: 16.8\n", + " Found link https://files.pythonhosted.org/packages/0a/a3/015a04002453d5c28f98de127fdf6295abe27d722f444aaeacd9821fc5a4/packaging-17.0-py2.py3-none-any.whl (from https://pypi.org/simple/packaging/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*), version: 17.0\n", + " Found link https://files.pythonhosted.org/packages/6d/72/20bcaab4f7a6bfd108c4ca1dc486906817efa9596e3b15b4c0603da981ba/packaging-17.0.tar.gz (from https://pypi.org/simple/packaging/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*), version: 17.0\n", + " Found link https://files.pythonhosted.org/packages/ad/c2/b500ea05d5f9f361a562f089fc91f77ed3b4783e13a08a3daf82069b1224/packaging-17.1-py2.py3-none-any.whl (from https://pypi.org/simple/packaging/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*), version: 17.1\n", + " Found link https://files.pythonhosted.org/packages/77/32/439f47be99809c12ef2da8b60a2c47987786d2c6c9205549dd6ef95df8bd/packaging-17.1.tar.gz (from https://pypi.org/simple/packaging/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*), version: 17.1\n", + " Found link https://files.pythonhosted.org/packages/89/d1/92e6df2e503a69df9faab187c684585f0136662c12bb1f36901d426f3fab/packaging-18.0-py2.py3-none-any.whl (from https://pypi.org/simple/packaging/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*), version: 18.0\n", + " Found link https://files.pythonhosted.org/packages/cf/50/1f10d2626df0aa97ce6b62cf6ebe14f605f4e101234f7748b8da4138a8ed/packaging-18.0.tar.gz (from https://pypi.org/simple/packaging/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*), version: 18.0\n", + " Found link https://files.pythonhosted.org/packages/91/32/58bc30e646e55eab8b21abf89e353f59c0cc02c417e42929f4a9546e1b1d/packaging-19.0-py2.py3-none-any.whl (from https://pypi.org/simple/packaging/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*), version: 19.0\n", + " Found link https://files.pythonhosted.org/packages/16/51/d72654dbbaa4a4ffbf7cb0ecd7d12222979e0a660bf3f42acc47550bf098/packaging-19.0.tar.gz (from https://pypi.org/simple/packaging/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*), version: 19.0\n", + " Found link https://files.pythonhosted.org/packages/ec/22/630ac83e8f8a9566c4f88038447ed9e16e6f10582767a01f31c769d9a71e/packaging-19.1-py2.py3-none-any.whl (from https://pypi.org/simple/packaging/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*), version: 19.1\n", + " Found link https://files.pythonhosted.org/packages/8b/3a/5bfe64c319be5775ed7ea3bc1a8e5667e0d57a740cc0498ce03e032eaf93/packaging-19.1.tar.gz (from https://pypi.org/simple/packaging/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*), version: 19.1\n", + " Found link https://files.pythonhosted.org/packages/cf/94/9672c2d4b126e74c4496c6b3c58a8b51d6419267be9e70660ba23374c875/packaging-19.2-py2.py3-none-any.whl (from https://pypi.org/simple/packaging/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*), version: 19.2\n", + " Found link https://files.pythonhosted.org/packages/5a/2f/449ded84226d0e2fda8da9252e5ee7731bdf14cd338f622dfcd9934e0377/packaging-19.2.tar.gz (from https://pypi.org/simple/packaging/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*), version: 19.2\n", + " Found link https://files.pythonhosted.org/packages/d8/5b/3098db49a61ccc8583ffead6aedc226f08ff56dc03106b6ec54451e27a30/packaging-20.0-py2.py3-none-any.whl (from https://pypi.org/simple/packaging/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*), version: 20.0\n", + " Found link https://files.pythonhosted.org/packages/c7/cf/d84b72480a556d9bd4a191a91b0a8ea71cb48e6f6132f12d9d365c51bdb6/packaging-20.0.tar.gz (from https://pypi.org/simple/packaging/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*), version: 20.0\n", + " Found link https://files.pythonhosted.org/packages/98/42/87c585dd3b113c775e65fd6b8d9d0a43abe1819c471d7af702d4e01e9b20/packaging-20.1-py2.py3-none-any.whl (from https://pypi.org/simple/packaging/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*), version: 20.1\n", + " Found link https://files.pythonhosted.org/packages/7b/d5/199f982ae38231995276421377b72f4a25d8251f4fa56f6be7cfcd9bb022/packaging-20.1.tar.gz (from https://pypi.org/simple/packaging/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*), version: 20.1\n", + " Found link https://files.pythonhosted.org/packages/eb/f6/48b708ef54bc36bd75ca26e18ea1d7a724321ccb95c2e2048e7283fb82a6/packaging-20.2-py2.py3-none-any.whl (from https://pypi.org/simple/packaging/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*), version: 20.2\n", + " Found link https://files.pythonhosted.org/packages/96/cf/4e288e461c9379af140faf0623f5d01952f4b52f930651958c1baa253c93/packaging-20.2.tar.gz (from https://pypi.org/simple/packaging/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*), version: 20.2\n", + " Found link https://files.pythonhosted.org/packages/62/0a/34641d2bf5c917c96db0ded85ae4da25b6cd922d6b794648d4e7e07c88e5/packaging-20.3-py2.py3-none-any.whl (from https://pypi.org/simple/packaging/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*), version: 20.3\n", + " Found link https://files.pythonhosted.org/packages/65/37/83e3f492eb52d771e2820e88105f605335553fe10422cba9d256faeb1702/packaging-20.3.tar.gz (from https://pypi.org/simple/packaging/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*), version: 20.3\n", + " Found link https://files.pythonhosted.org/packages/46/19/c5ab91b1b05cfe63cccd5cfc971db9214c6dd6ced54e33c30d5af1d2bc43/packaging-20.4-py2.py3-none-any.whl (from https://pypi.org/simple/packaging/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*), version: 20.4\n", + " Found link https://files.pythonhosted.org/packages/55/fd/fc1aca9cf51ed2f2c11748fa797370027babd82f87829c7a8e6dbe720145/packaging-20.4.tar.gz (from https://pypi.org/simple/packaging/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*), version: 20.4\n", + " Found link https://files.pythonhosted.org/packages/0e/75/dc57e8d75c9f4e7ada4d30230875b66633e250504566bdb4d98615808cd1/packaging-20.5-py2.py3-none-any.whl (from https://pypi.org/simple/packaging/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*), version: 20.5\n", + " Found link https://files.pythonhosted.org/packages/61/b8/5a96ce56fcdf1bf7494f642ec7fad3e8c192b3a5b2116b59955ff32f70de/packaging-20.5.tar.gz (from https://pypi.org/simple/packaging/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*), version: 20.5\n", + " Found link https://files.pythonhosted.org/packages/06/ef/89d5ce843d4ccaf93d78c93c3c1973897552afafe69df20fb0ed6a1ed40f/packaging-20.6-py2.py3-none-any.whl (from https://pypi.org/simple/packaging/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*), version: 20.6\n", + " Found link https://files.pythonhosted.org/packages/60/fa/4f3c98e84c945958d0633b16d3a8b1a739f649af1090929309b0e9e0c91b/packaging-20.6.tar.gz (from https://pypi.org/simple/packaging/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*), version: 20.6\n", + " Found link https://files.pythonhosted.org/packages/28/87/8edcf555adaf60d053ead881bc056079e29319b643ca710339ce84413136/packaging-20.7-py2.py3-none-any.whl (from https://pypi.org/simple/packaging/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*), version: 20.7\n", + " Found link https://files.pythonhosted.org/packages/16/7c/33ae3aa02eb10ca726b21aa88d338e3f619c674e4fb8544eb352330d880a/packaging-20.7.tar.gz (from https://pypi.org/simple/packaging/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*), version: 20.7\n", + " Found link https://files.pythonhosted.org/packages/b1/a7/588bfa063e7763247ab6f7e1d994e331b85e0e7d09f853c59a6eb9696974/packaging-20.8-py2.py3-none-any.whl (from https://pypi.org/simple/packaging/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*), version: 20.8\n", + " Found link https://files.pythonhosted.org/packages/d7/c5/e81b9fb8033fe78a2355ea7b1774338e1dca2c9cbd2ee140211a9e6291ab/packaging-20.8.tar.gz (from https://pypi.org/simple/packaging/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*), version: 20.8\n", + " Found link https://files.pythonhosted.org/packages/3e/89/7ea760b4daa42653ece2380531c90f64788d979110a2ab51049d92f408af/packaging-20.9-py2.py3-none-any.whl (from https://pypi.org/simple/packaging/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*), version: 20.9\n", + " Found link https://files.pythonhosted.org/packages/86/3c/bcd09ec5df7123abcf695009221a52f90438d877a2f1499453c6938f5728/packaging-20.9.tar.gz (from https://pypi.org/simple/packaging/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*), version: 20.9\n", + " Found link https://files.pythonhosted.org/packages/3c/77/e2362b676dc5008d81be423070dd9577fa03be5da2ba1105811900fda546/packaging-21.0-py3-none-any.whl (from https://pypi.org/simple/packaging/) (requires-python:>=3.6), version: 21.0\n", + " Found link https://files.pythonhosted.org/packages/df/86/aef78bab3afd461faecf9955a6501c4999933a48394e90f03cd512aad844/packaging-21.0.tar.gz (from https://pypi.org/simple/packaging/) (requires-python:>=3.6), version: 21.0\n", + " Found link https://files.pythonhosted.org/packages/a6/d6/d72354a24a7e18f8965ba88c54abea847946e3b28adfbb3a917b75c5f59e/packaging-21.1-py3-none-any.whl (from https://pypi.org/simple/packaging/) (requires-python:>=3.6), version: 21.1\n", + " Found link https://files.pythonhosted.org/packages/0f/ff/e0212099bf687e471e5f98feb5acc014749269d0521b0cbc2d76bfeec639/packaging-21.1.tar.gz (from https://pypi.org/simple/packaging/) (requires-python:>=3.6), version: 21.1\n", + " Found link https://files.pythonhosted.org/packages/b1/09/464d5df9f9ec1ab5054af6d097df6793e542f4aa426ba3062ec64409cab7/packaging-21.2-py3-none-any.whl (from https://pypi.org/simple/packaging/) (requires-python:>=3.6), version: 21.2\n", + " Found link https://files.pythonhosted.org/packages/4d/34/523195b783e799fd401ad4bbc40d787926dd4c61838441df08bf42297792/packaging-21.2.tar.gz (from https://pypi.org/simple/packaging/) (requires-python:>=3.6), version: 21.2\n", + " Found link https://files.pythonhosted.org/packages/05/8e/8de486cbd03baba4deef4142bd643a3e7bbe954a784dc1bb17142572d127/packaging-21.3-py3-none-any.whl (from https://pypi.org/simple/packaging/) (requires-python:>=3.6), version: 21.3\n", + " Found link https://files.pythonhosted.org/packages/df/9e/d1a7217f69310c1db8fdf8ab396229f55a699ce34a203691794c5d1cad0c/packaging-21.3.tar.gz (from https://pypi.org/simple/packaging/) (requires-python:>=3.6), version: 21.3\n", + " Found link https://files.pythonhosted.org/packages/8f/7b/42582927d281d7cb035609cd3a543ffac89b74f3f4ee8e1c50914bcb57eb/packaging-22.0-py3-none-any.whl (from https://pypi.org/simple/packaging/) (requires-python:>=3.7), version: 22.0\n", + " Found link https://files.pythonhosted.org/packages/6b/f7/c240d7654ddd2d2f3f328d8468d4f1f876865f6b9038b146bec0a6737c65/packaging-22.0.tar.gz (from https://pypi.org/simple/packaging/) (requires-python:>=3.7), version: 22.0\n", + " Found link https://files.pythonhosted.org/packages/ed/35/a31aed2993e398f6b09a790a181a7927eb14610ee8bbf02dc14d31677f1c/packaging-23.0-py3-none-any.whl (from https://pypi.org/simple/packaging/) (requires-python:>=3.7), version: 23.0\n", + " Found link https://files.pythonhosted.org/packages/47/d5/aca8ff6f49aa5565df1c826e7bf5e85a6df852ee063600c1efa5b932968c/packaging-23.0.tar.gz (from https://pypi.org/simple/packaging/) (requires-python:>=3.7), version: 23.0\n", + " Found link https://files.pythonhosted.org/packages/ab/c3/57f0601a2d4fe15de7a553c00adbc901425661bf048f2a22dfc500caf121/packaging-23.1-py3-none-any.whl (from https://pypi.org/simple/packaging/) (requires-python:>=3.7), version: 23.1\n", + " Found link https://files.pythonhosted.org/packages/b9/6c/7c6658d258d7971c5eb0d9b69fa9265879ec9a9158031206d47800ae2213/packaging-23.1.tar.gz (from https://pypi.org/simple/packaging/) (requires-python:>=3.7), version: 23.1\n", + " Found link https://files.pythonhosted.org/packages/ec/1a/610693ac4ee14fcdf2d9bf3c493370e4f2ef7ae2e19217d7a237ff42367d/packaging-23.2-py3-none-any.whl (from https://pypi.org/simple/packaging/) (requires-python:>=3.7), version: 23.2\n", + " Found link https://files.pythonhosted.org/packages/fb/2b/9b9c33ffed44ee921d0967086d653047286054117d584f1b1a7c22ceaf7b/packaging-23.2.tar.gz (from https://pypi.org/simple/packaging/) (requires-python:>=3.7), version: 23.2\n", + " Found link https://files.pythonhosted.org/packages/49/df/1fceb2f8900f8639e278b056416d49134fb8d84c5942ffaa01ad34782422/packaging-24.0-py3-none-any.whl (from https://pypi.org/simple/packaging/) (requires-python:>=3.7), version: 24.0\n", + " Found link https://files.pythonhosted.org/packages/ee/b5/b43a27ac7472e1818c4bafd44430e69605baefe1f34440593e0332ec8b4d/packaging-24.0.tar.gz (from https://pypi.org/simple/packaging/) (requires-python:>=3.7), version: 24.0\n", + " Found link https://files.pythonhosted.org/packages/08/aa/cc0199a5f0ad350994d660967a8efb233fe0416e4639146c089643407ce6/packaging-24.1-py3-none-any.whl (from https://pypi.org/simple/packaging/) (requires-python:>=3.8), version: 24.1\n", + " Found link https://files.pythonhosted.org/packages/51/65/50db4dda066951078f0a96cf12f4b9ada6e4b811516bf0262c0f4f7064d4/packaging-24.1.tar.gz (from https://pypi.org/simple/packaging/) (requires-python:>=3.8), version: 24.1\n", + " Fetching project page and analyzing links: https://abetlen.github.io/llama-cpp-python/whl/12.1/packaging/\n", + " Getting page https://abetlen.github.io/llama-cpp-python/whl/12.1/packaging/\n", + " Found index url https://abetlen.github.io/llama-cpp-python/whl/12.1/\n", + " Looking up \"https://abetlen.github.io/llama-cpp-python/whl/12.1/packaging/\" in the cache\n", + " Request header has \"max_age\" as 0, cache bypassed\n", + " No cache entry available\n", + " https://abetlen.github.io:443 \"GET /llama-cpp-python/whl/12.1/packaging/ HTTP/1.1\" 404 5254\n", + " Status code 404 not in (200, 203, 300, 301, 308)\n", + " Could not fetch URL https://abetlen.github.io/llama-cpp-python/whl/12.1/packaging/: 404 Client Error: Not Found for url: https://abetlen.github.io/llama-cpp-python/whl/12.1/packaging/ - skipping\n", + " Skipping link: not a file: https://pypi.org/simple/packaging/\n", + " Skipping link: not a file: https://abetlen.github.io/llama-cpp-python/whl/12.1/packaging/\n", + " Given no hashes to check 14 links for project 'packaging': discarding no candidates\n", + " Collecting packaging>=21.3 (from scikit-build-core>=0.9.2->scikit-build-core[pyproject]>=0.9.2)\n", + " Obtaining dependency information for packaging>=21.3 from https://files.pythonhosted.org/packages/08/aa/cc0199a5f0ad350994d660967a8efb233fe0416e4639146c089643407ce6/packaging-24.1-py3-none-any.whl.metadata\n", + " Created temporary directory: /tmp/pip-unpack-jq526kx_\n", + " Looking up \"https://files.pythonhosted.org/packages/08/aa/cc0199a5f0ad350994d660967a8efb233fe0416e4639146c089643407ce6/packaging-24.1-py3-none-any.whl.metadata\" in the cache\n", + " Current age based on date: 335629\n", + " Ignoring unknown cache-control directive: immutable\n", + " Freshness lifetime from max-age: 365000000\n", + " The response is \"fresh\", returning cached response\n", + " 365000000 > 335629\n", + " Using cached packaging-24.1-py3-none-any.whl.metadata (3.2 kB)\n", + " 2 location(s) to search for versions of pathspec:\n", + " * https://pypi.org/simple/pathspec/\n", + " * https://abetlen.github.io/llama-cpp-python/whl/12.1/pathspec/\n", + " Fetching project page and analyzing links: https://pypi.org/simple/pathspec/\n", + " Getting page https://pypi.org/simple/pathspec/\n", + " Found index url https://pypi.org/simple/\n", + " Looking up \"https://pypi.org/simple/pathspec/\" in the cache\n", + " Request header has \"max_age\" as 0, cache bypassed\n", + " https://pypi.org:443 \"GET /simple/pathspec/ HTTP/1.1\" 304 0\n", + " Fetched page https://pypi.org/simple/pathspec/ as application/vnd.pypi.simple.v1+json\n", + " Found link https://files.pythonhosted.org/packages/b6/36/1917ff4019b4741beecf03237ead86cd886593de9eaa6c16e84bdeee44f6/pathspec-0.2.2.tar.gz (from https://pypi.org/simple/pathspec/), version: 0.2.2\n", + " Found link https://files.pythonhosted.org/packages/c8/8e/8cf94298f70eefec1e9069e2cae2d68c183c4307fe0da6fe14cbd0ad8fd1/pathspec-0.3.0.tar.gz (from https://pypi.org/simple/pathspec/), version: 0.3.0\n", + " Found link https://files.pythonhosted.org/packages/24/9f/0b78c480638e2f6448b7729ee60dab030463c55f7e757b1cf1717750dd34/pathspec-0.3.1.tar.gz (from https://pypi.org/simple/pathspec/), version: 0.3.1\n", + " Found link https://files.pythonhosted.org/packages/21/e4/ab97deccb30e8d05c474ad5ccf9d56f8d9c671201f5351c7531d5959d592/pathspec-0.3.2.tar.gz (from https://pypi.org/simple/pathspec/), version: 0.3.2\n", + " Found link https://files.pythonhosted.org/packages/b8/70/f00bd4a643da9d38c191257d6698f7b6fb8e434adaa8f5b0ebda47699002/pathspec-0.3.3.tar.gz (from https://pypi.org/simple/pathspec/), version: 0.3.3\n", + " Found link https://files.pythonhosted.org/packages/14/9d/c9d790d373d6f6938d793e9c549b87ad8670b6fa7fc6176485e6ef11c1a4/pathspec-0.3.4.tar.gz (from https://pypi.org/simple/pathspec/), version: 0.3.4\n", + " Found link https://files.pythonhosted.org/packages/c7/32/16e80b662842bd62209bc8d05ae2c42d03db4f63865fcef8f6993e301dff/pathspec-0.4.0.tar.gz (from https://pypi.org/simple/pathspec/), version: 0.4.0\n", + " Found link https://files.pythonhosted.org/packages/67/f6/ad4d6964da803ffe0ec9d513b0be6924be0f502636c17781308561f08034/pathspec-0.5.0.tar.gz (from https://pypi.org/simple/pathspec/), version: 0.5.0\n", + " Found link https://files.pythonhosted.org/packages/e2/4e/2cf091fb4dadcdffc877952629f95d5126440aca506204bd6413534c9266/pathspec-0.5.1.tar.gz (from https://pypi.org/simple/pathspec/), version: 0.5.1\n", + " Found link https://files.pythonhosted.org/packages/0f/ae/a13bc82b20a66b5983ebfc365582495347b65659e0c4010523e2e842f3ef/pathspec-0.5.2.tar.gz (from https://pypi.org/simple/pathspec/), version: 0.5.2\n", + " Found link https://files.pythonhosted.org/packages/a5/92/078512f5fe85300b97281210a9d38c970dde2dd7109a2b6dddd8252d9a3f/pathspec-0.5.3.tar.gz (from https://pypi.org/simple/pathspec/), version: 0.5.3\n", + " Found link https://files.pythonhosted.org/packages/8c/81/63b120a666781bc99a42b146c76362a7e0d1637b6d25c8ed53b7ec49e000/pathspec-0.5.4.tar.gz (from https://pypi.org/simple/pathspec/), version: 0.5.4\n", + " Found link https://files.pythonhosted.org/packages/9f/fb/5a901a3b1eeebf83af6da74ecca69d7daf5189e450f0f4cccf9c19132651/pathspec-0.5.5.tar.gz (from https://pypi.org/simple/pathspec/), version: 0.5.5\n", + " Found link https://files.pythonhosted.org/packages/5e/59/d40bf36fda6cc9ec0e2d2d843986fa7d91f7144ad83e909bcb126b45ea88/pathspec-0.5.6.tar.gz (from https://pypi.org/simple/pathspec/), version: 0.5.6\n", + " Found link https://files.pythonhosted.org/packages/46/ff/23dca7dfac363b185314553c67f0c113b8981137a59861eb66ed77716d6a/pathspec-0.5.7.tar.gz (from https://pypi.org/simple/pathspec/), version: 0.5.7\n", + " Found link https://files.pythonhosted.org/packages/e6/21/07ce5b89164bfc7c60cb4fff1c081cf67dd51a4a685e11ebe3391786e432/pathspec-0.5.8.tar.gz (from https://pypi.org/simple/pathspec/), version: 0.5.8\n", + " Found link https://files.pythonhosted.org/packages/84/2a/bfee636b1e2f7d6e30dd74f49201ccfa5c3cf322d44929ecc6c137c486c5/pathspec-0.5.9.tar.gz (from https://pypi.org/simple/pathspec/), version: 0.5.9\n", + " Found link https://files.pythonhosted.org/packages/7a/68/5902e8cd7f7b17c5879982a3a3ee2ad0c3b92b80c79989a2d3e1ca8d29e1/pathspec-0.6.0.tar.gz (from https://pypi.org/simple/pathspec/), version: 0.6.0\n", + " Found link https://files.pythonhosted.org/packages/34/fa/c5cc4f796eb954b56fd1f6c7c315647b18b027e0736c9ae87b73bbb1f933/pathspec-0.7.0-py2.py3-none-any.whl (from https://pypi.org/simple/pathspec/), version: 0.7.0\n", + " Found link https://files.pythonhosted.org/packages/ce/f2/d35c292da8fbff725625a17ae40f48f933070acd5ccddb03d8c09d81758d/pathspec-0.7.0.tar.gz (from https://pypi.org/simple/pathspec/), version: 0.7.0\n", + " Found link https://files.pythonhosted.org/packages/5d/d0/887c58853bd4b6ffc7aa9cdba4fc57d7b979b45888a6bd47e4568e1cf868/pathspec-0.8.0-py2.py3-none-any.whl (from https://pypi.org/simple/pathspec/), version: 0.8.0\n", + " Found link https://files.pythonhosted.org/packages/93/9c/4bb0a33b0ec07d2076f0b3d7c6aae4dad0a99f9a7a14f7f7ff6f4ed7fa38/pathspec-0.8.0.tar.gz (from https://pypi.org/simple/pathspec/), version: 0.8.0\n", + " Found link https://files.pythonhosted.org/packages/29/29/a465741a3d97ea3c17d21eaad4c64205428bde56742360876c4391f930d4/pathspec-0.8.1-py2.py3-none-any.whl (from https://pypi.org/simple/pathspec/), version: 0.8.1\n", + " Found link https://files.pythonhosted.org/packages/b7/64/e097eea8dcd2b2f7df6e4425fc98e7494e37b1a6e149603c31d327080a05/pathspec-0.8.1.tar.gz (from https://pypi.org/simple/pathspec/), version: 0.8.1\n", + " Found link https://files.pythonhosted.org/packages/42/ba/a9d64c7bcbc7e3e8e5f93a52721b377e994c22d16196e2b0f1236774353a/pathspec-0.9.0-py2.py3-none-any.whl (from https://pypi.org/simple/pathspec/), version: 0.9.0\n", + " Found link https://files.pythonhosted.org/packages/f6/33/436c5cb94e9f8902e59d1d544eb298b83c84b9ec37b5b769c5a0ad6edb19/pathspec-0.9.0.tar.gz (from https://pypi.org/simple/pathspec/), version: 0.9.0\n", + " Found link https://files.pythonhosted.org/packages/3c/52/8559662da5afa79eb439c24d5e4e9752504665c123efbf0c825f8c996ee5/pathspec-0.10.0-py3-none-any.whl (from https://pypi.org/simple/pathspec/) (requires-python:>=3.7), version: 0.10.0\n", + " Found link https://files.pythonhosted.org/packages/03/45/41884de3da7c1012c729fc6fdad25d6b7906c69f5aaf4b23238ac8acfced/pathspec-0.10.0.tar.gz (from https://pypi.org/simple/pathspec/) (requires-python:>=3.7), version: 0.10.0\n", + " Found link https://files.pythonhosted.org/packages/63/82/2179fdc39bc1bb43296f638ae1dfe2581ec2617b4e87c28b0d23d44b997f/pathspec-0.10.1-py3-none-any.whl (from https://pypi.org/simple/pathspec/) (requires-python:>=3.7), version: 0.10.1\n", + " Found link https://files.pythonhosted.org/packages/24/9f/a9ae1e6efa11992dba2c4727d94602bd2f6ee5f0dedc29ee2d5d572c20f7/pathspec-0.10.1.tar.gz (from https://pypi.org/simple/pathspec/) (requires-python:>=3.7), version: 0.10.1\n", + " Found link https://files.pythonhosted.org/packages/42/79/94b21d5fabb97749ca94590315abe150a750483c87add8543781bcb6cd26/pathspec-0.10.2-py3-none-any.whl (from https://pypi.org/simple/pathspec/) (requires-python:>=3.7), version: 0.10.2\n", + " Found link https://files.pythonhosted.org/packages/a2/29/959c72e1a6c3c25eaa46b9bfcc7fd401f65af83163d4796af09272c83c8a/pathspec-0.10.2.tar.gz (from https://pypi.org/simple/pathspec/) (requires-python:>=3.7), version: 0.10.2\n", + " Found link https://files.pythonhosted.org/packages/3c/29/c07c3a976dbe37c56e381e058c11e8738cb3a0416fc842a310461f8bb695/pathspec-0.10.3-py3-none-any.whl (from https://pypi.org/simple/pathspec/) (requires-python:>=3.7), version: 0.10.3\n", + " Found link https://files.pythonhosted.org/packages/32/1a/6baf904503c3e943cae9605c9c88a43b964dea5b59785cf956091b341b08/pathspec-0.10.3.tar.gz (from https://pypi.org/simple/pathspec/) (requires-python:>=3.7), version: 0.10.3\n", + " Found link https://files.pythonhosted.org/packages/e6/be/1a973593d7ce7ac9d1a793b81eb265c152a62f34825169fbd7c4e4548e34/pathspec-0.11.0-py3-none-any.whl (from https://pypi.org/simple/pathspec/) (requires-python:>=3.7), version: 0.11.0\n", + " Found link https://files.pythonhosted.org/packages/f4/8e/f91cffb32740b251cff04cad1e7cdd2c710582c735a01f56307316c148f2/pathspec-0.11.0.tar.gz (from https://pypi.org/simple/pathspec/) (requires-python:>=3.7), version: 0.11.0\n", + " Found link https://files.pythonhosted.org/packages/be/c8/551a803a6ebb174ec1c124e68b449b98a0961f0b737def601e3c1fbb4cfd/pathspec-0.11.1-py3-none-any.whl (from https://pypi.org/simple/pathspec/) (requires-python:>=3.7), version: 0.11.1\n", + " Found link https://files.pythonhosted.org/packages/95/60/d93628975242cc515ab2b8f5b2fc831d8be2eff32f5a1be4776d49305d13/pathspec-0.11.1.tar.gz (from https://pypi.org/simple/pathspec/) (requires-python:>=3.7), version: 0.11.1\n", + " Found link https://files.pythonhosted.org/packages/b4/2a/9b1be29146139ef459188f5e420a66e835dda921208db600b7037093891f/pathspec-0.11.2-py3-none-any.whl (from https://pypi.org/simple/pathspec/) (requires-python:>=3.7), version: 0.11.2\n", + " Found link https://files.pythonhosted.org/packages/a0/2a/bd167cdf116d4f3539caaa4c332752aac0b3a0cc0174cdb302ee68933e81/pathspec-0.11.2.tar.gz (from https://pypi.org/simple/pathspec/) (requires-python:>=3.7), version: 0.11.2\n", + " Found link https://files.pythonhosted.org/packages/10/36/3e9aa229acdfd0be48bf447d4323fdfd54b217a128f2add6abdd2b1efa6f/pathspec-0.12.0-py3-none-any.whl (from https://pypi.org/simple/pathspec/) (requires-python:>=3.8), version: 0.12.0\n", + " Found link https://files.pythonhosted.org/packages/b2/18/c365a967920edd1139664a3617648fd33a54edf4f919973924009630faf5/pathspec-0.12.0.tar.gz (from https://pypi.org/simple/pathspec/) (requires-python:>=3.8), version: 0.12.0\n", + " Found link https://files.pythonhosted.org/packages/cc/20/ff623b09d963f88bfde16306a54e12ee5ea43e9b597108672ff3a408aad6/pathspec-0.12.1-py3-none-any.whl (from https://pypi.org/simple/pathspec/) (requires-python:>=3.8), version: 0.12.1\n", + " Found link https://files.pythonhosted.org/packages/ca/bc/f35b8446f4531a7cb215605d100cd88b7ac6f44ab3fc94870c120ab3adbf/pathspec-0.12.1.tar.gz (from https://pypi.org/simple/pathspec/) (requires-python:>=3.8), version: 0.12.1\n", + " Fetching project page and analyzing links: https://abetlen.github.io/llama-cpp-python/whl/12.1/pathspec/\n", + " Getting page https://abetlen.github.io/llama-cpp-python/whl/12.1/pathspec/\n", + " Found index url https://abetlen.github.io/llama-cpp-python/whl/12.1/\n", + " Looking up \"https://abetlen.github.io/llama-cpp-python/whl/12.1/pathspec/\" in the cache\n", + " Request header has \"max_age\" as 0, cache bypassed\n", + " No cache entry available\n", + " https://abetlen.github.io:443 \"GET /llama-cpp-python/whl/12.1/pathspec/ HTTP/1.1\" 404 5254\n", + " Status code 404 not in (200, 203, 300, 301, 308)\n", + " Could not fetch URL https://abetlen.github.io/llama-cpp-python/whl/12.1/pathspec/: 404 Client Error: Not Found for url: https://abetlen.github.io/llama-cpp-python/whl/12.1/pathspec/ - skipping\n", + " Skipping link: not a file: https://pypi.org/simple/pathspec/\n", + " Skipping link: not a file: https://abetlen.github.io/llama-cpp-python/whl/12.1/pathspec/\n", + " Given no hashes to check 16 links for project 'pathspec': discarding no candidates\n", + " Collecting pathspec>=0.10.1 (from scikit-build-core>=0.9.2->scikit-build-core[pyproject]>=0.9.2)\n", + " Obtaining dependency information for pathspec>=0.10.1 from https://files.pythonhosted.org/packages/cc/20/ff623b09d963f88bfde16306a54e12ee5ea43e9b597108672ff3a408aad6/pathspec-0.12.1-py3-none-any.whl.metadata\n", + " Created temporary directory: /tmp/pip-unpack-3g7_90zb\n", + " Looking up \"https://files.pythonhosted.org/packages/cc/20/ff623b09d963f88bfde16306a54e12ee5ea43e9b597108672ff3a408aad6/pathspec-0.12.1-py3-none-any.whl.metadata\" in the cache\n", + " Current age based on date: 216\n", + " Ignoring unknown cache-control directive: immutable\n", + " Freshness lifetime from max-age: 365000000\n", + " The response is \"fresh\", returning cached response\n", + " 365000000 > 216\n", + " Using cached pathspec-0.12.1-py3-none-any.whl.metadata (21 kB)\n", + " 2 location(s) to search for versions of tomli:\n", + " * https://pypi.org/simple/tomli/\n", + " * https://abetlen.github.io/llama-cpp-python/whl/12.1/tomli/\n", + " Fetching project page and analyzing links: https://pypi.org/simple/tomli/\n", + " Getting page https://pypi.org/simple/tomli/\n", + " Found index url https://pypi.org/simple/\n", + " Looking up \"https://pypi.org/simple/tomli/\" in the cache\n", + " Request header has \"max_age\" as 0, cache bypassed\n", + " https://pypi.org:443 \"GET /simple/tomli/ HTTP/1.1\" 304 0\n", + " Fetched page https://pypi.org/simple/tomli/ as application/vnd.pypi.simple.v1+json\n", + " Found link https://files.pythonhosted.org/packages/dd/9e/3d8b19678546514143c66cc9ce844996cd53b50a8bc30793f41c4bd672f9/tomli-0.2.0-py3-none-any.whl (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 0.2.0\n", + " Found link https://files.pythonhosted.org/packages/d3/c5/e0fe55959722cccd791b0691bf4b6619157b2daeb9cf32898837d859fcb0/tomli-0.2.0.tar.gz (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 0.2.0\n", + " Found link https://files.pythonhosted.org/packages/33/c2/8294acf1d0b1a6db656b03f796f55377362afccd3bbaa4803c16559d08fe/tomli-0.2.1-py3-none-any.whl (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 0.2.1\n", + " Found link https://files.pythonhosted.org/packages/31/bd/ee6f3c53d6c624d569b9d155e9987b88cb60d9e41153f58c6a45b39e5977/tomli-0.2.1.tar.gz (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 0.2.1\n", + " Found link https://files.pythonhosted.org/packages/ac/bf/48a4f20019e27b2107c6848b9403de30ca9f7fe7667f5cdb84fae31ac22b/tomli-0.2.2-py3-none-any.whl (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 0.2.2\n", + " Found link https://files.pythonhosted.org/packages/a4/b6/08d0e73c1ec29752520b466118aec4cfad6d3018116a7c5658f1357d0169/tomli-0.2.2.tar.gz (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 0.2.2\n", + " Found link https://files.pythonhosted.org/packages/98/cb/35af237177cff0ac3a82a65eac7ea38fd937c9eb25277b6d7d348c7fb70e/tomli-0.2.3-py3-none-any.whl (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 0.2.3\n", + " Found link https://files.pythonhosted.org/packages/6d/6f/6876273b3f2761d9130836f071e61eb1e761d9b607b3862646f688134e09/tomli-0.2.3.tar.gz (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 0.2.3\n", + " Found link https://files.pythonhosted.org/packages/a9/44/2d30eab5c15a5fb0b9a66423b86f1d5c91711a6bc15b8a83ff7f4d749d8e/tomli-0.2.4-py3-none-any.whl (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 0.2.4\n", + " Found link https://files.pythonhosted.org/packages/7b/12/4428b414860c3bf86e8f731d2108c448a05cda585daf783062162752ec61/tomli-0.2.4.tar.gz (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 0.2.4\n", + " Found link https://files.pythonhosted.org/packages/af/1d/8ae826be2d0afa9e8d841c9d4b3fad870aa8e243bfd89089a8e6c7a45ea5/tomli-0.2.5-py3-none-any.whl (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 0.2.5\n", + " Found link https://files.pythonhosted.org/packages/91/69/6a946417c74d12532d43cc19c83693393f52687be616e60dde05215524d9/tomli-0.2.5.tar.gz (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 0.2.5\n", + " Found link https://files.pythonhosted.org/packages/01/a3/fccd81d07ef4420eeeec7c2e0156996ec85a968f2f4ae13159363c54f26a/tomli-0.2.6-py3-none-any.whl (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 0.2.6\n", + " Found link https://files.pythonhosted.org/packages/9f/b1/13608b364ce09e5edcfc445c29dc1e15d620d6bc2eb4df89b720bac527bf/tomli-0.2.6.tar.gz (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 0.2.6\n", + " Found link https://files.pythonhosted.org/packages/95/c7/dc5c6ce3e9ce62cc628fac0de3d4733d6c97b5e2ff118525e90e2d7be3bb/tomli-0.2.7-py3-none-any.whl (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 0.2.7\n", + " Found link https://files.pythonhosted.org/packages/5c/f7/92f22fece8917660ff022edf7dce20e37d7335577a0b654b0d3b5df6f924/tomli-0.2.7.tar.gz (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 0.2.7\n", + " Found link https://files.pythonhosted.org/packages/21/ae/73d398601efb720f176dca6203f77e49e5434e3f69fe310f2bf9d342bcdb/tomli-0.2.8-py3-none-any.whl (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 0.2.8\n", + " Found link https://files.pythonhosted.org/packages/73/2d/fb0196195f3e08fa524df7f4d63bc3ed941c6bc205082eb9165b90127692/tomli-0.2.8.tar.gz (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 0.2.8\n", + " Found link https://files.pythonhosted.org/packages/0e/ae/dbd28bae48c5fc5c1599519291fc79a8a662cc2cf795a35a23bdf7269dfd/tomli-0.2.9-py3-none-any.whl (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 0.2.9\n", + " Found link https://files.pythonhosted.org/packages/a1/b7/202d8afa13a0d59735ac449a8856474b0e15e21bfa8ad73862d655c21fba/tomli-0.2.9.tar.gz (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 0.2.9\n", + " Found link https://files.pythonhosted.org/packages/33/41/ea7b36943022d722bc767cbdabf57d8897f003e642e65569eaf2bfa440ed/tomli-0.2.10-py3-none-any.whl (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 0.2.10\n", + " Found link https://files.pythonhosted.org/packages/a8/57/df7f29b11f8c4a26448cae903b6c734c42056bbcb5858720c866359f4797/tomli-0.2.10.tar.gz (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 0.2.10\n", + " Found link https://files.pythonhosted.org/packages/4d/70/ddb7c8ca31e965ec22aa95dd7815838c6e7e723dcd47fe4337cda8fcc77f/tomli-1.0.0-py3-none-any.whl (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 1.0.0\n", + " Found link https://files.pythonhosted.org/packages/6d/36/68bde8d00c80d480b0b1775e46369c041c948e65f71ec080c784b2dba479/tomli-1.0.0.tar.gz (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 1.0.0\n", + " Found link https://files.pythonhosted.org/packages/b0/24/6096b4a5518350b02e8e29ae767753d6edfc33cb1b51207bdb0218bb368f/tomli-1.0.1-py3-none-any.whl (from https://pypi.org/simple/tomli/) (requires-python:>=3.6,<4.0), version: 1.0.1\n", + " Found link https://files.pythonhosted.org/packages/8d/3b/642b6fdc2e4e1df86908da2c96df4d29244121183fd18abf8c530a6da1cb/tomli-1.0.1.tar.gz (from https://pypi.org/simple/tomli/) (requires-python:>=3.6,<4.0), version: 1.0.1\n", + " Found link https://files.pythonhosted.org/packages/62/d8/e8db603b80af9c3bb6463164180936c3538a851a0800a133f96ccba3049b/tomli-1.0.2-py3-none-any.whl (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 1.0.2\n", + " Found link https://files.pythonhosted.org/packages/10/92/f54335f45e61ea2f424f505c378e28b7b7e5e84f953c22f75bde4f56c98d/tomli-1.0.2.tar.gz (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 1.0.2\n", + " Found link https://files.pythonhosted.org/packages/15/bf/0095f834dfaf726cc3c4b31a7a227dba0c7a8aa815c1a540f0a6cb7423c6/tomli-1.0.3-py3-none-any.whl (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 1.0.3\n", + " Found link https://files.pythonhosted.org/packages/31/71/855d7339869a2b8f8c7474dca6b663c3e14cec5e73ecaa8e5f254245fccc/tomli-1.0.3.tar.gz (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 1.0.3\n", + " Found link https://files.pythonhosted.org/packages/ec/81/e0741c4f4dfde87348987869e66de74d13378aa7c0fe97dd1eba2a69f74c/tomli-1.0.4-py3-none-any.whl (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 1.0.4\n", + " Found link https://files.pythonhosted.org/packages/5f/9e/0aa632eb780a5e3ff22e3c125dd10859eaccb49404c64b49ce3d517f7e4c/tomli-1.0.4.tar.gz (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 1.0.4\n", + " Found link https://files.pythonhosted.org/packages/2e/ac/75c79a6880ba6b306df9f61fedf802dd7db0c54d42e4a879f1428625c138/tomli-1.1.0-py3-none-any.whl (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 1.1.0\n", + " Found link https://files.pythonhosted.org/packages/6c/16/f48ab3289015f8f90e2c68fb76531728b3d8e4ce5052ee80ad10e7707eda/tomli-1.1.0.tar.gz (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 1.1.0\n", + " Found link https://files.pythonhosted.org/packages/4e/0f/901037002df5b2cc3acaacabc66e4b7b716bc897d4716aa4d90101d07c6e/tomli-1.2.0-py3-none-any.whl (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 1.2.0\n", + " Found link https://files.pythonhosted.org/packages/ec/38/8eccdc662c61aed187d5f5b168c18b1d2de3827976c3691e4da8be7375aa/tomli-1.2.0.tar.gz (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 1.2.0\n", + " Found link https://files.pythonhosted.org/packages/18/47/f7dab5b63b97efa7a715e389291d46246a5999c7b4705c2d147fc879e3b5/tomli-1.2.1-py3-none-any.whl (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 1.2.1\n", + " Found link https://files.pythonhosted.org/packages/75/50/973397c5ba854445bcc396b593b5db1958da6ab8d665b27397daa1497018/tomli-1.2.1.tar.gz (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 1.2.1\n", + " Found link https://files.pythonhosted.org/packages/6d/6c/9908d4db66488217c665a9a5744319406e41f3c46fa5929a8886f2fe1090/tomli-1.2.2-py3-none-any.whl (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 1.2.2\n", + " Found link https://files.pythonhosted.org/packages/aa/5b/62165da80cbc6e1779f342234c7ddc6c6bc9e64cef149046a9c0456f912b/tomli-1.2.2.tar.gz (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 1.2.2\n", + " Found link https://files.pythonhosted.org/packages/05/e4/74f9440db36734d7ba83c574c1e7024009ce849208a41f90e94a134dc6d1/tomli-1.2.3-py3-none-any.whl (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 1.2.3\n", + " Found link https://files.pythonhosted.org/packages/fb/2e/d0a8276b0cf9b9e34fd0660c330acc59656f53bb2209adc75af863a3582d/tomli-1.2.3.tar.gz (from https://pypi.org/simple/tomli/) (requires-python:>=3.6), version: 1.2.3\n", + " Found link https://files.pythonhosted.org/packages/e2/9f/5e1557a57a7282f066351086e78f87289a3446c47b2cb5b8b2f614d8fe99/tomli-2.0.0-py3-none-any.whl (from https://pypi.org/simple/tomli/) (requires-python:>=3.7), version: 2.0.0\n", + " Found link https://files.pythonhosted.org/packages/3d/6e/d290c9bf16159f02b70c432386aa5bfe22c2857ff460591912fd907b61f6/tomli-2.0.0.tar.gz (from https://pypi.org/simple/tomli/) (requires-python:>=3.7), version: 2.0.0\n", + " Found link https://files.pythonhosted.org/packages/97/75/10a9ebee3fd790d20926a90a2547f0bf78f371b2f13aa822c759680ca7b9/tomli-2.0.1-py3-none-any.whl (from https://pypi.org/simple/tomli/) (requires-python:>=3.7), version: 2.0.1\n", + " Found link https://files.pythonhosted.org/packages/c0/3f/d7af728f075fb08564c5949a9c95e44352e23dee646869fa104a3b2060a3/tomli-2.0.1.tar.gz (from https://pypi.org/simple/tomli/) (requires-python:>=3.7), version: 2.0.1\n", + " Found link https://files.pythonhosted.org/packages/cf/db/ce8eda256fa131af12e0a76d481711abe4681b6923c27efb9a255c9e4594/tomli-2.0.2-py3-none-any.whl (from https://pypi.org/simple/tomli/) (requires-python:>=3.8), version: 2.0.2\n", + " Found link https://files.pythonhosted.org/packages/35/b9/de2a5c0144d7d75a57ff355c0c24054f965b2dc3036456ae03a51ea6264b/tomli-2.0.2.tar.gz (from https://pypi.org/simple/tomli/) (requires-python:>=3.8), version: 2.0.2\n", + " Fetching project page and analyzing links: https://abetlen.github.io/llama-cpp-python/whl/12.1/tomli/\n", + " Getting page https://abetlen.github.io/llama-cpp-python/whl/12.1/tomli/\n", + " Found index url https://abetlen.github.io/llama-cpp-python/whl/12.1/\n", + " Looking up \"https://abetlen.github.io/llama-cpp-python/whl/12.1/tomli/\" in the cache\n", + " Request header has \"max_age\" as 0, cache bypassed\n", + " No cache entry available\n", + " https://abetlen.github.io:443 \"GET /llama-cpp-python/whl/12.1/tomli/ HTTP/1.1\" 404 5254\n", + " Status code 404 not in (200, 203, 300, 301, 308)\n", + " Could not fetch URL https://abetlen.github.io/llama-cpp-python/whl/12.1/tomli/: 404 Client Error: Not Found for url: https://abetlen.github.io/llama-cpp-python/whl/12.1/tomli/ - skipping\n", + " Skipping link: not a file: https://pypi.org/simple/tomli/\n", + " Skipping link: not a file: https://abetlen.github.io/llama-cpp-python/whl/12.1/tomli/\n", + " Given no hashes to check 10 links for project 'tomli': discarding no candidates\n", + " Collecting tomli>=1.2.2 (from scikit-build-core>=0.9.2->scikit-build-core[pyproject]>=0.9.2)\n", + " Obtaining dependency information for tomli>=1.2.2 from https://files.pythonhosted.org/packages/cf/db/ce8eda256fa131af12e0a76d481711abe4681b6923c27efb9a255c9e4594/tomli-2.0.2-py3-none-any.whl.metadata\n", + " Created temporary directory: /tmp/pip-unpack-513pyxa1\n", + " Looking up \"https://files.pythonhosted.org/packages/cf/db/ce8eda256fa131af12e0a76d481711abe4681b6923c27efb9a255c9e4594/tomli-2.0.2-py3-none-any.whl.metadata\" in the cache\n", + " Current age based on date: 335630\n", + " Ignoring unknown cache-control directive: immutable\n", + " Freshness lifetime from max-age: 365000000\n", + " The response is \"fresh\", returning cached response\n", + " 365000000 > 335630\n", + " Using cached tomli-2.0.2-py3-none-any.whl.metadata (10.0 kB)\n", + " Created temporary directory: /tmp/pip-unpack-gt9t9_ps\n", + " Looking up \"https://files.pythonhosted.org/packages/88/fe/90476c4f6a1b2f922efa00d26e876dd40c7279e28ec18f08f0851ad21ba6/scikit_build_core-0.10.7-py3-none-any.whl\" in the cache\n", + " Current age based on date: 216\n", + " Ignoring unknown cache-control directive: immutable\n", + " Freshness lifetime from max-age: 365000000\n", + " The response is \"fresh\", returning cached response\n", + " 365000000 > 216\n", + " Using cached scikit_build_core-0.10.7-py3-none-any.whl (165 kB)\n", + " Downloading link https://files.pythonhosted.org/packages/88/fe/90476c4f6a1b2f922efa00d26e876dd40c7279e28ec18f08f0851ad21ba6/scikit_build_core-0.10.7-py3-none-any.whl (from https://pypi.org/simple/scikit-build-core/) (requires-python:>=3.7) to /tmp/pip-unpack-gt9t9_ps/scikit_build_core-0.10.7-py3-none-any.whl\n", + " Looking up \"https://files.pythonhosted.org/packages/02/cc/b7e31358aac6ed1ef2bb790a9746ac2c69bcb3c8588b41616914eb106eaf/exceptiongroup-1.2.2-py3-none-any.whl\" in the cache\n", + " Current age based on date: 335265\n", + " Ignoring unknown cache-control directive: immutable\n", + " Freshness lifetime from max-age: 365000000\n", + " The response is \"fresh\", returning cached response\n", + " 365000000 > 335265\n", + " Using cached exceptiongroup-1.2.2-py3-none-any.whl (16 kB)\n", + " Downloading link https://files.pythonhosted.org/packages/02/cc/b7e31358aac6ed1ef2bb790a9746ac2c69bcb3c8588b41616914eb106eaf/exceptiongroup-1.2.2-py3-none-any.whl (from https://pypi.org/simple/exceptiongroup/) (requires-python:>=3.7) to /tmp/pip-unpack-gt9t9_ps/exceptiongroup-1.2.2-py3-none-any.whl\n", + " Looking up \"https://files.pythonhosted.org/packages/08/aa/cc0199a5f0ad350994d660967a8efb233fe0416e4639146c089643407ce6/packaging-24.1-py3-none-any.whl\" in the cache\n", + " Current age based on date: 335630\n", + " Ignoring unknown cache-control directive: immutable\n", + " Freshness lifetime from max-age: 365000000\n", + " The response is \"fresh\", returning cached response\n", + " 365000000 > 335630\n", + " Using cached packaging-24.1-py3-none-any.whl (53 kB)\n", + " Downloading link https://files.pythonhosted.org/packages/08/aa/cc0199a5f0ad350994d660967a8efb233fe0416e4639146c089643407ce6/packaging-24.1-py3-none-any.whl (from https://pypi.org/simple/packaging/) (requires-python:>=3.8) to /tmp/pip-unpack-gt9t9_ps/packaging-24.1-py3-none-any.whl\n", + " Looking up \"https://files.pythonhosted.org/packages/cc/20/ff623b09d963f88bfde16306a54e12ee5ea43e9b597108672ff3a408aad6/pathspec-0.12.1-py3-none-any.whl\" in the cache\n", + " Current age based on date: 216\n", + " Ignoring unknown cache-control directive: immutable\n", + " Freshness lifetime from max-age: 365000000\n", + " The response is \"fresh\", returning cached response\n", + " 365000000 > 216\n", + " Using cached pathspec-0.12.1-py3-none-any.whl (31 kB)\n", + " Downloading link https://files.pythonhosted.org/packages/cc/20/ff623b09d963f88bfde16306a54e12ee5ea43e9b597108672ff3a408aad6/pathspec-0.12.1-py3-none-any.whl (from https://pypi.org/simple/pathspec/) (requires-python:>=3.8) to /tmp/pip-unpack-gt9t9_ps/pathspec-0.12.1-py3-none-any.whl\n", + " Looking up \"https://files.pythonhosted.org/packages/cf/db/ce8eda256fa131af12e0a76d481711abe4681b6923c27efb9a255c9e4594/tomli-2.0.2-py3-none-any.whl\" in the cache\n", + " Current age based on date: 335630\n", + " Ignoring unknown cache-control directive: immutable\n", + " Freshness lifetime from max-age: 365000000\n", + " The response is \"fresh\", returning cached response\n", + " 365000000 > 335630\n", + " Using cached tomli-2.0.2-py3-none-any.whl (13 kB)\n", + " Downloading link https://files.pythonhosted.org/packages/cf/db/ce8eda256fa131af12e0a76d481711abe4681b6923c27efb9a255c9e4594/tomli-2.0.2-py3-none-any.whl (from https://pypi.org/simple/tomli/) (requires-python:>=3.8) to /tmp/pip-unpack-gt9t9_ps/tomli-2.0.2-py3-none-any.whl\n", + " Installing collected packages: tomli, pathspec, packaging, exceptiongroup, scikit-build-core\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.\n", + " cudf-cu12 24.6.1 requires numpy<2.0a0,>=1.23, but you have numpy 2.1.2 which is incompatible.\n", + " tensorflow 2.17.0 requires numpy<2.0.0,>=1.23.5; python_version <= \"3.11\", but you have numpy 2.1.2 which is incompatible.\n", + " thinc 8.2.5 requires numpy<2.0.0,>=1.19.0; python_version >= \"3.9\", but you have numpy 2.1.2 which is incompatible.\n", + " Successfully installed exceptiongroup-1.2.2 packaging-24.1 pathspec-0.12.1 scikit-build-core-0.10.7 tomli-2.0.2\n", + " Removed build tracker: '/tmp/pip-build-tracker-sbqaaasp'\n", + " Installing build dependencies ... \u001b[?25l\u001b[?25hdone\n", + " Running command Getting requirements to build wheel\n", + " Could not determine CMake version via --version, got '' 'Traceback (most recent call last):\\n File \"/usr/local/bin/cmake\", line 5, in \\n from cmake import cmake\\nModuleNotFoundError: No module named \\'cmake\\'\\n'\n", + " Getting requirements to build wheel ... \u001b[?25l\u001b[?25hdone\n", + " Running command pip subprocess to install backend dependencies\n", + " Using pip 24.1.2 from /usr/local/lib/python3.10/dist-packages/pip (python 3.10)\n", + " Non-user install by explicit request\n", + " Created build tracker: /tmp/pip-build-tracker-sbqaaasp\n", + " Entered build tracker: /tmp/pip-build-tracker-sbqaaasp\n", + " Created temporary directory: /tmp/pip-install-8wo1l2z1\n", + " Created temporary directory: /tmp/pip-ephem-wheel-cache-4n2pnd9q\n", + " Looking in indexes: https://pypi.org/simple, https://abetlen.github.io/llama-cpp-python/whl/12.1\n", + " 2 location(s) to search for versions of cmake:\n", + " * https://pypi.org/simple/cmake/\n", + " * https://abetlen.github.io/llama-cpp-python/whl/12.1/cmake/\n", + " Fetching project page and analyzing links: https://pypi.org/simple/cmake/\n", + " Getting page https://pypi.org/simple/cmake/\n", + " Found index url https://pypi.org/simple/\n", + " Looking up \"https://pypi.org/simple/cmake/\" in the cache\n", + " Request header has \"max_age\" as 0, cache bypassed\n", + " Starting new HTTPS connection (1): pypi.org:443\n", + " https://pypi.org:443 \"GET /simple/cmake/ HTTP/1.1\" 304 0\n", + " Fetched page https://pypi.org/simple/cmake/ as application/vnd.pypi.simple.v1+json\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3f/e2/8e41fb8598b78944d8e16ed4edd0ba1a3262167887825281e9306b6a0eb0/cmake-0.1.0-cp27-cp27m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/dc/c1/a47129fa0ba996a1dbf36132b8a82387da15b25ae90532e7419a9e85a924/cmake-0.1.0-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-macosx_10_11_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/48/a0/dc646ef8e371be65411f34c651d4f1857b7e38ae60ea705f302c8230cdf0/cmake-0.1.0-cp27-cp27mu-macosx_10_11_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-macosx_10_11_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cc/6a/4406f93ae2638082a5bd56ab5c399d418322ec06950f2b245e1e31e66446/cmake-0.1.0-cp33-cp33m-macosx_10_11_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-macosx_10_11_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/69/16/53acd4822f3f510c2237aa9717664af798babd68bf40cde4f996538488b8/cmake-0.1.0-cp34-cp34m-macosx_10_11_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ad/af/481d3672cfe4b4d394047379c4be5e8eae061274946db4e3af4d4b983017/cmake-0.1.0-cp35-cp35m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/92/da/c537ebb6b0c1ca8bc42a14b0ba9a837c285bede10fc116e466b8d08d2348/cmake-0.1.0-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/21/3f/14e8756101e8045e341afdc340cf12471843ae9b819e231de01106c59d19/cmake-0.1.0.tar.gz (from https://pypi.org/simple/cmake/), version: 0.1.0\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cc/19/376b033e52f52f86a68e173624bb38385a487bbd33c8426216bd59a6d4d8/cmake-0.2.0-cp27-cp27m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/19/e2/4432e94f02f1c406ce58475473d38ff3a3270089e4796c357443968f482c/cmake-0.2.0-cp27-cp27m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fc/2f/41c30aab1099401398a999aa8937e021cacd1c72f55e530fc3e3086ef39a/cmake-0.2.0-cp27-cp27m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a0/29/1fe9568b9ab510869ab3ea004cf3f287b3ddea3a7a8223d66e1cbee38acd/cmake-0.2.0-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-macosx_10_11_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/65/4d/3120ba976d24677afe103987521627978d091d82035bf9cf6fe83159715b/cmake-0.2.0-cp27-cp27mu-macosx_10_11_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e1/ce/9b766e7ec94d3bea7449e6b3dbca0db19630e649f996d4577f54962f0634/cmake-0.2.0-cp27-cp27mu-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1b/b7/effa7f8b940844b04c8dfb198c6c8a7f645a29bb118b7445beba23d26e14/cmake-0.2.0-cp27-cp27mu-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-macosx_10_11_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e4/ea/09ff78171b996825f2ce64e2bd0390299bcdec339bc24ac131b7f7baf192/cmake-0.2.0-cp33-cp33m-macosx_10_11_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5f/c3/56ec156681a1e331731006db9b6d9abb051df067665455990c56412af816/cmake-0.2.0-cp33-cp33m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/88/67/7cd75940f25a0d747c8f92cc15f95b5e749f0ba7f61deb6a0ca4b56a6f69/cmake-0.2.0-cp33-cp33m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-macosx_10_11_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ca/ed/d6dbd2917eb2d75c90332dc4872cbaa8ac17666822fbcfdafa4e9f9e8bda/cmake-0.2.0-cp34-cp34m-macosx_10_11_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/27/13/a1efddf73e45c72c91d57ee80bd8adfbd361b93f7dbdb9dd00595881952e/cmake-0.2.0-cp34-cp34m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0d/76/fbb37b29d81f29f3dbf9d4b9f0b4e94a8d89d9a2e20cf72e1db7976651b0/cmake-0.2.0-cp34-cp34m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-macosx_10_11_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/95/d2/ecb09bd403fd7512eed5881d3c26def232d1490bb54475dbacb5f03e4b8b/cmake-0.2.0-cp35-cp35m-macosx_10_11_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/64/2f/d738d4aa646dcef72a06208c90ac52874f2a8259bb433b9a4ed44e206e8d/cmake-0.2.0-cp35-cp35m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/74/ba/0b61a6fde7ef7b75157bdf1b28ab1806deb0acd03114df97122e6f0aaed2/cmake-0.2.0-cp35-cp35m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/17/a5/5db052d60d849804a00a35597595b44c7e1be1c62f2379b6543657edda24/cmake-0.2.0-cp35-cp35m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d4/73/2f029928202f74ef98c39b42fa6abfab7cf9f9b5875e41b2e8d1803e041c/cmake-0.2.0-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/31/28/4841078705e01a30a22370fe8c686c3be11978ff89debc7a0c2a7070e709/cmake-0.2.0.tar.gz (from https://pypi.org/simple/cmake/), version: 0.2.0\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-macosx_10_11_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/57/a5/73f87801cb51abb7d9004333485e19761c384a712969c42a509721a5e2eb/cmake-0.4.0-cp27-cp27m-macosx_10_11_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bf/22/b0a6198da52f2987099654738dca5a41aec65dedc046ad651c35c8a2d549/cmake-0.4.0-cp27-cp27m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ca/9e/39476bf33ad04fb180dcd7ffc69b4b9f581ccea2b5881f7025e62c905447/cmake-0.4.0-cp27-cp27m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c9/25/b5baa59f9c112da5a932e459819988195ac0e7c3e44477624697a687a84e/cmake-0.4.0-cp27-cp27m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/04/7e/9b20a010513779afdcfc363215e17a0be2e32f01c6674b28de9aae73aa26/cmake-0.4.0-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/81/77/dc87a64b3b4c86c719cb54b77ea0b2bd7709aa644465f332861ea87618fd/cmake-0.4.0-cp27-cp27mu-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/17/b5/188ed987d6d5f00970831d74b88631c0a5f4498b8f845ec8814fb118d836/cmake-0.4.0-cp27-cp27mu-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-macosx_10_11_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c6/0a/b8c4949ee54e2881b36c3142abea4c060e88874b40c0234e3723aa7ce63e/cmake-0.4.0-cp33-cp33m-macosx_10_11_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4c/76/fb8263df41d127b3204174396fbd4959271184ab757b462c9ab0c6f2a1fe/cmake-0.4.0-cp33-cp33m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c8/cc/18bb9c4770d1024fdd7fe4c721c35ec0e74459e6622f635881597793eab5/cmake-0.4.0-cp33-cp33m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/31/d9/384aa8065c7c05936c6b57bbda56cd0b69e0e326c8a8ac63175ba14ffb0c/cmake-0.4.0-cp33-cp33m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/77/f0/f0e0218d4976f5d7d5d3e4e991630f134c373b9dd14329c57dbb6e484878/cmake-0.4.0-cp33-cp33m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-macosx_10_11_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/18/3a/e333987f62061299af8dd653ebc26fff98a53900a39fe7620bfefe83dc27/cmake-0.4.0-cp34-cp34m-macosx_10_11_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/57/21/a08c32a7d5b178e79eefe5151a4218a16e5e6e7a7f935124a66b163caf97/cmake-0.4.0-cp34-cp34m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/51/63/3d49739fdb7a3e24cc89bbbef05ef39460818a1b2a648d76e42370cc2bf5/cmake-0.4.0-cp34-cp34m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c2/b8/f8441004ffd3b7bd00f313361b382c6a53794801a745defbd95534024919/cmake-0.4.0-cp34-cp34m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b0/7b/810e4691eda6dd2265978468adddbf26dfa77d934b56777a579f0adc298f/cmake-0.4.0-cp34-cp34m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-macosx_10_11_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a3/1a/be5c4dacc979aa048c81006591a89cdb909559b91a4cc00a5dc3be09966d/cmake-0.4.0-cp35-cp35m-macosx_10_11_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/41/b2/a77841790f790abec3035d8cdb8c0d58d5bc87a2746c80aa6f0dc5a3a823/cmake-0.4.0-cp35-cp35m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bf/9c/ce1e48bc14d5f7b83d2d01bc4bc21160096a1732e4f9c24295ddc598dec3/cmake-0.4.0-cp35-cp35m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b1/63/6805eda8ece2ff7ff655af087c98abf851cbd6c2a8825a91738a121ac881/cmake-0.4.0-cp35-cp35m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c1/c9/997888e0521aea9183bbb4908f0959d9f40138ea41dd8c8893e51364359e/cmake-0.4.0-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/ae/69/f8ee69fe46531499cc1ab607547f7e5d54bbb12296f49f93e3731da7f69e/cmake-0.4.0.tar.gz (from https://pypi.org/simple/cmake/), version: 0.4.0\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-macosx_10_11_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/29/97/47ccc447272f972b814eb249f1e70544869d567daa491d938bec073e6ef3/cmake-0.5.0-cp27-cp27m-macosx_10_11_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/31/95/15023b8eca7116fc880e3f0a0a84e86b6e1bb4c5fb5adc3603d01203836c/cmake-0.5.0-cp27-cp27m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f8/d0/b255a729424d3e421b96cd77f5f01be41f5643695882c01a963526e2f158/cmake-0.5.0-cp27-cp27m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/80/3d/8849b2e4330fea2063e064397430a0caa445cfc133afd736efc8ebd21f0d/cmake-0.5.0-cp27-cp27m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/06/f4/76b1b9004221c9640b1b6e1460c2ec9d473579953063fc978b92d22aadbd/cmake-0.5.0-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d2/77/7c6fc8022abbc71a9fd03e1ada9ccef3efcff0ef3eee8dffb143964a81f2/cmake-0.5.0-cp27-cp27mu-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f4/ec/bacbca209af941feb7e86474a0fba842bf1f1b95996e77b5726a0a2ebf20/cmake-0.5.0-cp27-cp27mu-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-macosx_10_11_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2f/df/30606251f6a41773e49c487ee70991cca6b2e73b1c7d0a0822ebb06c6152/cmake-0.5.0-cp33-cp33m-macosx_10_11_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e1/92/7998c586e374c7ffef0f5f5aad0c7675bc8bf366517b41c308185179f27b/cmake-0.5.0-cp33-cp33m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4f/17/8d8a7eeb8e74567291974213d1149b2779cb444dad8b09464cca3aa74183/cmake-0.5.0-cp33-cp33m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ed/84/17fd88798f7c5836252ef8183470d545c49b302a5d36a492d37c539fff70/cmake-0.5.0-cp33-cp33m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3d/49/f3be9412481b4a74b66737129fc6b6d3e9f4661f2bb99443acb9618783a1/cmake-0.5.0-cp33-cp33m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-macosx_10_11_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9e/b8/7dbea235bed72a9d77e5bdc1369243891b87c427780701abea3de0a809cd/cmake-0.5.0-cp34-cp34m-macosx_10_11_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a6/1a/b2660f1b1d6a1492f766acc38eb66da18e399307b0cdb7dcb12f581338b0/cmake-0.5.0-cp34-cp34m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6f/f3/1f27b2a9ae6acd8167381f499ddc666947a849dc1387fb05e537ee2ecb5c/cmake-0.5.0-cp34-cp34m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ed/e4/9c7d721bf5e0deb244545d390e4b5714555aa7178786bdfb331d09e2f6f0/cmake-0.5.0-cp34-cp34m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/18/35/d209fc18cf1d3084f02c1eb5b32652a7661848d3502054c1e7ec5e2180d7/cmake-0.5.0-cp34-cp34m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-macosx_10_11_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/58/be/88541a2e07234f31efdbcbb859802c510316ef46910c4009b9ffadc245dc/cmake-0.5.0-cp35-cp35m-macosx_10_11_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/48/d6/f6998051332646c8de9070d7176078cb0b524140f1a2a3cf90a82bf479e2/cmake-0.5.0-cp35-cp35m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e8/dc/12ee882eeb5eeb3d0a68e37db8331efbab1dccf53ebaabd3813daef9b95e/cmake-0.5.0-cp35-cp35m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/56/c1/e1d19faa5c5095c2260e7a67ef7724a4a0404186a7cb6d3872b9bc1dd6f6/cmake-0.5.0-cp35-cp35m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7b/8e/59abdb74a8287a414325eac7ff6302ad65db5847748096c0d46452f54d30/cmake-0.5.0-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/18/28/9e09b567ee829164cb4d4fa265b62cd9bec2188c90d62d9bb6d12a320d3d/cmake-0.5.0.tar.gz (from https://pypi.org/simple/cmake/), version: 0.5.0\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-macosx_10_11_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/72/5c/ef3fe44a9b766a6048e14e6832492bb410c165db19cce2bd794ca3015343/cmake-0.6.0-cp27-cp27m-macosx_10_11_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/64/fd/ab73abfcdcd94610f290ca8487f7c11b3d66b298b349b298bf81556ce259/cmake-0.6.0-cp27-cp27m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c3/da/05d2952cac3608c87af9f98a05b143c0c75fec780422393e9745a6074e29/cmake-0.6.0-cp27-cp27m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/47/8a/887cf9f9fff1a593579035f730d21270dc95a8e9699331ccdcd6bf594f5f/cmake-0.6.0-cp27-cp27m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/19/30/b7679f5c9d51106bb4603f8c961216cb32150a9bb335f2607174ec5f7318/cmake-0.6.0-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/25/ee/313bfe4ec9158915831ba96171f9ef006598bb378eb52d98388422a94abd/cmake-0.6.0-cp27-cp27mu-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/75/f7/516c00fe0e4eca682b01018c99c35368d7a006a7245c0f1dc233bf340fd5/cmake-0.6.0-cp27-cp27mu-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-macosx_10_11_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0a/9e/88ab6d800cfac83b77324532f076dad371e38627e8666c679f5f23b104ca/cmake-0.6.0-cp33-cp33m-macosx_10_11_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d9/3f/50b022c08bfe4207ea54fa1ab717b61ab8147afb88b812b5568df0dc224b/cmake-0.6.0-cp33-cp33m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1d/84/872879c670aeb1124549511df7029b63870270a64d5deabbd2bb123a95bb/cmake-0.6.0-cp33-cp33m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/45/b7/26d76189141d18495850dfbb3ef81185a65d47fc536c1c96d75cd7f4305f/cmake-0.6.0-cp33-cp33m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5f/d7/a338da2032fd3922f69226fe9bb6bb0e17aa053e6787149ee87a046acec5/cmake-0.6.0-cp33-cp33m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-macosx_10_11_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9d/bd/d3ff183f2a466451d32ba8bb7eed3e46e4263353c0d7b1ef7cb6426ca47a/cmake-0.6.0-cp34-cp34m-macosx_10_11_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b9/3d/57d30bf170d221a2a116e6207bcfcf4dde2337213e5092d690e408d84c42/cmake-0.6.0-cp34-cp34m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/65/04/9845e136daa7216b228774bc90a62b246852388ad973b029a14692c4c14c/cmake-0.6.0-cp34-cp34m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e3/96/c464549688c010329ce2213abb37d0d7e9dda0746f72717cfdc82640de10/cmake-0.6.0-cp34-cp34m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b8/5d/c6e6b6d260e7a13897f9365d221ff33a608baa51ac10516cdc9709050b26/cmake-0.6.0-cp34-cp34m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-macosx_10_11_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/90/99/8a7ce72fd4e5fb46d13bd9983e059494bbf137776fe1edc9538320e104a5/cmake-0.6.0-cp35-cp35m-macosx_10_11_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5e/a9/93b49e90fa32cd57e9f17805c31e5dbec96deb673e41f317a138a9dbebf5/cmake-0.6.0-cp35-cp35m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ba/52/88a917415776439cee7c429989a611214c2cc3df440631fc5a9542de918c/cmake-0.6.0-cp35-cp35m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/30/fc/8cbf38bb60f1485f8123474040916057c85ebdd4fb74c0817d46f2e1c305/cmake-0.6.0-cp35-cp35m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/32/14/98a7f56efbc153a2808032b8b5c8a84d9fb1aca63cdd9b54fe971805cf26/cmake-0.6.0-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/5d/0a/110b4036691420703a85d6fa5671dc64dc07f2120373d1512195a9e1d97d/cmake-0.6.0.tar.gz (from https://pypi.org/simple/cmake/), version: 0.6.0\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-macosx_10_11_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6e/56/58e42a43b8732560b72d3ab42c27740da2573c731f18129188019a698d60/cmake-0.7.0-cp27-cp27m-macosx_10_11_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c2/7f/6b01d2ddcaff6ef8600bfbb87e358ea8a5742f0107acd61e01b615428c97/cmake-0.7.0-cp27-cp27m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/30/dc/145e56eab1874eef6dfec1a1df562c08ee5161b60a3d66c9d9d611bc6478/cmake-0.7.0-cp27-cp27m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/55/ff/c408c71aa093c4b4b87c0b4887b8bfb5384d01fefddf72a1d79cf364bae7/cmake-0.7.0-cp27-cp27m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/73/26/2a672cd9b798c4ea227636856f62e7400e615cc9eb74ceb2ef4f6faeaeb3/cmake-0.7.0-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a6/4d/9b868c898612382f15867fac2f6243f3d83be0ee1416fd5438fd7149dd58/cmake-0.7.0-cp27-cp27mu-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e1/f1/97b1aed8f8eda3b4c318131e462c1ac079f3ca3dde8448e64ed29c926d2f/cmake-0.7.0-cp27-cp27mu-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-macosx_10_11_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4f/ca/ac3e13ccc9bed3ab8f1bd9281271c91b75bfb228f2e41783fa8598659308/cmake-0.7.0-cp33-cp33m-macosx_10_11_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c0/1c/5bb230c11acb6c41d0c7ad83099fed09da58ecf85ee74be62b96268dbb28/cmake-0.7.0-cp33-cp33m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/47/a3/9a69e392d173cbd5632b551685b4b6560117d4a4442ebfd251abaa6084a0/cmake-0.7.0-cp33-cp33m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a1/44/aad20ab9b5e25652c7f9a311fcab60881ac0035d9cafeebbbb190a366fbd/cmake-0.7.0-cp33-cp33m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c5/46/527c10496761985455ca84fe3ad867c0a3450f3230bcbc907175a88bacbd/cmake-0.7.0-cp33-cp33m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-macosx_10_11_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/26/f1/881726d5dc23bc27674c4a5156a73805d50078ff65d7c143e763dfc89b0f/cmake-0.7.0-cp34-cp34m-macosx_10_11_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/89/36/72b38139f5a8a4b090b976570367ddc0e0507b47aa8b0d4de2cab3473e06/cmake-0.7.0-cp34-cp34m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5e/fc/b238e2f1a586ce4b0388464b277f4692099e6c2a934dc6df35702c3e4884/cmake-0.7.0-cp34-cp34m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b8/05/f77d71ed2a2d79d87db0583f3fa37151e1e7bd01b47fb9480df838ac60f8/cmake-0.7.0-cp34-cp34m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c1/a6/425b1f6d69dd582ef9ae8b5fe13a7ca269c0bc356f7225152dc0cb8c0a40/cmake-0.7.0-cp34-cp34m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-macosx_10_11_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/62/56/7641a17602114792dc3fa8108858ffa671be035e5007e074356d1862ecd1/cmake-0.7.0-cp35-cp35m-macosx_10_11_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/31/ee/717263dc8fa82e6b28365bd0ba76e6604d592247eb95857e84053be659ba/cmake-0.7.0-cp35-cp35m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6c/2f/decadbcfa4c89cbcb7e27a4c9643493542d1a8aec2aba3f49565c3c24623/cmake-0.7.0-cp35-cp35m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/65/cb/440f8bbea5557c74a1fd08e297974674792a8e6f3dddcfe98aafa989adc8/cmake-0.7.0-cp35-cp35m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/38/5c/854a6aa92f497b1a35df560500bdf25a169e79055945f15146c7a8c25ebc/cmake-0.7.0-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_11_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/04/6e/ca540dc6e8c43b9f98e788f442604a18feeba278f5703871a1f49b6955b8/cmake-0.7.0-cp36-cp36m-macosx_10_11_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/00/3f/73af097e7943dd8d018a2fdcac0bcad9a65844ea997cbb784a233d8973a0/cmake-0.7.0-cp36-cp36m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c8/97/c1272b153a4d14a39a324e23c70a2e8299e972d3b3b41cde1bcd3acc0857/cmake-0.7.0-cp36-cp36m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/24/7d/d75067cea6e06c5f284df9a9a64f9c26df1717597c105e02503ddd94688f/cmake-0.7.0-cp36-cp36m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b5/f7/baef55201b77fa68e45e35292c4bb9fb1769a94155f57bf101e9dee5b5f2/cmake-0.7.0-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/95/ff/4f1a4733e85a6ad7594ebeb7e68f494f71841432d02a06c5734917708c61/cmake-0.7.0.tar.gz (from https://pypi.org/simple/cmake/), version: 0.7.0\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ad/c9/8ab3797a4aefbe9ff5c33e86c637955719b859149629baa9fd801f54b26d/cmake-0.7.1-cp27-cp27m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cb/14/95ed8da80fcdeb205aa1e30568bff2c24b96af364f52b952692094aaa6d5/cmake-0.7.1-cp27-cp27m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5c/1b/7ff528bc55e4348ed2c316d1b8bec6ac173b4ea8c439bd05431bdecaa85f/cmake-0.7.1-cp27-cp27m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/65/e3/d949cebd20c88ce28a44b0b752dbea102c138052207f76a1bb1965590d69/cmake-0.7.1-cp27-cp27m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bd/e2/cf3a8607122b7274aa6894b8dd8e8b4d06cdb2a2506d77cdcc5c96443412/cmake-0.7.1-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f0/1e/1920bcc5bc40a745e9d0aefc13a1ea19ed267f49688987c5eda4c3e56629/cmake-0.7.1-cp27-cp27mu-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e6/21/172342b9f755458a68824f92193dd50739da5761d9d0364b43cb0299782c/cmake-0.7.1-cp27-cp27mu-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/79/4f/6e482479c3c123805ee2b1023e1fc7a566d8264f2964e20904af88dd88d7/cmake-0.7.1-cp33-cp33m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/12/df/d365cb672047e0c8cc4a4f90ef0c6f2953137d85a1c321241b79fc76c3d9/cmake-0.7.1-cp33-cp33m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b5/45/fae6b26929c833e27a888670a1ae47f4e9209ab872b1d1722d2f45cc7328/cmake-0.7.1-cp33-cp33m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/db/31/f55245ec37dec2167fb88485373ff8380b672e06730af71b72c81ab7354d/cmake-0.7.1-cp33-cp33m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/96/05/5fa4348444b8a4f19aab2b1b6a9ba53b92b134e07de5d81de00f27ffd90c/cmake-0.7.1-cp33-cp33m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4f/f8/9e8757ea0aa47bae84f6ca97595657e585a912d63e8d6bfc618a2a22c8df/cmake-0.7.1-cp34-cp34m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0a/6e/0f7de904826ef7610a0b7abe60fbf8dd472c5d290a907d5d649c8f41da36/cmake-0.7.1-cp34-cp34m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e2/e7/65340ed4d05d96d07ffd254f07c0d549ad474fd970bea769933f4e661eb0/cmake-0.7.1-cp34-cp34m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bc/dc/471bf67f0f0b292d6d82513d97cac054b7d99d337f37dc027de327df6d81/cmake-0.7.1-cp34-cp34m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/20/e9/ced2ab65eb9036ecc9a602db1406bba8cd301dd467b95277b39e59cc4cc3/cmake-0.7.1-cp34-cp34m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/12/e7/4cde5b54788516146145346010c07781f011b9545238982dcbab2952e617/cmake-0.7.1-cp35-cp35m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c2/83/0c43cd8f77ce3ffc6e5b8ed5884bc95dfd4304db5385879e68dea431dcc8/cmake-0.7.1-cp35-cp35m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b1/9b/74dd91d8bb0c71d572c716993578b8c32e193d678c6f5a5022103e52724c/cmake-0.7.1-cp35-cp35m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b8/ab/d26ada89a84412c7c5f569e3e548503644782ad92f4b8391bfc0e5967889/cmake-0.7.1-cp35-cp35m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/07/24/2e26a2db4e9a4379439cd911c2c6017308a4d5281a303d3593ea3bb18593/cmake-0.7.1-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/64/7a/31988be567990e4babd0ade53109e703cfb73fd0e02feffef2a0bd958e47/cmake-0.7.1-cp36-cp36m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/27/d9/b0a54c1ef72eea35bd0bfbd8c18523189c09c1646c37f85fa963d8c8e121/cmake-0.7.1-cp36-cp36m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7c/6b/1c2ebcce0927febc55aed957fa5c912326783e8bc776757d836d0dd47d90/cmake-0.7.1-cp36-cp36m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bd/db/b6cc379d9c209658a9ce1753549de43e02aeb04695369d6f58e90fe99cbc/cmake-0.7.1-cp36-cp36m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9c/52/81dcb4df9e6199cefb22c8d56e0a1a01e5490d3f7b51a0b93aae6c778837/cmake-0.7.1-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/c4/93/a44044bbffb74c0b4722948299c314a5448f4b1c90eaa07bd03f13dc32d0/cmake-0.7.1.tar.gz (from https://pypi.org/simple/cmake/), version: 0.7.1\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/eb/6c/762f517db1e05af0da6ee183fad5fb1991ea1a3a2cfd748adf1928e978fd/cmake-0.8.0-cp27-cp27m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0e/6e/583488dae3ab5f867472ea1f13c0852c902f06bec4b20fcdde5e2ba436da/cmake-0.8.0-cp27-cp27m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7d/76/c1fb17e1924eecfde8d2609e192a138be093645a0ba22889c5889818889b/cmake-0.8.0-cp27-cp27m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/87/d3/75f75ea2137c48a4b3a61a12fd060ee103832812bacc8c6ce1688e24bcfc/cmake-0.8.0-cp27-cp27m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fd/08/9c206a22f4d6b86470c94e94cb7f2bf29dfe620626e5e0ad91dee3899a89/cmake-0.8.0-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ee/70/385611beb8608574e7451ffab0507975f946d6eafde11e9a7f5f0e83d332/cmake-0.8.0-cp27-cp27mu-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ee/ce/a5801866943edd786ff58dc7b9fada4306162a16cb1eb658bfd4c0ebbfd9/cmake-0.8.0-cp27-cp27mu-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/70/7d/c604f3bf12b42cf9a8345b34a71f156194dc286a4643ed3438af5031e432/cmake-0.8.0-cp33-cp33m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/37/6d/aa7f18434d195a0a10b5f36d711ea5dbe1fcdb00828d36664f466deea4f8/cmake-0.8.0-cp33-cp33m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/78/ee/2c00ef90e55540326d335e947443d7867b568ec0fc86b98f68a849d34656/cmake-0.8.0-cp33-cp33m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ff/1b/bb5ed4e293809850e29c876f51a87d93b37de4aaae2ccbe10d7dadd6ebdf/cmake-0.8.0-cp33-cp33m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6a/b6/fdac336bbd38986fe8d4806311acce23a5a874e43ce407a56e349c108644/cmake-0.8.0-cp33-cp33m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7d/10/d18b20636b8a7d5ae0359926ff8c33774fc5ae11e5d431ded0a3f0cd03b3/cmake-0.8.0-cp34-cp34m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c5/75/dd33772eb83d6aee4f9df9aaac89e054f1c496d2e78ead3f7a792b28898e/cmake-0.8.0-cp34-cp34m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/43/01/4c1de4d04878ea9f5dd50f3dbeb7f5de711f5aa30fc5823f3793a2666ba7/cmake-0.8.0-cp34-cp34m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/dd/d9/696d9f6e764375d3e6c8bf795190f1f7f4d76cb06bdb367b94fe355e734c/cmake-0.8.0-cp34-cp34m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/60/5c/20644e372431ff1e250e394be59af8ee3a307df288f128aadd85eed60356/cmake-0.8.0-cp34-cp34m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/85/fb/91254c6598c65f8d1f477eedf44c1b1dcc2984515936a15f861592bb11a6/cmake-0.8.0-cp35-cp35m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/df/d8/ff71dee177630cff0d8e796dcdec523e4d6a1e52e51979828ab72046a33a/cmake-0.8.0-cp35-cp35m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/48/00/b1f5735bbc809fe60e1db80f195372d6e763ece04b04af89f86eddb2ed89/cmake-0.8.0-cp35-cp35m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/95/8d/9bb0fd61ca219aeae0f1df339078f3b1c7e6301335f860fe8497f601a803/cmake-0.8.0-cp35-cp35m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/61/ad/e58b6fb8f41cbcaa2a01f3487d64a178d11d7f5b7e50a8bcc85966893253/cmake-0.8.0-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/58/52/f57a0598dea5945e90f6c6bc7a966ec91f59a97c048781416bcd4dfdb60f/cmake-0.8.0-cp36-cp36m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/43/42/3f5c9df9ac5dfbed461f06885b9ab9d82a3076f04818658a935e0fa156b4/cmake-0.8.0-cp36-cp36m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ef/6f/e7794d3cf26ffff9775ac191b02c3a3c0935f5772c6bab94938e536fa418/cmake-0.8.0-cp36-cp36m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c5/15/25783718a4d937fb1b224dc2b11e52a8659f514adc274c4082fe3051c21a/cmake-0.8.0-cp36-cp36m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3e/2c/7eb3c43d3a52ff5c8e3ab065896793f5b91f70e3e7e5880a09b8cff5149c/cmake-0.8.0-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/b7/b1/96759044e6c9efaca5964722fb272beec021ff50a8d579a37a19ff631cd0/cmake-0.8.0.tar.gz (from https://pypi.org/simple/cmake/), version: 0.8.0\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/13/c0/7937c009525d09eb59c09dbe26cb0d39aa65d0e5165614c3ceb3410e973d/cmake-0.9.0-cp27-cp27m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cb/10/6bd253f7e90756fd7e2a81cb082be1dc0bd2245916334217e3ce853fd72a/cmake-0.9.0-cp27-cp27m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/68/89/52b1562d82f9f2ca5971154a364dd8eab75d36b2e0c2f46c92363c807ec7/cmake-0.9.0-cp27-cp27m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ec/7e/f58544c310e165eb1a04135a7d1a4a458e2766c7158c1185b09c8de9e067/cmake-0.9.0-cp27-cp27m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e0/01/b9ea52e278705d1ea1eb5484e5c562ea807b1fe498adf9f5842a97da82e7/cmake-0.9.0-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9b/3e/b798ff2c986e3f4dd97cd917c349f91bc765a2431411b6c61c8ea0a1cb06/cmake-0.9.0-cp27-cp27mu-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f4/5d/00405f8dda507fab2af89d50487f959dc5a43ce042bfe7c8ccd165ba47cb/cmake-0.9.0-cp27-cp27mu-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fa/d5/7331336af2e73c6847f0e9cad9fe5a44304da4e8dec1eb8da71b2f097a04/cmake-0.9.0-cp33-cp33m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3a/3e/2603977e2268ec2f22eebd6175e8ea3c54afd5463e2f1cc4b76f79f07edf/cmake-0.9.0-cp33-cp33m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/67/f2/63f74515dd3c26c994e64eaea4534c16d3ba02bbf22ce08b7bea61ef8c15/cmake-0.9.0-cp33-cp33m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6f/87/823345dd0e01013fd2025aa99f41a005e4315c41bb49d79babf540dc816a/cmake-0.9.0-cp33-cp33m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b2/2c/b47da25f692530469cd1b0c817f99f71ff0bf80262099b5c26afd0cd7bc5/cmake-0.9.0-cp33-cp33m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/84/28/72a27e53828b930c9a35051b6b023b0f339add50e1c1db0f2bb0446cab53/cmake-0.9.0-cp34-cp34m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/81/67/47c1268cf68365eb20f8e5656dace5b75e62e254d81644551fa18482691a/cmake-0.9.0-cp34-cp34m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e6/dd/96d8eb65852a03f5f87068cf1856844a400dad8924f4eb771eb4e5982843/cmake-0.9.0-cp34-cp34m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/88/1a/a122ed11bf78945881d88fb872286a9817cb5693169d05269cd7b8be0989/cmake-0.9.0-cp34-cp34m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1a/b9/363165f6839c4f6641c60156e64d780a497f6a164b7c70b4b36d655d824f/cmake-0.9.0-cp34-cp34m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e7/c4/b7efc66f8e9eee93cd5e573ed451628749062bfdd9b0a538e8b0edbb8d07/cmake-0.9.0-cp35-cp35m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/88/1b/a2589abc7d289a12f3ec20760d91a8b46e8703b06a69ea8cd23fb7b64afa/cmake-0.9.0-cp35-cp35m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/27/44/46efe3150c71ff24e6f87acf52da2a79a715e428a2cf5be016b8647ff890/cmake-0.9.0-cp35-cp35m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d1/fd/fce4ba922aecbfd42d54b6ca1c3082f8fa77027f7e2d6ea3c45dd50846fe/cmake-0.9.0-cp35-cp35m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ae/31/5b7365f70f561a8e65fa2bb5640fda9fc5de77c7e78ec414fa99f35b1bcf/cmake-0.9.0-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3f/4c/d2d69888e5d2ee1c012d675ca141b254f8f5d64dbeb4f596fe5fe4c6c5b1/cmake-0.9.0-cp36-cp36m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d2/66/c1c4c175d4b7eed6d0fabc21c313fb98906b0261ab52d4d78bcb99843c3d/cmake-0.9.0-cp36-cp36m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/19/aa/ab833932dbf8e0c56eae2bf5896c3a18afc600c77286f0bd8ff809a35dc9/cmake-0.9.0-cp36-cp36m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/84/81/8a9af361ea55258ac7e75100eb16e90f35220f7b046fe58965f3c971579d/cmake-0.9.0-cp36-cp36m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/aa/cf/d11961700f64a0ee5bcb2f1503ea2e4dff5d3ffdd58ce19babaf3d6d193c/cmake-0.9.0-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/b4/f1/7e9fa0a5ea7004b97cc8f5365fce25462af6e0da0b9f955f629e4655f1af/cmake-0.9.0.tar.gz (from https://pypi.org/simple/cmake/), version: 0.9.0\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/43/e9/fc311fd9fc5dcbf3054347bed1e74936d6d916e33041a5129298a63e4f79/cmake-3.6.3-cp27-cp27m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/82/87/4c1bf3324249566f486a537b31f9ab7633a8544f64c324bfd80a7cb3b353/cmake-3.6.3-cp27-cp27m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/40/24/1f55191d6f0b8a8954bbf85d485f32ef03d20306b393ef96e2a7bb538035/cmake-3.6.3-cp27-cp27m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4f/ee/ef09c92f548da4861c5a950bd93f939b75c7a765bd4240c91eee5119f639/cmake-3.6.3-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c2/99/dff062a9918c52fcf072d12a4b846286b06fe9640cd2da3101372ab8f618/cmake-3.6.3-cp27-cp27mu-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/86/8e/0270d958f1e34c902511c39424f60d8a61a0691dc3227ebc0e19aa09f7c8/cmake-3.6.3-cp27-cp27mu-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/33/c6/35eecb19e2b5304028a45e6fd248b4f31dd1f687147e273ee1c8090362ab/cmake-3.6.3-cp34-cp34m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3d/27/7932dcd0543f7be5453ac9fcd62e1f589896013684531e8c309875ed2137/cmake-3.6.3-cp34-cp34m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/53/9c/b86dc53770e60d7ab407ebd80d23ce4d8137796877fc1095f12f503cacb2/cmake-3.6.3-cp34-cp34m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a2/9e/f43d612c33485d075a25cbb2aae00d414c5f091709584a9687ad4eb8f799/cmake-3.6.3-cp34-cp34m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/df/96/2b9646d3049207fdb3d871696564259e393f438cf6740fb3c5d9104409d4/cmake-3.6.3-cp35-cp35m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/88/ac/2ca2dc3d72911e23b083622e729846ee246b4abd0cb72e4a0020a5c2d8c7/cmake-3.6.3-cp35-cp35m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/71/79/867a3606d339f0f793bf6d4344f8372bac6e3d1f0dc36affc845b257ae49/cmake-3.6.3-cp35-cp35m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e3/6c/5610370e46b5ed04e27170516f615e6e965d000d1cea0bf74399dfc14e2f/cmake-3.6.3-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/03/fa/1452b8caebfc82a841b14c43718abb610843802edf6d167ff5ef6fec11c8/cmake-3.6.3-cp36-cp36m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/86/5c/6b5cd10e45694227063caca904407b702562ae738c18ddcb3e796b515d1e/cmake-3.6.3-cp36-cp36m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/14/f8/105553f054a689b744f7d5f0b74ad4dee0fbc202a804e5d868ebbe54b563/cmake-3.6.3-cp36-cp36m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/91/70/221e740188e0a87e78420c7a44d61eec9a6ed3081bc15b6a52fb3293dd1b/cmake-3.6.3-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ac/6e/f85b3a710530419cc70369bc8567bc5d71d70be7029e6550e4e0d12a617b/cmake-3.6.3-cp37-cp37m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d0/22/4ea41df68cf5fa3f7ce2aa263241dc1835fc8903820d0a89d9014092e560/cmake-3.6.3-cp37-cp37m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/93/14/f2bc775505cdb68f33b0f6555cba35dc270288bee5d7963680e0c9b22edd/cmake-3.6.3-cp37-cp37m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fb/b3/99a06105e79aa7d0a81773d0b2c5de788907b15b8f19047109ae96afe0e4/cmake-3.6.3-cp37-cp37m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/4f/1b/ab950fbce5aa8c50340d93d5db112ee47d25e68878987be2f3ff0d028d24/cmake-3.6.3.tar.gz (from https://pypi.org/simple/cmake/), version: 3.6.3\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8a/ce/4f0744efb88d5a9dfd18dd5b70c42499598d59d482894c8a8e59fa01f548/cmake-3.6.3.post1-cp27-cp27m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4e/61/431843a9369308867f2511d2ddbf1f7ff18096595ecd98378466c1583dea/cmake-3.6.3.post1-cp27-cp27m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/13/51/8a0d8a583f84871a98ef7f68493c3ea7f2096b50a1120a054ebc8d5b00de/cmake-3.6.3.post1-cp27-cp27m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/60/a2/f0f10bd07ebc1b6c283e437ab69f77f49df377262fe9ed221ec5ac9b6d20/cmake-3.6.3.post1-cp27-cp27m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/93/e1/fa18494f3b617461b771aaa26b8c91325223856a0f65674960f94c0ac7a0/cmake-3.6.3.post1-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/40/57/d5fea9220030e46f08318cab4c401208f45154961e02bf46522a234f0a9b/cmake-3.6.3.post1-cp27-cp27mu-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/46/0a/7445f3d697c69dd8eb2ada8ba0e2a806b736b93ff194517b78ee5e204cc8/cmake-3.6.3.post1-cp27-cp27mu-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/17/9f/749d8ad79dd80eb41870bb3923eca904e3aaf951e25b038eea8fd4259334/cmake-3.6.3.post1-cp34-cp34m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e4/a6/9a7379d5738f57d2d0489c78cc4f2087d3674b2ae5ba864751ff592b5132/cmake-3.6.3.post1-cp34-cp34m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/14/d6/1863decbc32b114c85e6ca370c5c472210b16a8dad374939998429b37d7c/cmake-3.6.3.post1-cp34-cp34m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/64/1d/44b7cdb59cb3c8a4b069666622f51c96a978a579178b3aaa0d43fa1f30c4/cmake-3.6.3.post1-cp34-cp34m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7b/b9/17f00a7c57e4c1aca0fe2bf646a8334d03b07a41670aa6e01da23158b1af/cmake-3.6.3.post1-cp34-cp34m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8d/a4/d655d0504beb6f9e2c83548ece38be4aae7cb3c1a995c56d864708ce87f4/cmake-3.6.3.post1-cp35-cp35m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ca/6a/cbb2edd98bedc79dafe054d2c9c32e2025a73145c2cbe8a1ff11344e9433/cmake-3.6.3.post1-cp35-cp35m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/60/4e/8dd9c2de1f498935dfb4cf0b6466b56204a0bab554da1acccab8b00c635a/cmake-3.6.3.post1-cp35-cp35m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/dc/04/d9aa56e899be60e577de357f2d8bbdcedf1de1561824df263003ad12dbd5/cmake-3.6.3.post1-cp35-cp35m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/62/98/1ee20549ca03d56912c8bed4e6cd22e69fcda8803b5500138761a92f794e/cmake-3.6.3.post1-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5d/37/7a49fbcfef4f80b0a11fcf737dc6bd2acb66604a967afc70919ce6dfd482/cmake-3.6.3.post1-cp36-cp36m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/66/b9/90de12ebb406da8d68504f5dfd37b3f897f93358f9b3d8538aa5b6aa1d6a/cmake-3.6.3.post1-cp36-cp36m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6d/ef/d46e76885b68866778b2c1b5d66f2bc0d488e83483a6ab9fd0f2887929a0/cmake-3.6.3.post1-cp36-cp36m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7d/d4/643b8052da2206e027ad578486249b1beb3d064e42301dee6bc6fac50867/cmake-3.6.3.post1-cp36-cp36m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/81/15/d9f841021ae188432000e97bc3f470cd77d8fc8ee5b946982039d080c207/cmake-3.6.3.post1-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1d/5d/bfa42a88814aff4d81acc32aabc7201ece64f01e318764bff0ab1391a008/cmake-3.6.3.post1-cp37-cp37m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/91/51/065ebd9882412fdea7983dac9dba25b39c4c3acbb13827ba9961bbafd5fc/cmake-3.6.3.post1-cp37-cp37m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/23/c8/003aa646b5220b2aaf64b62e0bfcd0f05602971da386da5aa59a65f08dd1/cmake-3.6.3.post1-cp37-cp37m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/32/d5/49af7f1b958b9c7ed6dfb493e8dd87f4dc357e8fa1d14f6f94493d82131b/cmake-3.6.3.post1-cp37-cp37m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/68/03/5db33bb3914514a844d2f1b1dd25bb5d08ffbfaaae259c3927f2985cc3e9/cmake-3.6.3.post1-cp37-cp37m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/85/e6/38a25a70b37110cfef50a1263e90020aff400b8498d4da45b03900ec2e76/cmake-3.6.3.post1.tar.gz (from https://pypi.org/simple/cmake/), version: 3.6.3.post1\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7f/a8/031705fb752d24fd0cf819e5e895fdca5b516d3fadac079ff5f3ffde3c83/cmake-3.7.2-cp27-cp27m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/80/6d/1eea474e48ed9a2548467328b5904113d3317ec50987106be4f7920ff810/cmake-3.7.2-cp27-cp27m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/51/73/385571d5980e9bc3029ead9d6839d612c722891dcb2abf8e532ca71e45e8/cmake-3.7.2-cp27-cp27m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0a/31/50637f8cf6c243b1b31b30d35d2d1a7e9f93bbb512d7bb38f331dc3be337/cmake-3.7.2-cp27-cp27m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a0/05/65a38df6270153238955ee5e0e283865d529e740c5130efbb7dc9205ee52/cmake-3.7.2-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ef/02/bb7de39af68cf24ea1e528626da1d564531cf85e89a80d54d7494627b1f2/cmake-3.7.2-cp27-cp27mu-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c3/de/b968f3bfe0f1383b51b2fbdce7561f40308662a464f064e8ad039f90aa19/cmake-3.7.2-cp27-cp27mu-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/92/29/071c9ce26ed660b021168965a343408993a88263a352ecbe3ba389a76447/cmake-3.7.2-cp34-cp34m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/36/29/a2ce6212e097377102f7f8e7c8d359cb8b7557a5e524b0454db0a6c5468b/cmake-3.7.2-cp34-cp34m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/66/fd/bd135fa0113d1beaa8bf9509ca9345f0c3b5d70d1a351c3d64bb0649231a/cmake-3.7.2-cp34-cp34m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/dd/7f/f77db845bfbbfb6623d4467606456b518ab1d5cb36105130ac294847f4c0/cmake-3.7.2-cp34-cp34m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/61/10/55d03802c8176e9426eccf91d302f2c53c04893ea19080555ba6a1de8197/cmake-3.7.2-cp34-cp34m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/02/50/2b5e1431600cffce8843af65c160ea9db86dea68b377d2108fbb199f0086/cmake-3.7.2-cp35-cp35m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/24/35/1a57df62f231e175579d7b5b758ee1763bfad40cc6b4587107ed81ba2221/cmake-3.7.2-cp35-cp35m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e5/c9/b4277c919f92626db128876914a80d1ed74732834e08586c9c50dc26c7ee/cmake-3.7.2-cp35-cp35m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c9/88/e1ae843acd66a5ee165f87fddc719ce31dee02e5d93c63717d73284a3e14/cmake-3.7.2-cp35-cp35m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/46/98/74e00d53e5fb0e682045e43ec97ac3670e0e737629ddc85124be8577e8bb/cmake-3.7.2-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/22/98/b193ce3f4635af6dbdd89c660ee2516e5e71c3c5820dfcd6c83a21adb41f/cmake-3.7.2-cp36-cp36m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/26/3b/b5c6b2bd925b47727da624a7ff8a16edf7b39a43384204ff40620e12ccd6/cmake-3.7.2-cp36-cp36m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/88/5b/cd4155d40b9dd3a167b0d52cf443a8cd0c683ba3ee71dc83307b2de6c9de/cmake-3.7.2-cp36-cp36m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/29/1e/cb0618d112e832f23bb66271b87dd89caf752bb5e429458d69d394e84312/cmake-3.7.2-cp36-cp36m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e7/74/2734e28f6ab4c06714b792ca37072b79b6bbb1a1c048dc5482f986656587/cmake-3.7.2-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/54/ac/2a909c7064b2d84897a39559668a6feedc9d61c2bb6cb345c00c8b45a9a6/cmake-3.7.2-cp37-cp37m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/90/33/881e6d36dd671ec35cbff25eae255e985c8979428c99cb0d7427268ee268/cmake-3.7.2-cp37-cp37m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5b/4b/1336e193bc70e0da39029be4f2733cdd47510568fd2af02c9bde1b9e7629/cmake-3.7.2-cp37-cp37m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/28/05/26895f041868c25d888b0c7625dd6b2692fc88105914cfea5673fb6bfb4f/cmake-3.7.2-cp37-cp37m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/92/44/c323d78fdf87f2d9cc49466dad6d25f552d7695fd6514795e76c83743776/cmake-3.7.2-cp37-cp37m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/6d/9d/2feb9965ac5dea80ee0343c24dd5bcbb53c21bf797e6cdd168ee61469747/cmake-3.7.2.tar.gz (from https://pypi.org/simple/cmake/), version: 3.7.2\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8a/2c/a153a2d2f91f1676cfa43d51d35035a0bc7ab896b6e3ea8c5dac97ee9df8/cmake-3.8.2-cp27-cp27m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b9/57/befee1b42c6ce848c2ef62297e800627399b90a80ec279abf332822ec7bb/cmake-3.8.2-cp27-cp27m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/45/2f/3fdcc54c1be9b2e944bfccc57c7444d426031f87713ffc4eb278e09ab90e/cmake-3.8.2-cp27-cp27m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/94/1f/9ea133a3610042bce903d161281a9ad4a9c4e6db67828bca86de979a9b9e/cmake-3.8.2-cp27-cp27m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ec/b9/e01db1d375fe2d65970006e00abc625be693dcfae53b120b2aa4309d13e4/cmake-3.8.2-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/17/98/95732d5c03a041e5cc1fad39f500ce7f52a8894ec677194a68f3480101ba/cmake-3.8.2-cp27-cp27mu-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/00/dd/c999621c05863d03f3480fea9b89eb6473f0a4c0fcdcc6bb383baa39e40f/cmake-3.8.2-cp27-cp27mu-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9f/4f/d9e1a199b205e25f285b53f47cf5c51852c9976b56043ff557fd05d608cc/cmake-3.8.2-cp34-cp34m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5e/cd/20c01a5f8e5a264986cce816f5db321d84214b1980294575eb74d7f33e68/cmake-3.8.2-cp34-cp34m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/14/9b/df35191a701d9d64e95217c52f4f482111fc6bf45761a1870796814fd8bc/cmake-3.8.2-cp34-cp34m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/17/84/4cb1ca5d5526720f67bfe3e160d0c7c4be524985e1b5e166e5028e6ce8dc/cmake-3.8.2-cp34-cp34m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/41/4e/0e6af5d28bbade60a5e34dbce679b59e9fcb26a97778ac9dc613ea65d1aa/cmake-3.8.2-cp34-cp34m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cd/3e/f739ba8cf4b3cf0d28657c852f9d9fe68a9f441edfd5a415bb858a612d70/cmake-3.8.2-cp35-cp35m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cd/a8/e3990fe47ee9136f48a2a027235644e5450eb2d65c1ba9a87ab25cd2720f/cmake-3.8.2-cp35-cp35m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/83/d8/1996f458195559e9855e3ad16eda0ba85f436b705b25872ac7854bfe50a3/cmake-3.8.2-cp35-cp35m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9e/f8/552ab65ee01ebcf559f59f7dbdfdec06a11a0cfc513dfa048d0d2749cdff/cmake-3.8.2-cp35-cp35m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b6/37/70f600f61409e206e5a135251418bfbc71932db0a49607e5ef952c51d881/cmake-3.8.2-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/55/18/1ccc6ac52c6c3e77ea483cf7ccfd3f00fc73bd90eb24d08ee93f8ae0b65e/cmake-3.8.2-cp36-cp36m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9e/12/5f2c9e7b31b9e6ac1078db899c1a6f9296be3537962227d00e20798a9664/cmake-3.8.2-cp36-cp36m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c9/c6/5422d1b14954a931af54045ba427b0cf7bfbb0c2bb56565e91c0ec4cade9/cmake-3.8.2-cp36-cp36m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/60/2e/e47ec9bbe3e16031230f0945c81db6adf4d5d177b35a6bef3c65a984df78/cmake-3.8.2-cp36-cp36m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4f/f2/00eafeecc741f96f56cfa52417de7fefe909418987e7a909098037766198/cmake-3.8.2-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/63/69/8239377ea7136b3b50cca84ec29f151bf288b8e780d7d6643e060766d46c/cmake-3.8.2-cp37-cp37m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e0/f4/ed582ac183793a54ab6c63e116d516c2ab7592af65efd5a0f780b2e4875a/cmake-3.8.2-cp37-cp37m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/84/95/7898fea2f7d88181b2c708f22d9566a1149a1be0abb00c26a782bcaebe0e/cmake-3.8.2-cp37-cp37m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a1/22/c5ffaf2dc5d63a36fc54f13b9ce7ed7162bfd0e5b3b57eb41baf86fba929/cmake-3.8.2-cp37-cp37m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8b/ec/a7c3c1a4b6b1aa7952935259dcc558ee1799a42184952131a6b3e51e94ff/cmake-3.8.2-cp37-cp37m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/4d/ad/19916b99d0f65b090bf3cb24665209a9ddf1a698419d18b2a0e64d609378/cmake-3.8.2.tar.gz (from https://pypi.org/simple/cmake/), version: 3.8.2\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5f/9a/0178caa750d6884134082f30d620d35d729a00eb4add13b87d168a4ecb5f/cmake-3.9.6-cp27-cp27m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1a/ee/8673516ad1163116832a3e02f5a0f213d96732f391186f5a380cb9418db7/cmake-3.9.6-cp27-cp27m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2b/14/b1a92b31be3508515eecac9680acfed9b732ddb744764cfc7941dffad9d3/cmake-3.9.6-cp27-cp27m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/79/57/2f940a0fe8e399606c86e1cfe6682c3eba3333b0bc84efb57191f9e2833f/cmake-3.9.6-cp27-cp27m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ee/ac/332cae7e884e743dee8cb1695539763986b6a2eb04210b7bdd5f717edd97/cmake-3.9.6-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/34/43/5e60e88b4a6f480db8a339ca95b409d0a1e26aaccb0f06af82f200dd9d61/cmake-3.9.6-cp27-cp27mu-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/05/a9/53dc807f6b279315e0ee970669a9999009b63622943ef505168fa718e973/cmake-3.9.6-cp27-cp27mu-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/38/e4/e1d6a1836d85e3e5472fc64a3b64e2d8bd0f2753319bb1c0ac2236093853/cmake-3.9.6-cp34-cp34m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/67/c9/8bb5c82b2fd65a5d5a8f0c9ef372a8feda61b01cfc5014e67a69da61a172/cmake-3.9.6-cp34-cp34m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b2/21/de60d629717fffb28a4a20abdf2195850eab8c8b242ef79693f214a3a175/cmake-3.9.6-cp34-cp34m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f9/f1/5679c919a94e89715964812f20c335bcd28b57d10ff577a25cfd6a710b7b/cmake-3.9.6-cp34-cp34m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ee/8b/12857ef702632eab8b2b6cff94f74c52e69ab3f0c171aa704ef4a8023924/cmake-3.9.6-cp34-cp34m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b7/0e/8a25bda37e793871c05212c205f63d72f7f22fa7b07914b5fd3687c73217/cmake-3.9.6-cp35-cp35m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/06/9a/3c03596c6b059b80f2e7794a9fe2f482256354ac471ebdcb5a5470ed8a01/cmake-3.9.6-cp35-cp35m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/05/c3/b026db5292ba1b231b6b449eee078b7b1fa5525212a6614121b042fdee78/cmake-3.9.6-cp35-cp35m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c1/aa/593ccd34bf05a02d12ea8417d5d66fca371f94f31a5114d84dc3cfbdd3d1/cmake-3.9.6-cp35-cp35m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/36/3e/1c9cd7ae909b1b08477b8362b7ecd54765fd2b049447b0eaa048cb11d174/cmake-3.9.6-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3b/c8/efccdbc3094e8e55cea76244caef020a797cf7b92711ee651c3813414dad/cmake-3.9.6-cp36-cp36m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/02/5e/a9043c133626ce02205b66ae6162b63a2b632523ebbf50aa60636d24f4cd/cmake-3.9.6-cp36-cp36m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/19/e0/1032466606e47a4784ecf230918e093b386bac0ebf6fcba3031bd5338d14/cmake-3.9.6-cp36-cp36m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8a/29/ae24ccb5f1c21ad42115d94979b04b3cf7b3c362c34e8798e029a561467e/cmake-3.9.6-cp36-cp36m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/50/6e/fd19cbb5700f80d8b88b46b1c93e29aaad9fe4948769ccf1346807f5218b/cmake-3.9.6-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/23/8e/59b4e88e352e28a7703fb4d1681ba47dd2fb5eb7d51290ab1a32527f1df9/cmake-3.9.6-cp37-cp37m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b4/74/3fe3c8c2d83f287d01dd693582f53d3d3f6905a028792a0597cabfa33417/cmake-3.9.6-cp37-cp37m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a0/f3/6a5da2a37bda90882f9133167c3f323bfdde979cd853d797c181f05332a5/cmake-3.9.6-cp37-cp37m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b3/b8/e171b84877cb0f584372c6074848b91abebe4040c6a9ed00bdc9ea875bd7/cmake-3.9.6-cp37-cp37m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4e/72/653d951d40405e4be7612a2ff937f6be2fe38da70b48cd90afd2cc224b27/cmake-3.9.6-cp37-cp37m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/d8/89/79dc57c6fa77f314917d2168e96bdd61c7349a101c4720421e50576c894e/cmake-3.9.6.tar.gz (from https://pypi.org/simple/cmake/), version: 3.9.6\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b8/b9/85e51f248a0c483d22ca0e232cade832e657c0e710ad726566048c967831/cmake-3.10.3-cp27-cp27m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/21/3b/c20c383034fffc72512accdda3bfd19f38bc678c1971fba7fce391932e0c/cmake-3.10.3-cp27-cp27m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3c/9a/c9c84a7bb55973f67d8d9c09b70e89d4e818e08046037d2ae23f8e56e938/cmake-3.10.3-cp27-cp27m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/23/3b/940e5631af3c757c4b09df96b8f3f44be134549ddd46b9ca0e1950e677e4/cmake-3.10.3-cp27-cp27m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fd/48/7f0548d7f86a722c5c55dd2ac930914a96e968e2f72cf127e476536a32cb/cmake-3.10.3-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d9/a2/cc41e09d477f1699772cccc3165fff22cad0c689873b4eaa4de9050d29f5/cmake-3.10.3-cp27-cp27mu-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b5/79/b12a9d56d9089511e10b88e16deae0dbb61659f0c3a3c6efcd53e3a695e3/cmake-3.10.3-cp27-cp27mu-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8b/07/97fc581deb906ad2b4439c5462c114310fb166900a0155b29f25c46beaa9/cmake-3.10.3-cp34-cp34m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cc/26/84a519d48e07dbcfbb44d5bdd5a6744715aa2b9ea92d51088d95723bf4d6/cmake-3.10.3-cp34-cp34m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6e/5b/f5eb18042eac21745a4ef19af685c351e7a83cd8fd3b93d9472b1c0e3f28/cmake-3.10.3-cp34-cp34m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a7/61/88157178bb9d2c04b59113fe9818871c9120f49dcd6c44bfb70ad0450fd1/cmake-3.10.3-cp34-cp34m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/13/cd/c95fc50065b1927019420a2ece07f498d20f976bb2bc594885c240897c3d/cmake-3.10.3-cp34-cp34m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/09/cb/d089851d654d3885051f80008805d5cbd62454c56c8cce769bf8dba0cfdd/cmake-3.10.3-cp35-cp35m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/76/8c/6979e117fc53f88ffccb1344f6a2a077d8d058d8c8f31875ab56f4e7c0ba/cmake-3.10.3-cp35-cp35m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4a/29/a411d39abc0e1f0d474fbb80bd4a62826deaed6a23fc4a342fd435e97908/cmake-3.10.3-cp35-cp35m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2a/52/29b84ba3b4d452005a2d0f22856632dcc550d672657ec18c3a8227f67390/cmake-3.10.3-cp35-cp35m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/22/7a/9c3ef2430bbbe9e0a54eda821f8099ec8da23b5d8d4cd39721cbfeb95bc6/cmake-3.10.3-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/07/45/7aa833c1f215834ddb816fee624632f9e61e3d3cabaf85c212ed4154ef5e/cmake-3.10.3-cp36-cp36m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1e/15/657983ed75bb2130b4c025ad825b9819c22778ed0ffbe055a3ce50f20baa/cmake-3.10.3-cp36-cp36m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/90/ba/7ad51a8f457e4fc73217b31659d907272df0e1241a84655c701a9d9a0547/cmake-3.10.3-cp36-cp36m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f0/d0/81e15430383d4d4282eccb429b0a81dd88a44e7ba6f8cdc5eac70d4f5c7f/cmake-3.10.3-cp36-cp36m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8b/c9/8d903c92f150cc503f446772329e7fd0134af387c590183bbd70c90100ab/cmake-3.10.3-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/60/fa/ac87c68d90317d33ac841d8937862dbd852977175b95b220228312d74c4f/cmake-3.10.3-cp37-cp37m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/33/03/c946ca3d1052b50c42629dee7904e6d49f375bf78a529631f0d14430ca4b/cmake-3.10.3-cp37-cp37m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5c/53/949e6194ffbd6e8de5267159294830e8479d2d03a50666df03401af90a35/cmake-3.10.3-cp37-cp37m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f7/79/a9f693e866e10466f867654d05e6b58abcf94c78e6ece2def118b29c342d/cmake-3.10.3-cp37-cp37m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a1/d1/e71d1186c90148e13c898a7068a838f18f7b365b66b6dd6c2a17411144ad/cmake-3.10.3-cp37-cp37m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/24/81/0244f544e6ea27b61dcf9697ad6fbddd676be4eeeecb338952b83f37b979/cmake-3.10.3.tar.gz (from https://pypi.org/simple/cmake/), version: 3.10.3\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/34/53/cb35dc8f54dea9941f9ebf27e8ebf1fdf5aa60799d0c7a107983d77a8c4d/cmake-3.11.0-cp27-cp27m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9e/73/55e13de029125cffc042c24daeb5a3fee4828d99a25864b62ff2fab177e0/cmake-3.11.0-cp27-cp27m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d5/d0/bc47f525ee81f38e9e968e1f194a581cbd0dc4463830f0bbb3512ffbde4a/cmake-3.11.0-cp27-cp27m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7a/24/080d7eb68ba5294e65432a8e1c3119399dd737b5805a17193081ffa4523d/cmake-3.11.0-cp27-cp27m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/32/b6/31e3435d28cc54d7885ba077cdb00b3f5a2b82ba55d69e3a5b114f73729a/cmake-3.11.0-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fd/00/ca441310c6d1394909e25681c6d0297b8e01981e7a579bd2dd5c192c075c/cmake-3.11.0-cp27-cp27mu-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/40/2e/0058b78a2a1251a53325281e399f8a92ec3067f46bb3516cbe3fc89a2717/cmake-3.11.0-cp27-cp27mu-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a3/7a/34ba64d95438f50b961da42314a5347d2796a092bf09e2394dc546f02f7c/cmake-3.11.0-cp34-cp34m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f9/71/41bb5102d4fe1c8c7909881f119ef2d8974f5e8857fa5096e78f37ad05b0/cmake-3.11.0-cp34-cp34m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/94/1c/614d313e0acfd184d875985cb3194038d7d4ad76b5aceace3b19b2b90c62/cmake-3.11.0-cp34-cp34m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/da/a6/c8f0e505c6975a7c3f415094a874939a0f149bb0c892daf448bbc21b509a/cmake-3.11.0-cp34-cp34m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/25/50/0dc4ff05a7cb6cc598d7286077ffcc571ee85979405123a82ebbb8baf9f8/cmake-3.11.0-cp34-cp34m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0f/9f/d5cf43a3ce4cc82736e36c3931946d5f29fbe810c5a651d55719aed853b9/cmake-3.11.0-cp35-cp35m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a3/9a/900de3698e87fc2c32a73f1444e59c1afea2c1a383a75f2cf5f23112df64/cmake-3.11.0-cp35-cp35m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c6/0a/b8913c052d2a75832d7c7b52ded172b57160bcc9f947b034777930bada4b/cmake-3.11.0-cp35-cp35m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/98/a3/eb1430d35a1f61857ef43393d0e95eaf013f00025f32bd2a465ffb987af6/cmake-3.11.0-cp35-cp35m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/da/07/86b3528cbddbcab1ad9765cc00d48bd3004226984d859a006b0c2653ee0b/cmake-3.11.0-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/65/d6/1c3d136982084d09b5dea0f168d336cbb817ae5d39b0d499ef0aba516e18/cmake-3.11.0-cp36-cp36m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ca/c8/bf511c70022aea46bbfa529049e2dfea365a2f2e5c10817a3a920be38b3d/cmake-3.11.0-cp36-cp36m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ef/fb/16b807d7eff001b3aa6d33acd3f7cafaeb9dcbb4a815b7e65f0c3f1e31ea/cmake-3.11.0-cp36-cp36m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/29/f5/764311aa296691638c5c91329a05613fe1909e9a7a712acb9167963998e7/cmake-3.11.0-cp36-cp36m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/85/f5/e9b474999b160c6d2ec2ce5d858d01e5501272865ca44c0bccb4961e17aa/cmake-3.11.0-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/46/ae/51c30e300f82ada43eaba14cb0157acb03c7c6894efd5129e52338cb41aa/cmake-3.11.0.tar.gz (from https://pypi.org/simple/cmake/), version: 3.11.0\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e5/dc/80283bb5d7b27893f21dffc5e0bbc3156720558925db7206a9fcaeda048b/cmake-3.11.4-cp27-cp27m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3c/05/3ff596c7f96c2ff95bcb5e7e23576fc86401b2d58aa49ea37511045f844e/cmake-3.11.4-cp27-cp27m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/dd/78/3eab0fc77c339a2380eda97e28a6c1c1389c2076089475737d113556d5d1/cmake-3.11.4-cp27-cp27m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/20/c2/5be567e3dd778444f21d8c479c4df5a9f42b2c32333a9d09b5636f7242c0/cmake-3.11.4-cp27-cp27m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/00/8e/5332897c373346925cbb4992b4571d75b09b8d6debc3c30c4854872dff80/cmake-3.11.4-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8e/08/58f98f31733794e87b057eb7852d41daf7fe5f7a561c592d616971b8490c/cmake-3.11.4-cp27-cp27mu-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fc/80/d3d04b466271cda1702513a0bdedd34452db8f9878ef3a937f210d1d2bcf/cmake-3.11.4-cp27-cp27mu-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3e/3e/75a8305485bcdf7fb79a2d8c6ec15ea72c6995e8875c3e478a2ae36af1c1/cmake-3.11.4-cp34-cp34m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a7/01/1a55e3fab3b63ccd0662db111d8b4dbf1969909256289b22c9d1bb7b0378/cmake-3.11.4-cp34-cp34m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b2/30/d2664c519179f448e46e7283a00de1af674d9f4e652ef31c3e4782e057cf/cmake-3.11.4-cp34-cp34m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/91/f3/4a43c4e12ffbf26c40e1a177ab169f3d03928bfe0596993c798d78011be3/cmake-3.11.4-cp34-cp34m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b6/74/53faa509aff62a724dc928d2df6ba3d9817ca1d43cf9549690b12de9a5a3/cmake-3.11.4-cp34-cp34m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/60/be/e33f8412f5c09449c0b6ac5c2949f6b72b568544c28b2c246c365d660d05/cmake-3.11.4-cp35-cp35m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/81/55/6c6a470bdf2fffb264f5f6b5a0400bc0919708ed5a0a0c9727c4944624e8/cmake-3.11.4-cp35-cp35m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c3/07/74845e19d6a1e95d98e9b3529d723cda33491d77405395825d8f55cb639d/cmake-3.11.4-cp35-cp35m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/29/d6/dd4aaade7ae1b15f744215dfa3a5f6af5fb1e8096f904e6c94e442b93e65/cmake-3.11.4-cp35-cp35m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5b/3f/6a4f4b1d5e62163985e6d2cd3652fa2ed7b600f230ccad2e7199943925db/cmake-3.11.4-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/df/32/0e50ed906f8aa61d425fa8f599ede14e1d404de2bb2b45a3f142de4d90e5/cmake-3.11.4-cp36-cp36m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8a/ab/a133e87a2de52ec1ab6d93bcc877c77725da363d8498f84bf3ff36907aa2/cmake-3.11.4-cp36-cp36m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/25/73/f670ae09d121f7a7c9525b244ba0a8deed48b3e0da3985b7036010c31186/cmake-3.11.4-cp36-cp36m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4c/61/3650842caacd691c9fd63966040d03952f5948df7c16252dfd29756bbe49/cmake-3.11.4-cp36-cp36m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/74/f7/26032e6b7bdae99325231629e4c85c12c5a287c97fa566b86c69c05efbe7/cmake-3.11.4-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/44/cb/f9fb9bb7b90b046393268e3e50fcc584f89897b94cc65024bed87d956b1b/cmake-3.11.4-cp37-cp37m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c2/e7/024a411330f357a52163df2cf37da1e09d345b0306ceffdb97cf563e6c74/cmake-3.11.4-cp37-cp37m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7d/a1/1a9ee5174bde1e771a57df0ac2d0467972f865eccf3dead5dbaf874cece9/cmake-3.11.4-cp37-cp37m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/98/f8/0dbd9bcb21e8511fef8eb7fead0d60852441bd8d903f5d4f0c11cee70ba0/cmake-3.11.4-cp37-cp37m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7f/55/0978bacd2cee4ab634e430e4cce53547e175153ac47d1b302e971f583ad7/cmake-3.11.4-cp37-cp37m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/79/06/e89052a7e65ab765bc5e279542853d043ec857e61f253973c05a80f2490f/cmake-3.11.4.tar.gz (from https://pypi.org/simple/cmake/), version: 3.11.4\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/af/95/58f6bae0f418dd853adeb8fa0957a0ccea066fe7851261dc7ae6f8031979/cmake-3.11.4.post1-cp27-cp27m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/dd/1e/6668979d212c54b8e6dd633fcb27bc2f2aeaf27e44308ecdce6d6e4d0047/cmake-3.11.4.post1-cp27-cp27m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/80/21/3198bd1097699df5bcc167a280080a5ca2c26d135195273bcffec549a5f9/cmake-3.11.4.post1-cp27-cp27m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3b/f8/449e25b96461e7318b09279f7edc0b138a0d2da694d51899bb9580c7c1d4/cmake-3.11.4.post1-cp27-cp27m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ac/74/1ebec8f69296da3fc3011528b05b041230728ff6c37ab979e7340836082f/cmake-3.11.4.post1-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/52/c8/81bb71becd5726b2f694a7084af2120609620ac4fb2076c7a7b884a9a572/cmake-3.11.4.post1-cp27-cp27mu-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7a/3f/f34696219cfdbd220585d9928106b511f65ce50747e7787e757fa2a6149a/cmake-3.11.4.post1-cp27-cp27mu-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d8/c8/9e4be2315994a1876e1307cac0d6db557aed96ebcc43808fa9f782c58d2b/cmake-3.11.4.post1-cp34-cp34m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3b/69/fecfd28c60c71861cc349c2347d59dc9e094ba4f840efb2d94572861870e/cmake-3.11.4.post1-cp34-cp34m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e5/57/8e17334df15de18e05a667e81439e3c0ca71d95627de99962ac11abe00e4/cmake-3.11.4.post1-cp34-cp34m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cd/d1/f1fe59f5195a2641bbf1bcc879368a4e042e3a31a34a0d4586f78c75dda5/cmake-3.11.4.post1-cp34-cp34m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e9/92/f10366999e7fa60a6989b58574bb129d8667aa551d9699e3a8f1b4ada16a/cmake-3.11.4.post1-cp34-cp34m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/47/ee/95dc6cd7b2a293448efa47c923d0c7ffc88d3f0e9ae256a9101813dd5436/cmake-3.11.4.post1-cp35-cp35m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8b/62/4bc2fc908755e95b94884ba32512a5fdc4e2341559ba2b59fdf010c2150d/cmake-3.11.4.post1-cp35-cp35m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e0/60/339bd958965c658db870e03eb243d70606fb61be9e28d13f688ed47bc1a0/cmake-3.11.4.post1-cp35-cp35m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1c/a3/da578077759a6e74d1b29c6fd011f0715c48cfbbbd5dcc646f0f20fdfa24/cmake-3.11.4.post1-cp35-cp35m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/78/b0/b78296e0aec1d1264dd96ecc2b3ce8c0a596bc655f5bb0b1f55cd4adcc7a/cmake-3.11.4.post1-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/46/b2/0185db092e1cc3419dfe529bad9c8b0558f4fe9353d8e7031d22c0c55ff4/cmake-3.11.4.post1-cp36-cp36m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bc/9e/c434c1bbb39b819cf604fec83c6e71bba1095009aadce22cd4be9a9ebae6/cmake-3.11.4.post1-cp36-cp36m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/55/0a/14be60c8071221d164524909bd2f3379ac3b180a87b95fa12df2e72460ec/cmake-3.11.4.post1-cp36-cp36m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c6/34/9a1cc516a231a1af8daf4bf884b021a520fb4771203ae8ee0ab8584218d1/cmake-3.11.4.post1-cp36-cp36m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0b/2d/e9d44d9053a83db8df6f98a57da0ccbf0f19183c2b761ba4593e805b1734/cmake-3.11.4.post1-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b1/26/83d53e4ee210f984863a7336ba91b8101335b986cc7ea9ed70a122b49767/cmake-3.11.4.post1-cp37-cp37m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2e/61/738402fc9253b8dc1b9969c1918b7746eb9fa535a7d4796ee5c9c44aa1ef/cmake-3.11.4.post1-cp37-cp37m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/61/00/e45a96857ce5dbc3da4be529f20ea1b26a8fb4f7f7a687d3ad33d9fac4f6/cmake-3.11.4.post1-cp37-cp37m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2e/65/42026ec69330256aa6afd0be02904af94f91486cfffc742850501ffc3cec/cmake-3.11.4.post1-cp37-cp37m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1b/8c/587a503c584c2175741b2e414fb1e5b4cfcdfe1616c65e8efc83a0d6c70b/cmake-3.11.4.post1-cp37-cp37m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/3a/68/07de71b405005f749e2f83b3f32149bf02c11ad04f0fb288dd683d521500/cmake-3.11.4.post1.tar.gz (from https://pypi.org/simple/cmake/), version: 3.11.4.post1\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4c/f0/b325484c2fdc623fd0bab1cdeceace0ba92053a1e12ecae3375a4b121803/cmake-3.12.0-cp27-cp27m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a7/57/cfd58926b21004e52ecf672965b4d3b6a77ab3299da55e1919f4346c50f3/cmake-3.12.0-cp27-cp27m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3f/a6/5c6041d41928669d56342e3d9f512a34ac1a51af3d0e0995465d83fd9ffb/cmake-3.12.0-cp27-cp27m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/40/fc/04d3ea296bd0ed4f51af4436ea3efb059d69c4434328129af19d289da4d6/cmake-3.12.0-cp27-cp27m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/90/75/02a79dc0f3373d57a453754a88a06f8c84d71f724410c45129efe49c8611/cmake-3.12.0-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/57/fe/26e42150e717791b638484ac0bb02572762d17a742ffa4ecdbd0acf72ea9/cmake-3.12.0-cp27-cp27mu-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a2/b2/a25e3bac772625375f8d4e51ae696b1b7ce0c39e5e30d201b18f6ce31f46/cmake-3.12.0-cp27-cp27mu-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d5/25/7a5ec6ab343207e0d5fa90fc22e126d64f8afc53e67d59fd14a44f79910e/cmake-3.12.0-cp34-cp34m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c0/10/de008b487a6cfb095374b0d811a8c2e7239e9b8a1f5c4a47631675283365/cmake-3.12.0-cp34-cp34m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/73/cf/45df47d49dc968c42b62e88c09ebb443b8d9d5c40ac4178e23d28325e093/cmake-3.12.0-cp34-cp34m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5d/90/50a8bfdf096bfd9a518c002b4deaf6c8adb2ae84591087b9734c5248bc0c/cmake-3.12.0-cp34-cp34m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7d/99/296824427bce4cd5549ad187e011ef9342eabefd8e5848146d604b3d8566/cmake-3.12.0-cp34-cp34m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/73/f9/766f5922fe37b661c6f09f98fef9556bfee71ed086d4865804d823ce2877/cmake-3.12.0-cp35-cp35m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/46/d0/29193ee3023da05e8661c77d87ce12327d1aaab5043bd5f8c625aae33437/cmake-3.12.0-cp35-cp35m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e8/36/239c45e6c5c4932baaba5349cde15bc9d1abcfe03af14d76c2c3be2b3a61/cmake-3.12.0-cp35-cp35m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f1/0e/9951d5a6fc7dbdf10d1572af91563077d1b2c72624fec59821041490f296/cmake-3.12.0-cp35-cp35m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7c/af/e5e9d5ac5bc7360d7b919be0de1711c4212c7d08ff0569e2eca5468c0c68/cmake-3.12.0-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/25/68/39635f42e01651baf9bebf5286c936f65bc0245b911dc84f1b27c5b950da/cmake-3.12.0-cp36-cp36m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/53/09/a7c4b52fd389db35f1a04318639e160982f1963128a0ba9a2bfb50f5db22/cmake-3.12.0-cp36-cp36m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/af/ee/36a244e43fc9ea64a2aab9ec854616a1771c11e91ae97d7b34246f922668/cmake-3.12.0-cp36-cp36m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f3/26/e1f54d2ac06a5db1aed0b860811eaaf248d71aed255ef9941f8f5da5b411/cmake-3.12.0-cp36-cp36m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/42/46/486a0e7e6a67ed22f5d84436c491200b4c933bb9d4f3fa5a8f20319b2e83/cmake-3.12.0-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/05/0f/8f4449bda1791b73846ea8d455b396b6dccacb3e504c0e440dea0719349f/cmake-3.12.0-cp37-cp37m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d0/fb/1bd896daff5cc05e120b4090a0ea8e799543d52edf44df6562d58bc4bb1c/cmake-3.12.0-cp37-cp37m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/df/d1/5d7300d7ceb284a5ffdcd016bdba1ef8021aea7ebc22fe4e869a4da95d8b/cmake-3.12.0-cp37-cp37m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/af/90/4938cf7bf07cda351ed9e246e74759e0c1c1e4a345818213ce4a6a196f0e/cmake-3.12.0-cp37-cp37m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/28/29/4c172940f6a858ab2c7ae0494886395dd40b96c9d251161a8a78d41ce931/cmake-3.12.0-cp37-cp37m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/5b/ff/ed1b77f415f3b9a0a2332ca528adb04b407a84e93e85ab8400c3fd24426c/cmake-3.12.0.tar.gz (from https://pypi.org/simple/cmake/), version: 3.12.0\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c6/c0/800069afa2e832a86fbb071dc78d9969c6b2891aa631cdf87b811377a7aa/cmake-3.13.0-cp27-cp27m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1a/e8/31cbf5c8dff8b8e3efece4677ad7c7e471b0d4ac4238d7726d863ea6de2e/cmake-3.13.0-cp27-cp27m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2e/34/70163b6eece769ad67ffc66bc48f84535544d74604802ed0c29023ed44f5/cmake-3.13.0-cp27-cp27m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/aa/4a/38bbab3b98f9899b08e767c39d2c9f0e5497d786d82944efd05ca5e9998c/cmake-3.13.0-cp27-cp27m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9c/61/825cfce6fa498250d511bcb35e7937436d1a433e6377f87730fe7107ee27/cmake-3.13.0-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/dd/71/8d1a9ae46538e550fdd241cbb7c37cc2bdab706e29a9e249ee747c73065d/cmake-3.13.0-cp27-cp27mu-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/97/41/1a49d9bb713b57e6f7aa954d031ba97211bfd903000643403802d64a47f0/cmake-3.13.0-cp27-cp27mu-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5f/d4/552450c4838bf830190b0c2d40cb98af5a354b0c0832e522c7f517f50313/cmake-3.13.0-cp34-cp34m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/10/bb/e71dba266dac39428044f32228de1804c0c2f996ab8fd97846d7db79cd8d/cmake-3.13.0-cp34-cp34m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9e/95/aeb149538d824e6c1c68b054febacfeff82efc999edabf4837da167112df/cmake-3.13.0-cp34-cp34m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c6/13/d1f64765e51ec5577793719081b8e81c11fd2585e54a86646d5f96ccf226/cmake-3.13.0-cp34-cp34m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fa/70/de1bc541302c661fc10b5a3fb7a4b3c1b5b4ad4b13c2e68925dba9b0d142/cmake-3.13.0-cp34-cp34m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1b/68/aed14f658c9443b68a8f3d023f426d982b0e1af0aa87be00c43ee43bd0ba/cmake-3.13.0-cp35-cp35m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/84/19/e90c41fac3426fb59dc715619b47fb915bf2a1144df49cdbd93e2e49eb33/cmake-3.13.0-cp35-cp35m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e5/38/fae89685c74f574569bf5ccf676b8a45e9b401ac8e1ffd310f76cc493bfc/cmake-3.13.0-cp35-cp35m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6a/32/cd1bee4f4b10c706e0ba0fdcb34a4cad8f93a2e711b79426401ef750f949/cmake-3.13.0-cp35-cp35m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/97/0a/cc3e454256086a2feb49c1f486d1cc4466fbc5ce74091237266e55287535/cmake-3.13.0-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/25/fe/6d69866ed0320cace187b593e5909cdbb11521e07139c42d8c0592e72fa7/cmake-3.13.0-cp36-cp36m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/87/32/fadd55871a0bbc30e20729e430bd6d39eed803c337cfffec6a122952e57a/cmake-3.13.0-cp36-cp36m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d0/07/1e130f6acd7e346a1a0aedd6297d8ecd48a67bbc63a2dcd28ae7a59b4f3a/cmake-3.13.0-cp36-cp36m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/35/bd/aef9094bd3742be79893f29a4e186efa6650dbebfa9a659df4510fb61787/cmake-3.13.0-cp36-cp36m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2b/d9/1a08ebb027ad4cc5ed499b5dfe785941c8777f7bbfdfdaa0d3285204f149/cmake-3.13.0-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6b/c6/eac721bc13347d16786eefc4f15028d4ba9ee6c1c64e6091f109cab00064/cmake-3.13.0-cp37-cp37m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8e/d1/892f597426e29ff26b230ea24756270b375fa2576d63d2cae2ad1c0806e2/cmake-3.13.0-cp37-cp37m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d1/a9/7121e61ed6455dc8aba065dcbe61d61d1dc7c785f5624a274cbef8dbf370/cmake-3.13.0-cp37-cp37m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/60/30/9abe1251200f2de160a912b0deb21b91df82624a3d1912ff653ac768d9ed/cmake-3.13.0-cp37-cp37m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/19/10/e1f2dd4e99288f1849b3d703efb44b7f7643728d6092a71b7ddd32691efa/cmake-3.13.0-cp37-cp37m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/cc/f4/c72cdc2278448a15433e80a646e435e38a616b31b0762820dcc612b1820d/cmake-3.13.0.tar.gz (from https://pypi.org/simple/cmake/), version: 3.13.0\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/82/0b/ca80cc3c16dc64a2bb59d17bcd8cba7df8098807583b661f200e7656d9f3/cmake-3.13.1-cp27-cp27m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/77/cc/72a520b828d645f9e308f62ce8d5c66bb8c0f9c68b610e26eec7aa838a68/cmake-3.13.1-cp27-cp27m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/37/8a/99a78199282924f29f922feb53cd488038fc4dbeb837c0ba480682c1ccc7/cmake-3.13.1-cp27-cp27m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/78/5a/418f85afd8831beff474a4ee9f694a3b2476d3a9e919d190642da19bd8af/cmake-3.13.1-cp27-cp27m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/92/2c/d51c0ccd0bddf1788d0f9a445c6a2d893a3a84cec990aebd998a9ed663d2/cmake-3.13.1-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/76/47/45bcbfaeb9ea6defac25ae24d2375feb73ac128f6640af711d5259011fdb/cmake-3.13.1-cp27-cp27mu-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/58/b2/d667ffb4bd96017b9d6350224b0dc8fc814a0c52761379425c371c9e673a/cmake-3.13.1-cp27-cp27mu-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b5/29/a707d0274be1ce78088beeefce59dae3e26f08eb9544140e2369493a71ca/cmake-3.13.1-cp34-cp34m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b2/be/6ecc0a183c6b731fafb29f23d8fee65088101e469b3e4aa565d513e55c82/cmake-3.13.1-cp34-cp34m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b8/a3/98feec2d3b4fff4c48e2145866f341bd53ba3bc0a4e458027eaaf9d3297e/cmake-3.13.1-cp34-cp34m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9c/29/fa461896d82f29d087b75f9c7dc4820dda9d5ac397920ad0f90fa425ebba/cmake-3.13.1-cp34-cp34m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3d/2e/9ef19a6455b47b31d5c6a252d31122ef14ca73c7cf3c46268dbe4b7643a9/cmake-3.13.1-cp34-cp34m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/61/8f/c2ccbddda4f83811927fba547e35ad37c5731b3ed3ae6558e2361bb52519/cmake-3.13.1-cp35-cp35m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/53/2e/8b0957ad61aa9844e2eb57e54db569ca6ec04167e9f77c97b52b97c16cf7/cmake-3.13.1-cp35-cp35m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6d/74/c76d39f15ecd01cd86322df291a81bbbcf62b1e28e165325816151e9c46a/cmake-3.13.1-cp35-cp35m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d2/89/c0b0602984e29497bd7e7e95373902329c74e3a282fce1ef1e90f667b526/cmake-3.13.1-cp35-cp35m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/57/cc/67641755393c55cbd76d19f3d67226c18e8f626f40a8268ff6936b2e98b2/cmake-3.13.1-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9f/81/7890cc769262c6fd504213f5c6dd16051a1963d2064271e57e346ddc7256/cmake-3.13.1-cp36-cp36m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3c/d9/14e329bfb379905facb94f7ddae8248602350358b1ac84ed4a2ba72d42b5/cmake-3.13.1-cp36-cp36m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6a/46/f03c3c42bc0e162027f50a3e218b2707a988a63d8d45d96a714064ffa511/cmake-3.13.1-cp36-cp36m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e3/f5/a871e40cfaba6cf9876377a42403791af833cc57907d3562c99f9f508572/cmake-3.13.1-cp36-cp36m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8d/3e/bc8978469cf5875567555d8955e1edd77aa40ddf7f68134d82f9bba605fd/cmake-3.13.1-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/75/39/7c89068435eb7979403383996c50959db7510cbad9b8cf757c2038e8e36f/cmake-3.13.1-cp37-cp37m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b9/00/79391a75aafa7bc0d3988f7c945e11d2fa955fcaa8b8e28ac1c81409ca9b/cmake-3.13.1-cp37-cp37m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f1/45/4ae2776c859ecabb3d14345de56781781b82495a987227c3a1ceaba4dbd0/cmake-3.13.1-cp37-cp37m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ad/21/d2223241f3fd59e5055a8a0c378aff6b51edf51448365c52467f3ab291a0/cmake-3.13.1-cp37-cp37m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f7/fd/40da1cc0b69c3083e51113c1220b7f67f5c04f39b414f04cff674e6d21a8/cmake-3.13.1-cp37-cp37m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/ca/dd/b1df8148e52f94404979d879bf6fb763dc85a1c421729909b0089d22331f/cmake-3.13.1.tar.gz (from https://pypi.org/simple/cmake/), version: 3.13.1\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/85/77/b907e7f11ae648d030932664b36a936c87837250613df9ef7acc427f6184/cmake-3.13.2-cp27-cp27m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b8/5b/893e07b6c667a67a22af676ca2b543c94a82b620e4fa26ef6599c8d404ec/cmake-3.13.2-cp27-cp27m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e5/95/d98dfae3e59a5d78ea895049465edc209938d05b64e9402c5155eb354190/cmake-3.13.2-cp27-cp27m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f8/c8/01271c677164fac2f55cb5f55e5edbc11105a198aa04ffcab2fc3e10fbc4/cmake-3.13.2-cp27-cp27m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/73/06/a5f0657bd52d81b2f20e579458f051f31e9c31687394d38fd6f32b1deb6e/cmake-3.13.2-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/98/8b/d511206c5345f1d644314e4164284ccb481bd0aad9d776c331bd168b3f86/cmake-3.13.2-cp27-cp27mu-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f0/bc/36225065146b01e3fc75b0e6dcbd758328ce891478c15ff9a294a1fcb0c7/cmake-3.13.2-cp27-cp27mu-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8d/93/715e37b53d92fdc0b0b3b3f22c41f1e1abf4050201260b9d7bf2a75c44e3/cmake-3.13.2-cp34-cp34m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1b/85/737f25fdcc091792c754aa246bba0e76db1dea277193cea6830a1fa664ce/cmake-3.13.2-cp34-cp34m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/83/9b/0de09d9fe5fbbab6a83498b49a2d4e885da65bbfd856808a0d14f909ca40/cmake-3.13.2-cp34-cp34m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/de/c8/4503831add066ff7008d995e80a50eb266497a85dd50b8cfb86874a55cbb/cmake-3.13.2-cp34-cp34m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/21/99/3cb84a9de992f693ab091dede0972a4c4872b14159be2e77d5f80c66356b/cmake-3.13.2-cp34-cp34m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/90/49/dda72fd183331aad3ee3999096ff8a48ce4f7a86389c7316427a62a63392/cmake-3.13.2-cp35-cp35m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/44/f3/9b5c88b2f719ea2527a2e8af54caa3dc007095b8c442ba3f2f8f831ea045/cmake-3.13.2-cp35-cp35m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/20/25/2166dc5c7feb42a1fd77ceefa4aabc104f4881775232c8492e3bed772311/cmake-3.13.2-cp35-cp35m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2d/a8/bdb491663b48ed9c1f5d4b02bdd15ba4a001c930bde62db6b7d1abe59df9/cmake-3.13.2-cp35-cp35m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5c/4d/afe9f0fbd0866c648375e996684c5f14116efa58fd06d59117a52cc695ba/cmake-3.13.2-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/af/b1/ebf42151820318799e3fcbf47a4b939aa37381ea124ec6f070fccea6aad1/cmake-3.13.2-cp36-cp36m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6c/2d/509c943f3d901eb08a3c818b6f889eb8cde53d503a73812d68eb51f13f71/cmake-3.13.2-cp36-cp36m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/42/dd/eb43b093644265196f64eb5a9753a86265ae5396428ba8f08ed587fcf14e/cmake-3.13.2-cp36-cp36m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ab/ee/539fedcc1e8639a13a48b2f580a2736faa73b5210fcd82e002fc9760d3a5/cmake-3.13.2-cp36-cp36m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f7/c4/54d07649a0fdef779a6faa75a21200f7dc6728fc51f4bbded34989ef2a83/cmake-3.13.2-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/61/72/d1e65c75b2abf9514feceb76001f271fb3e21c02c64efde16befb9419a73/cmake-3.13.2-cp37-cp37m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f0/a5/37a579cd57dd3a1a9b66ab4e2a97d538f3791dd27df26952a8997dd47b31/cmake-3.13.2-cp37-cp37m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/40/29/4800780fa7b18a74de86370020e7f41b8240bfb34889be30d30f761fd2be/cmake-3.13.2-cp37-cp37m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b0/b2/7400b848c5f38ce392b77ad9d2d7f59370bf613bbaf439875d3fe0ac7d23/cmake-3.13.2-cp37-cp37m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/90/b2/7c8a5624fd6aa08c32837ef66805cbc9fd8020c17062bc922e46ed03beae/cmake-3.13.2-cp37-cp37m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/e4/cb/249a1dfbda5ef366500c94452cb46ab177701baeebb666c6528bbc8d1880/cmake-3.13.2.tar.gz (from https://pypi.org/simple/cmake/), version: 3.13.2\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f8/ed/128ce75288791ace087d8509f0bb99e311f45760cf3f07fc296d6fffa93c/cmake-3.13.2.post1-cp27-cp27m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d2/a1/e3fd67286b18439a483e979ab34d8a602b06d73ee47d86968f1f488249bb/cmake-3.13.2.post1-cp27-cp27m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c8/0b/d5a902b5b7bb458f3021c412f26ef977246c016795be4428608951664c74/cmake-3.13.2.post1-cp27-cp27m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bb/e8/8e457ce66c9aa19b43c43d4d507e26f064da7babe1840459e8b7edd7508a/cmake-3.13.2.post1-cp27-cp27m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/69/17/301c655c739642fbb1e81aca29432066da21e2068db538171e4bf6e1cfd1/cmake-3.13.2.post1-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f6/85/618fb8757731822066c07653e40d9586f70a7a48a5bae14c20a40e3b19a1/cmake-3.13.2.post1-cp27-cp27mu-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d2/58/dfb0a2010a538dbf9add2456b04579f1b0f91e309687f761891d5007de81/cmake-3.13.2.post1-cp27-cp27mu-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6d/1b/53404a0148e7e03bc94a08bb12118d21a2f0435ab3427676b6165fedb081/cmake-3.13.2.post1-cp34-cp34m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6f/81/6ed91fe7606ad333adb53d08d1caf14c3c89fbba306a0c9df4d814110b2e/cmake-3.13.2.post1-cp34-cp34m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/27/04/41883b9fa43d3c1e6d7fcac786781d22b4de0382e824a6d421f2ed2545f8/cmake-3.13.2.post1-cp34-cp34m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fd/05/8a726c026c3cb578185bb388e9257c8fd662b1c68bbe83573c53d6684cce/cmake-3.13.2.post1-cp34-cp34m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/04/99/f2d13ddea19b34dd21699355bde3def1851227476aefae3b93b99715f461/cmake-3.13.2.post1-cp34-cp34m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/75/5a/7f53fe3a847116ae31cf3815bebeafb4828d25d3732cd536e7f16aa0e4ec/cmake-3.13.2.post1-cp35-cp35m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7b/fb/45c4f11b5f69272d44ab1e89e52f4d2f0549b38bb6d9056ad9dbb4db82ad/cmake-3.13.2.post1-cp35-cp35m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d6/d9/6483f2a0bcf2162bd5a91a463b7e298bb82e7483b51145832ce7667e6718/cmake-3.13.2.post1-cp35-cp35m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d8/99/becd627340ae4327015fbe52fb4ea6e7f8bdd496e384767b9e911f24c50d/cmake-3.13.2.post1-cp35-cp35m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8d/5d/77c9afd681a309743b4debcc59273dca771d5e5bd6da85fc4231d2d629ef/cmake-3.13.2.post1-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/27/ad/adde620bd3770723e0bde7b6bccee431d7f1c90178dff3bff21eec6026f9/cmake-3.13.2.post1-cp36-cp36m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/74/0e/4de8649f0eb04258ee82d4a8f7e2aa95a920a3f3aac59779f765309c4ca5/cmake-3.13.2.post1-cp36-cp36m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e6/dc/3747156bb7feedf70bea50070af0ec2cc929d04cb68b01fd312caa4d4536/cmake-3.13.2.post1-cp36-cp36m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/99/81/82bc14903f27086213d2199d792390d5ee18f22c4d4540518916707d6849/cmake-3.13.2.post1-cp36-cp36m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4c/90/35ee74117440b2a3d91390e17b4ddfa0b53b6047cd020abe65172948cf5c/cmake-3.13.2.post1-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/43/52/f6b584d0507b750bd3b76a235e0adc1b772c3d462367cf5e33582c7d547c/cmake-3.13.2.post1-cp37-cp37m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/10/2b/33eef8ad05b60fe169f307e0deca0d0484453c4c629167c49103bae72398/cmake-3.13.2.post1-cp37-cp37m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2a/f6/db08989f089bf1fd65989bcba4716d6fe09a1b59e73229c7bae5da055e45/cmake-3.13.2.post1-cp37-cp37m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/64/27/93075f5efed0f92cffde4cec28fb0550e0bbc2aa5760ac982ee088e6826a/cmake-3.13.2.post1-cp37-cp37m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/12/ce/5505550706ae37c1661df4581a55ec758735376f36021b2b271c94f68707/cmake-3.13.2.post1-cp37-cp37m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp38-cp38-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9e/1d/1bed82c896d7bc0cfde828ecb0fdd82711fdbdcfbadaffef34b78e2fdf58/cmake-3.13.2.post1-cp38-cp38-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/0a/f5/3212616a15b4112d7ad075a407f007eac2cac59292a9d973f2ee7e3c4068/cmake-3.13.2.post1.tar.gz (from https://pypi.org/simple/cmake/), version: 3.13.2.post1\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/30/b2/e4df43854c033628f3aa9eeb797b2f49bb22c47e8d7f5637a222dab147a9/cmake-3.13.3-cp27-cp27m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/16/a3/6e2eb69f50cbc1a34704858621d0d8ed892f39a4cca83db48eb2a9c1834d/cmake-3.13.3-cp27-cp27m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/03/d8/e6a1787cc9e8759a1143633e04dfbb84445259da682b104bd1f42789630a/cmake-3.13.3-cp27-cp27m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/37/3e/743cb2ed6c2641db96c5f86bafbb45715d32812fa1b3567bf75a9ba92122/cmake-3.13.3-cp27-cp27m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1a/bf/1889095d2f0ddf6987e40c5ed061ccd69591214a6a9c8f6535b96fa1d31c/cmake-3.13.3-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/81/21/315f64c6ce368d55288d800bab4b9054045a76e9cd06f36f55ab6116714a/cmake-3.13.3-cp27-cp27mu-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ae/60/a63217f214caaa0e699b5e8e68b3e9b531870bd1f4e85660dff49a7e397c/cmake-3.13.3-cp27-cp27mu-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d6/50/84bba0e0531cbb22cb7082c9852898849e6d550847c04e1900769807d94f/cmake-3.13.3-cp34-cp34m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/51/7a/85164423e69dc84282a13e660fc0cb409f6fd62f235eac0376bced49805f/cmake-3.13.3-cp34-cp34m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bb/26/23d58fb06dee84b780342e00999bc1f79bcccc2d8b71e801c9e83a6bbb72/cmake-3.13.3-cp34-cp34m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bd/0a/a591b8d0e0e87df006e4072a8dfe99a4e494adb23f780e93e96a0b54f21d/cmake-3.13.3-cp34-cp34m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/15/06/abeca6f8314bc7fca73d5fb7e6f5c4b317e40abf9671b882a413eb65e886/cmake-3.13.3-cp34-cp34m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f6/01/f333dd17058e254eb4e1c1ba882319b8fdd23d0f953c909e1703bf37f7d9/cmake-3.13.3-cp35-cp35m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a2/c3/55d0f6031c0dc014ee7b646cdba548f1b8e3db234c0af82b8bb0e1178fb2/cmake-3.13.3-cp35-cp35m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/68/6f/ad8c22a17304b2d7cdaa21cd5fb359b1e53e9f42edd0b7b0a3c1a2e22f4b/cmake-3.13.3-cp35-cp35m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0c/bf/6e1e3c0fcd3bc78be95b82e4e25ede2f5c65b3ce52f5f41a07cd1e8dcad6/cmake-3.13.3-cp35-cp35m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4a/8f/b8869a4ba13690d30916d3191ce9f34c4a208334c4141798be47c6c1f7f5/cmake-3.13.3-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2e/3e/71fa121bcadac60cfb2cdca90fa21aba2e834897571f87d7e5ceb1bf669a/cmake-3.13.3-cp36-cp36m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c1/e9/da88bf18137e4fc734b41a9c51cdca6588edba7f51a50f3bbf16796d15c1/cmake-3.13.3-cp36-cp36m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/45/c4/e69313ade2a3e992e7178744b0e56bdd8f23e79e15066a68cf490504beed/cmake-3.13.3-cp36-cp36m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9f/5c/6e9f16c8d1f0fcdc51bede5ea3e979ea32843819a8ba9e9a324e13243238/cmake-3.13.3-cp36-cp36m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/af/07/fd33446a4b8ca51f81d805f6a57f9594e24c1b530823a4c7436e4f468219/cmake-3.13.3-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b4/43/e13c9637e5fe4ae8298c40c1fa3b621b3dca75a576bc80c26c7dc3aa86d3/cmake-3.13.3-cp37-cp37m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/98/85/1fe63f5977d6cfbd132967e261a586d1d5cbbc4bc58093ec2322ec06eca8/cmake-3.13.3-cp37-cp37m-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3e/3a/6d2c6bc7fb8eaf79bdc9d6d8647f54f83d22bf973552d5af5f2c86e89e8a/cmake-3.13.3-cp37-cp37m-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c0/65/b698d1eef2d71709cc3aa10f72c058aefab5990da22adf8edc282d77393d/cmake-3.13.3-cp37-cp37m-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/17/a7/6026f6bca7cef489617e4f8bdfdade2534ae27bfa514d3731dce29496969/cmake-3.13.3-cp37-cp37m-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/02/06/bfbc045cd58221b571630e30436317fb80fca009e127191337516ff5fc51/cmake-3.14.3-py2-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2010_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/22/fe/367826a9053b1424ce8ca383a4d35a6e348675110cc40cf06d8e0be9eb04/cmake-3.14.3-py2-none-manylinux2010_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/af/a3/2924c3844db9d7fbe529588a4b1f3e0859f1542440aae39e92f858647a09/cmake-3.14.3-py2-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/02/8d/4ac18e7dfb86cae2ea09ef21b7bedc4378a23ee11f6b687fa2370446e9b5/cmake-3.14.3-py2-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/10/36/6c271cca3c18dadf7628b5acecb74065273aa501813eec77f533a3958e93/cmake-3.14.3-py3-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/db/53/e4948f2b1e5487cdcdc116909f6b2747249c0d24c813071e191baedab386/cmake-3.14.3-py3-none-manylinux2010_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.14.3\n", + " Skipping link: none of the wheel's tags (py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5a/f1/7e948073536b82668b52d5c30b45690632b3ec158c9e4f94a85ec971183e/cmake-3.14.3-py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/10/7c/6733253bff2c469fa2160f58d61600e02751f3f5b2bb5e4e350e25c8f296/cmake-3.14.3-py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4c/d2/36f4feed9b6c9e9501d3eba9c194c8f44583056b1d904cbd023268bda227/cmake-3.14.3.post1-py2-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ce/49/e81c2ffd0c90af4e20c462d6d88272e912206c6f5f25b848be6591466643/cmake-3.14.3.post1-py2-none-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1d/5f/2fd9e3eda05fc6156ad76ab962f1b1eb8345539a8b109e3b27df9c8cc3e3/cmake-3.14.3.post1-py2-none-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ea/72/8a8db527bb3e74a4c421d4e44dd4cef2024b570a43e3f2f29148acbe34d8/cmake-3.14.3.post1-py2-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3b/d4/ab6fd4fb3a024cb49a3456e2cb7c869b74a468f5e52c9fc8b3a8657f655d/cmake-3.14.3.post1-py2-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ee/d8/57ec0f415b8faf5d1e8351150c6a1ef5473b539f94d3a0c0fd8c2b41cc2f/cmake-3.14.3.post1-py3-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9e/9a/6f8492ffd4f1394cf02ca62658b48bd654a1bde20d475e57f1c6dd85af71/cmake-3.14.3.post1-py3-none-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/ee/45/d204eef8b7669ccb955480e9b36a17b47c43aefb6604ab0053eeebcac36d/cmake-3.14.3.post1-py3-none-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.14.3.post1\n", + " Skipping link: none of the wheel's tags (py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/84/0e/50029f5fad5202ec3e29d46d8e31355ef7ff5ea728f20700aba85f818561/cmake-3.14.3.post1-py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8f/04/eb8787de35a476656f506e10086d32334a35c7ffbdfb2c44d02777797906/cmake-3.14.3.post1-py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/52/df/050a30bb5337ba9355a0f7e1ece4f896a160e9596aa1ec522083f4aea83d/cmake-3.14.3.post1.tar.gz (from https://pypi.org/simple/cmake/), version: 3.14.3.post1\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bd/e9/7d2bf818bfa457fdc782efc1f118bdd5021bb4cbf68fee0150f22d9423c5/cmake-3.14.4-py2-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2010_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/09/bb/0121c0ae40144b99420a1a0ea081d48ac4d77332600896d7e04bf23aa957/cmake-3.14.4-py2-none-manylinux2010_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d0/95/beff13ab0924c3c3359d149d7dbe250599c498346f8f7e4906c9f0681b78/cmake-3.14.4-py2-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c2/f5/ba8d8638a044abcd776fdf29c863d64f8b8787ec5a310e5287f357c7ffce/cmake-3.14.4-py2-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/37/cd/822d8c461418be2f6fdf3fb6e30895fecb503d38742e149f4fc1e0dd18f7/cmake-3.14.4-py3-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/ab/b5/d83c2f95d4be1ee9f851e91fedfc943816cfad7940b101791d1b41d00eb3/cmake-3.14.4-py3-none-manylinux2010_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.14.4\n", + " Skipping link: none of the wheel's tags (py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ce/00/b15b8d91d4fdd2c4d7ac3e1aa2087bb675f6d6cf84c5583b494ebb79bd76/cmake-3.14.4-py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/34/39/ddc6307052fe11f31fb74909049b0bb6a656b940ae64c42da38b3154885b/cmake-3.14.4-py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a1/fb/6800b88b9cbd88cb330fc08ec5c551a76f4abc38d78d817ac45b9f6e1c4f/cmake-3.14.4.post1-py2-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0b/54/39fce40267992f6f57895f6972f55d274fee3fa10d658bd72ad18acaed34/cmake-3.14.4.post1-py2-none-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1c/e1/82a781beb2e410c526e516da2d4401d1706094d42986f1e4219e266b5740/cmake-3.14.4.post1-py2-none-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/21/47/074ae73867004d3adad8a9f550bcd59a50f3503d3c907179b9f06bcccecf/cmake-3.14.4.post1-py2-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/58/f9/49d9ab0b16e23ecf9acc79f4edea62d990b7ad06dc29d4544725e6a46d0b/cmake-3.14.4.post1-py2-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5a/bb/d82f910c2f22e4ac0eafd2e3943f42c824fc46825e0308c8cbb1f762fbf9/cmake-3.14.4.post1-py3-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bb/6e/b9620fb39fd0c93827ae1e3dfb6930148a5c2b8381b8a4bc6bffab267789/cmake-3.14.4.post1-py3-none-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/89/e1/91e66c6eefebadc6ed8a31126a6bb29664fdc1913833f6ec5becb7916931/cmake-3.14.4.post1-py3-none-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.14.4.post1\n", + " Skipping link: none of the wheel's tags (py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/79/91/ff1ab8b3685f4fc7bb7a37e2d022d378be51e312bf87663e92d751fe04f9/cmake-3.14.4.post1-py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/51/39/b95eff435f57fba24a87fa2bff7607d737504f3af794e0c9af3caaf77a91/cmake-3.14.4.post1-py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/a0/39/e4bec00ea6af540ce9b523ac3859d49ba6d4ca87ab8d3884e2a428643884/cmake-3.14.4.post1.tar.gz (from https://pypi.org/simple/cmake/), version: 3.14.4.post1\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/11/7c/1680f7d61482e6eda5cf842b9280cb6a1836dc27f6afcebf3f52da622ded/cmake-3.15.3-py2-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2010_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6a/b8/847bfde981594b634658a9c089766df26786bab365d1017b760b3a4cc96f/cmake-3.15.3-py2-none-manylinux2010_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/aa/f2/117d73285d500027f7c0d816994278b20499dd2092578efb5d8d3c444f31/cmake-3.15.3-py2-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1c/bf/dcd8a6ba099518e8b55eb7165b37d555fe1dbf7c70c3eea3582d9389b98c/cmake-3.15.3-py2-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cb/e6/253c06edd9848a2f7262b317cde02767da818cf023da93c00d3d43f72780/cmake-3.15.3-py3-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/ff/34/0a311fedffcc7a153bbc0390ef4c378dbc7f09f9865247137f82d62f8e7a/cmake-3.15.3-py3-none-manylinux2010_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.15.3\n", + " Skipping link: none of the wheel's tags (py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/85/1d/d8f59deb84e0ba98b62476aea272660e1d6f7853b3c710cb89b8fd4c6c87/cmake-3.15.3-py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/53/7c/8d8202d24f7aadd4c8c25e4656a060381ae5a314b3697003fe32191366f6/cmake-3.15.3-py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fb/20/1947765c315329abdd5ee635096080499924e18c3a3a6a35c8fc287b93a9/cmake-3.15.3.post1-py2-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2c/0c/b22dd21d3c42b6f6331a46887a845776aa396a84f5acbaad181f538cb9ce/cmake-3.15.3.post1-py2-none-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f5/03/3fc3f408cfeb946424fbac48ccb3f6375f8a9b3296434e7a6b43aa456ff4/cmake-3.15.3.post1-py2-none-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/95/cd/c66836060bd10c5cd5f82927e305a2c6ec15c90a524fbe579f281fe6e38d/cmake-3.15.3.post1-py2-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/53/89/9c6291b10cbf6eba79800a58f529fb17b2ebcdff81b40cff7e5144186d4a/cmake-3.15.3.post1-py2-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0e/e1/38938914b73fe123e31065d8cb741c1c75f3787ba6bdd4bf691a59acfda4/cmake-3.15.3.post1-py3-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b0/38/f7a2026a7631aed9e46dd039e3ee18e15c6456b38a6928ca487f1c201bf3/cmake-3.15.3.post1-py3-none-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/59/2c/af24bf49cc66751559f39ed4d2b2d202cb8a3e0effe01538091c3297bdae/cmake-3.15.3.post1-py3-none-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.15.3.post1\n", + " Skipping link: none of the wheel's tags (py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f0/22/c8181ce3d964059fc563bb8de030bd9a64b1327686355ae0677e45cba20d/cmake-3.15.3.post1-py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e6/66/cbe7c8e850ecc295fcefa5cefa011c73d00e0c629bef3f7624fd94621cd7/cmake-3.15.3.post1-py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/78/c3/88446ed78b6f8a385276ac17e2833e589dab094785482e52ddc20216b590/cmake-3.15.3.post1.tar.gz (from https://pypi.org/simple/cmake/), version: 3.15.3.post1\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/45/99/26ca8a4957e9d0c6d60509083a5b2b8546ca26519ab1052146be0a965512/cmake-3.16.3-py2-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2010_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2a/76/d2af8eef31d747c780628867f59ad3e32bc502f1c999127b73ae2e56900b/cmake-3.16.3-py2-none-manylinux2010_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/af/29/6fcfad18e64ddbb1a9b8431323c0320cab08cb3fc72dacfa61c4cb5d4bfe/cmake-3.16.3-py2-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/dc/b1/d6df6c4b9458d71c3099236863c49955e80ba515f7afe2663dc039efc8af/cmake-3.16.3-py2-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/99/4d/09131d2f9c7c953cf41cf03ff2549e8ebd03083cb031fa6b082766d9c217/cmake-3.16.3-py3-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/34/11/794ed81985e418001779e52d69ccf7d2ca7fad3a20d679c16e3f356085c7/cmake-3.16.3-py3-none-manylinux2010_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.16.3\n", + " Skipping link: none of the wheel's tags (py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f6/de/e92721171c39b6d2aefbe5fffd8867a2fa358620a447923f7818aec71681/cmake-3.16.3-py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0a/df/e0b3ecae9be7ea02964a386a65c4caf8142b2790c043224d5fee0db4b384/cmake-3.16.3-py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/a5/7c/6525cadf99abbabbcb29676f53de0441e8d2f8d0114ab52aae2b31223a3b/cmake-3.16.3.tar.gz (from https://pypi.org/simple/cmake/), version: 3.16.3\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2a/b8/5b3da73ddc0942b0e5aaa55013b180b475096e0a2175b9e606ab423f3028/cmake-3.16.3.post1-py2-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/18/d4/ef1ac2369954ad020c911ee96b55485d570a886d12d046448db02819b533/cmake-3.16.3.post1-py2-none-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/31/59/81c6cb9322afd9bfff21caf3e6773d195b7891b466963f120547bd3bcd62/cmake-3.16.3.post1-py2-none-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/dd/fa/59c5f3fd3b32a6c58d6ad57c8c13ef60fde062a6836d3cf41eeeb78427aa/cmake-3.16.3.post1-py2-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ed/51/a37456fd7a4936f06d7c9ff307384c616902918ef4adfaacc70c660b0376/cmake-3.16.3.post1-py2-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9f/1d/86d6e22c6dc1d69af048542516a13ca072ad0949658c1efd621225037144/cmake-3.16.3.post1-py3-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c6/e5/75da37b8f24cfe7f8fb917a0a2f207231c4b7d630cbd7c781eec20df79f4/cmake-3.16.3.post1-py3-none-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/28/17/781b08ba84f10aa3729a6452e07d7d2147a9220a9e16dbb5f90dc2342fbe/cmake-3.16.3.post1-py3-none-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.16.3.post1\n", + " Skipping link: none of the wheel's tags (py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d4/da/1136363ea7803550349f422b695a3ed0c299ccf38ce45d4121cfac0da1e8/cmake-3.16.3.post1-py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b7/41/8a3a4a7bafeabfcf4dfcb6208c3636625684ad8429aa87a7702f96e9ccba/cmake-3.16.3.post1-py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/49/7f/dfa1b4d62c9ddede60f2cf0f6a27eca5f8c3eca5f70d5a6ea52be3e42eca/cmake-3.16.3.post1.tar.gz (from https://pypi.org/simple/cmake/), version: 3.16.3.post1\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9e/8d/e8a3585322053a16ee493eb7341b296c74676139d396e98d9f9a00f819d1/cmake-3.16.5-py2-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9d/1e/4812a673c08bad53df3412aae0221524134ec7ffcf57a386fd0d058693df/cmake-3.16.5-py2-none-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/81/96/71280f57f13469ad67d6385ba7d69c48a21dae1bafff128a65bcece26117/cmake-3.16.5-py2-none-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f3/fa/560f29b05b66141cfc73d056766bec3b64abd4703d6a3373c6a8684dce7d/cmake-3.16.5-py2-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/95/9e/9063f764403c1ee174a23d7603bd73521e36750242bbe634b4402da2b879/cmake-3.16.5-py2-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d5/72/8f4feaec34f942c915266a0d5cbb4b2bd7e85f4c92269a5a615fd1df3ed9/cmake-3.16.5-py3-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/11/4a/2da1a68ce0b1e50713a22092db84c5a1b9b075b601166ea851c210378044/cmake-3.16.5-py3-none-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/ea/38/333b216099df33e444984cf22075b753c44d92bcf31015d5ee019346de6e/cmake-3.16.5-py3-none-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.16.5\n", + " Skipping link: none of the wheel's tags (py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3e/da/3824eda834d222cac44ca464bd62248154b6205bbfd5dbec489e0bd5d316/cmake-3.16.5-py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/63/0e/4762bf512c98b6d1872fdbcb1ae0d648f63f339a6538caeaec063629cc2e/cmake-3.16.5-py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/e2/dc/ee3dcfe5bf34b56d1758d0d842d92c46ee43814c17c903fee166e0c90b44/cmake-3.16.5.tar.gz (from https://pypi.org/simple/cmake/), version: 3.16.5\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5e/e0/aece65dfe94f10f7e23be37e17e6a2f958f49567faede314031757be2cbe/cmake-3.16.6-py2-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/dd/89/2d19fb8eb95d0eaf23af5ee71140c0916e6c34ffdb3eabdbd2506026417c/cmake-3.16.6-py2-none-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b0/11/9ef92d909111a2ffea68b477f4bbcd2f082d4023ae707eb92c23ffcd42d8/cmake-3.16.6-py2-none-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/87/de/587b026e44b8c473bd489f74772d3e3f335dc0c8898b356131678f680af6/cmake-3.16.6-py2-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d5/9a/3dabbf9bbb1413cb99274029453c2044303e3421db01176396449c1eeac2/cmake-3.16.6-py2-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1a/80/7d29c78f8c91cb5b06b2908d044bd7c6b475e4671aff96869dab0d033517/cmake-3.16.6-py3-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d3/54/f5a009a967dcbb78de6c2216e83721b786c3ce462c6784d571b7ebb79123/cmake-3.16.6-py3-none-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/13/bd/520537b95b42942fcc912765736e077265a85d6f0fe953284d7218a45ca0/cmake-3.16.6-py3-none-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.16.6\n", + " Skipping link: none of the wheel's tags (py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3d/4f/af86e9f4b2bec2d75f4af7880efb802e302469eff22c61e1a63634bb8b55/cmake-3.16.6-py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/20/1d/f9988c0da1764c6baf201258108cb18efe6e157750de7cb4b49492831cb3/cmake-3.16.6-py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/e5/4c/1967db2dfe1e83f012eb8940ef6f72c37480a3bf056efb6127943f262833/cmake-3.16.6.tar.gz (from https://pypi.org/simple/cmake/), version: 3.16.6\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/13/d0/781e28c1109c49ed7c03452e359ecee2517efac73620011ef00fc3cc07e9/cmake-3.16.7-py2-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f0/49/607212dde8854fdd3dcc93bd47be9ca5fd6119923e47dc0f321bcf5c21af/cmake-3.16.7-py2-none-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bb/38/cc262dfdfff38fd26231830e694091d5239e64d884f7737a895a3357a1c9/cmake-3.16.7-py2-none-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/78/47/d9fdc1069cef9dd0fe260d3c88cbe1574f415c35e5f7b2c840479a99fab5/cmake-3.16.7-py2-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fe/f2/fe8226b90e7f7c5b0c0cefb371284aa2cd8f513066dcad85f8f9c428b556/cmake-3.16.7-py2-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/86/19/d4107dae0014746ac5170f6025c331a719930a69028445b0745ced2db573/cmake-3.16.7-py3-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a8/8b/3e6b1f7c218c5fcf2033d01b43e4959f97e23414c390191efb60aec79c2c/cmake-3.16.7-py3-none-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/81/a1/389d94fc13b21facdbd67cc055632bd3d1e11b2d4c606f746b094d18a0fd/cmake-3.16.7-py3-none-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.16.7\n", + " Skipping link: none of the wheel's tags (py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/19/8f/285eb3b2eaccdce234ed0ac6ec6912859533e8a37c42f34e53669b4d341b/cmake-3.16.7-py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/05/da/84c67606c2280e943bb9aefa2a204981e950e41677f923bf512dff0fe006/cmake-3.16.7-py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/1c/29/eaaaa8d95d955d451cf34fc9ee6dcab33e83289d39bdaaca7139c5a3e96f/cmake-3.16.7.tar.gz (from https://pypi.org/simple/cmake/), version: 3.16.7\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/01/5d/ec03a8cd2df3c85e756508b399a4cb2900f96375c84fdaeb73e07f773796/cmake-3.16.8-py2-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/03/84/d382148590e0a0899f4b2f3747a2a6d152bc41550f260f8bfb85f83db57f/cmake-3.16.8-py2-none-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a4/55/dd7dedf2430a5d43e386d884e051fc97ef2672cf6a7b75de241bade4fe68/cmake-3.16.8-py2-none-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/df/3f/910df378496839e6a23441ebed5df519867bf95020a933aaf3f5364eeaf1/cmake-3.16.8-py2-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/88/5a/5b5e53bd5ea2e46d45aacfb5803825f237671e53ba3c4c5e722b3d60a752/cmake-3.16.8-py2-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d0/ec/acf39d8e58d6938ac6118b3cea59bdc5aca2af6f4499027d15a13408405a/cmake-3.16.8-py3-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/07/3d/8eec7ac878d104b1b115c6f72fb604cf50ac49d4e18a551d497f17de3f9c/cmake-3.16.8-py3-none-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/1e/b8/d7f56977710c6dd0e19b011b577a3cb30bbd7b389d4fde836ff5e1868b7d/cmake-3.16.8-py3-none-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.16.8\n", + " Skipping link: none of the wheel's tags (py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cd/cd/d9ab09a58de99556a87ae72a89e2401cd703ae44e953ac075902087fc106/cmake-3.16.8-py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cb/59/fa13318583023a52ec7c2ba2b6388484d7cc94847815c49ae3539919bfc6/cmake-3.16.8-py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/ac/2b/00c163c8cb2da29bc3ffd5a6dd479bec6fe136c76cb3ccc0b4aa7bdd2616/cmake-3.16.8.tar.gz (from https://pypi.org/simple/cmake/), version: 3.16.8\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/25/1f/42a5db21550250606cab1470c19a79efcaabf7d803e455f6406d9bdbb24f/cmake-3.17.0-py2-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e8/f5/b498edbbcca9dbe3104533efdb6ada675a676ec3dc8e7902fadd3be5c817/cmake-3.17.0-py2-none-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/54/58/40daef127f7072c72f31e777b7bf41634b5d1211e98f5e5af75b65b55114/cmake-3.17.0-py2-none-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/30/bb/06f33140279a2b8614e5c689d375fb05a51ccdaf36b70101685988b7bb11/cmake-3.17.0-py2-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/31/fa/07f98f1d473b19a5c4f7a9debf5ea25b481b2065d341815ea8b783798594/cmake-3.17.0-py2-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d9/14/8ff94d4d1b0648fd7a5af105d516abdebb2755fd4870ce20d6bf984391d1/cmake-3.17.0-py3-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7e/68/068ee6371dd8e48297d58a7d56bbe323142c1988bfd7a8d0de374a2be60e/cmake-3.17.0-py3-none-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/03/37/679eedcf41c160c6eeeb105412d07149c36399aa46e3667943c83b298d1d/cmake-3.17.0-py3-none-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.17.0\n", + " Skipping link: none of the wheel's tags (py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a7/03/061c3773564cab527c33f73d21390c6826deefc289002e3ac83364794289/cmake-3.17.0-py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/79/9f/5415fd15501e3ed09fb9b87196afefffc3a422d4d66a6033bbda9e5abb2b/cmake-3.17.0-py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/83/5f/aa8d7423bbe1150199392738defa29c069d66f9045922a9c81baa97ed73a/cmake-3.17.0.tar.gz (from https://pypi.org/simple/cmake/), version: 3.17.0\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/19/4e/1a05b719cfe6b0cc84ed49e671825047e8e5058b61cf91998ec7cc6e7756/cmake-3.17.1-py2-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/39/07/a8c74f3c3af49336f1fdcd18cc87dfb5cde70a5c1fa69cdcc5d1b2c016e5/cmake-3.17.1-py2-none-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ca/2e/2b6a14d54001029af68fe0c976770fb3e4d388b9ef89718205e704a4ce10/cmake-3.17.1-py2-none-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9d/0c/4fca9a0f95af8d230474df8b4de0438f9e0820ec26f15cba13b54909c853/cmake-3.17.1-py2-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/30/0f/8a4c28e8af885e6f10b230ed1e79fe6b34b6921e1668e30a6b6cfb5ebd9d/cmake-3.17.1-py2-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9c/c1/fe8eb994f78fbafc0420c2a5844aef589b6c5d367fe3fa4d3e290f52924a/cmake-3.17.1-py3-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d9/fa/db3121403a93fd9f9b1ccab1aa45814d099dce9b8b198105ea8356f01c02/cmake-3.17.1-py3-none-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/a1/8a/478adf1a511ea4a52ae33678cdf0a96e1abd6e1fe418df5b34cb37392995/cmake-3.17.1-py3-none-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.17.1\n", + " Skipping link: none of the wheel's tags (py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/13/88/77ab5815847756af13d3e1b9ea20f38b22527938d769c424b04d755807b8/cmake-3.17.1-py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/26/b1/7bbfde0e110bc0e2b44e90f7747136133df0c03160cb14b4ce1b8529787a/cmake-3.17.1-py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/f0/84/f0001d0b3f53dcd2dbac5c7702adfdb754cea10a8fe007abeded8b2f540c/cmake-3.17.1.tar.gz (from https://pypi.org/simple/cmake/), version: 3.17.1\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e1/e6/ed7a235eead1ef8d0d6f37b64c727aceaca80bf7cdfabc007bdd43f917f3/cmake-3.17.2-py2-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/34/80/be117d1e5c0c480e3dd2a583b4312cecc9fadc1c7a59569044e5e590158f/cmake-3.17.2-py2-none-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/42/f7/032bf1b973d749759f813360cd6aee316f3714a0e6ac67a8e41c27253066/cmake-3.17.2-py2-none-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c2/5e/7ac3444af4f071b4181800a923bcfc5b20edf19dcc56ae0a455045787f00/cmake-3.17.2-py2-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/db/a1/0689300dd6d8e330f42650dcd04828d995408375d22c7bb9fda6c3d12d00/cmake-3.17.2-py2-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a3/f9/f295304ca022dd6b501a9d71d084621e394587aadd3219c315560f355065/cmake-3.17.2-py3-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ad/d5/40ec819b9544d7c8a7e67446de67406bcc48a97a92b620ef13c51d4a3f8d/cmake-3.17.2-py3-none-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/c6/4b/b5b104edb30982ccfb1ec59650bf710832a19555b778a368868c001aa168/cmake-3.17.2-py3-none-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.17.2\n", + " Skipping link: none of the wheel's tags (py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/85/e4/9c6a995029540dc0cb8c57e5f71f06954365ddc26f5bd9182c46b217f533/cmake-3.17.2-py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1d/df/cd89af27c8764d1214f8b2bd788c298f4172ae4679f1b6b039029d33a462/cmake-3.17.2-py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/70/46/12769c7b019737c68bff51417998d234f51cbd327f268b15cabe3e4e2856/cmake-3.17.2.tar.gz (from https://pypi.org/simple/cmake/), version: 3.17.2\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ce/a5/3b5c90025ff4d9340a425894ce9b94f3e070870eb161d40b99c2c5e03ae2/cmake-3.17.3-py2-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/39/9a/8496bfcead128ba5979ffcda5e543a40ce1e73d9fdbe36cf5b816fd77528/cmake-3.17.3-py2-none-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/06/c7/3b1cca7373a721b39d6c451a379b67c49b63bd9ca2456e383c2cf10dbbde/cmake-3.17.3-py2-none-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2b/ec/b2abd12006fa2c29f129ca6a6b415f82a421175b71294f6b3b9caa6fa1d3/cmake-3.17.3-py2-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a0/c3/f4f14728eee702b2b4e244bf8d9e6146744ad1e581e3cdf897d0e7d2dac9/cmake-3.17.3-py2-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b8/f4/8229f69bb1014a8d5e7ae98e9d4651a6d38c4f5514c1d92af310e433e198/cmake-3.17.3-py3-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1f/c5/a21b4395582997f1d8a1baeb03a7d33bdaae1d22ec3014bbddd4c3cbd7d8/cmake-3.17.3-py3-none-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/50/6f/6221ebc752e0089d062289d1dbb72d73f2e46667fd1dccbc1c6133b72d3f/cmake-3.17.3-py3-none-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.17.3\n", + " Skipping link: none of the wheel's tags (py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/44/96/33bd8c97dac3150449818658d01d5a62e0521c5b2f10fe619e9dcc54f834/cmake-3.17.3-py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d7/56/548e1fcc03e02abe4fca8780aa8cd002319cca1e3bff8244480db5f5afca/cmake-3.17.3-py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/61/1e/5b93ee222853028ff6daaaaed811f6ab2386906a847f450eec817be36f57/cmake-3.17.3.tar.gz (from https://pypi.org/simple/cmake/), version: 3.17.3\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/69/ce/7e72cfa7d13ade3be52133c6057a7bef9dc7a23a96f7fa8b572a6330228a/cmake-3.18.0-py2-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1d/6d/6cdce21f64ebd8bd5601bd3c718021b980a5ac8e3c7852bf21607752e706/cmake-3.18.0-py2-none-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c4/e5/a8cb1b4ace7cc98d138bdeadb681c0d520a36d7fc43d94c893461fb6c125/cmake-3.18.0-py2-none-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/15/c6/e95cfed232c17f81cad5499bfc82a6a8d17756799186a664157875033028/cmake-3.18.0-py2-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/dd/65/26e43b49c3eee1c77d5f06b0904f501a0846e0bf8b5928ed2af7beca1a36/cmake-3.18.0-py2-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d5/25/1eb8983af8472dce8765f2d7abb657b04dfbb0247e28c3331d9503e27c72/cmake-3.18.0-py3-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/83/c2/455d579a8dfa9951d9edef5b3f27c6ea37e09e97bf8a1e8d1de622d31921/cmake-3.18.0-py3-none-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/98/db/b77b44af9a217be1352e9f6e79ade771a7f965dd5779bad0b094b01641c1/cmake-3.18.0-py3-none-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.18.0\n", + " Skipping link: none of the wheel's tags (py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/94/2d/28739902d712dcc86065b2fee7baef296c57ac6501ab5962873a54d52a48/cmake-3.18.0-py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e1/71/3237dbc12639dfcf5eaa59aee957a40852eb7688b0318dc681aac116f842/cmake-3.18.0-py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/bf/b6/bc83a846ac9ffbcb7f9490af135c42002e12f3adc8253c9e55c07de49cf3/cmake-3.18.0.tar.gz (from https://pypi.org/simple/cmake/), version: 3.18.0\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7c/13/e86d8532fa5b5f1231f6e1c3666334ee26e1627e653c4f77fb00efd12fdc/cmake-3.18.2-py2-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cc/70/680cb7d557bf45b042b2747b690214b9ae673e7e83923a55d70a284037b5/cmake-3.18.2-py2-none-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1b/d4/a1adb3e678c72478f1654dd184b0dea9ec41f039992b03341b942b5305bc/cmake-3.18.2-py2-none-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/af/f3/5454407274c2955cae6759a3693d9f33fed698a1cff2820b276ccac23bed/cmake-3.18.2-py2-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/68/91/e29999565061d18eddad8c147fb6bb078ef97c2d954d09cf1ea73fbf5a4f/cmake-3.18.2-py2-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2b/44/5588a2148bb947e57ed4da830f1c7e81b0e0bcd4d49175427d00493cd911/cmake-3.18.2-py3-none-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/98/cf/65fd6c3c1065845af6ffe75280fbb77d02fb608680a0306e22ffe357b0a7/cmake-3.18.2-py3-none-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.18.2\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b2/91/de54c5e845cce13d1b9f33e273c0d6f3337ec1b14c078f442796ebbaee43/cmake-3.18.2-py3-none-manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/af/bd/732be11d7ef5b968655dd5e8205c7182664fc00b55119f6236ef40c84163/cmake-3.18.2-py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fc/cb/48973e85e8079795cf74c70fe57a1b9b91f8eb05824f29f85b63016a101f/cmake-3.18.2-py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/b1/1f/b63759922f7be52a4157fe7d727b2a7127750e6d43f173749522262654f4/cmake-3.18.2.tar.gz (from https://pypi.org/simple/cmake/), version: 3.18.2\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d1/06/ef7140796242ec33de61a69c6dcbfaf4b320693446568b86cf5dca76fff1/cmake-3.18.2.post1-py2-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/59/55/d84f78f2ae7b13d1074d82f3f786980b9168503016cd19466dace3510925/cmake-3.18.2.post1-py2-none-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ac/42/ccad45db80b0bc31176175714962ff98f1329a6d1501ed786d42002679b7/cmake-3.18.2.post1-py2-none-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/66/6c/439839ff7d3d0431b620d2429585d3cada91d72bfd485a0595f4b5b4e48d/cmake-3.18.2.post1-py2-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cb/33/b47678ddea9a7448b9b5c8f63afb95d07736ff03b9116e17927ab976dc94/cmake-3.18.2.post1-py2-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/86/b5/d8e4fc02928028f2e7383a117bddf568f662d2be341ae46ff0c366928261/cmake-3.18.2.post1-py3-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0e/73/a10945e32859770b32b0a3b50af85c14d3138e1d493a7805502dba106408/cmake-3.18.2.post1-py3-none-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/35/bc/79d0e6cbda11d2d469afc9bfcee3086a8f1cad18d0cf60ebc1a117b96b62/cmake-3.18.2.post1-py3-none-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.18.2.post1\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5a/67/6267952130cabf088f43dea08466170d5bb683d4f2dcc108ff9372011493/cmake-3.18.2.post1-py3-none-manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e2/a5/9725dd32d167160a8603a46aa3c5e06274550add0d28281b6344809909b5/cmake-3.18.2.post1-py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f1/37/d0bce0894c3c8f4613d44e21ff9728a6098a5d8c380c01c9df0577cee282/cmake-3.18.2.post1-py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/eb/0a/039d5e4c4e2cf347091fe0e3ee322413e3750a5d4bd1d4b6d8537072687a/cmake-3.18.2.post1.tar.gz (from https://pypi.org/simple/cmake/), version: 3.18.2.post1\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/13/ae/2f10599944f83f6b7ebac2f67553c708851460f16198564bb7d53d1fe8d3/cmake-3.18.4-py2-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7f/a7/8279e9ba9a31f81c7a108cc98b92f3ac0ef85fc343dfa1239ff7b54a0d2e/cmake-3.18.4-py2-none-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/40/f2/b28d40337294dd8bbc006917d36aa5759a61144e9647127637679c12f9d2/cmake-3.18.4-py2-none-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e7/b2/b44b412503c0bd2b1adff6056c3cad3f033f88e0c6724983f01f07d0f660/cmake-3.18.4-py2-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/19/55/fa046b64d860a330dee14e41225989251289b02c4f3a23fe6cc65127441d/cmake-3.18.4-py2-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/77/c7/7bab4e538867b77e484b3c4dd7156eefa04bed84d7b4b105cb09ca8eaa3d/cmake-3.18.4-py3-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ca/91/bf5f4c354074632b968ee11e838db32be83d7861e8975971efb4ec9fd139/cmake-3.18.4-py3-none-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/80/1f/471c97a6a6dbc8b62c4ab32d944eb94ce78f9afdd01a0310a7d5d0c47aec/cmake-3.18.4-py3-none-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.18.4\n", + " Skipping link: none of the wheel's tags (py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/35/1e/6bd6141d9da93514e15551f144c89b1ac6226bc9c727e1624c5cfd6cacf4/cmake-3.18.4-py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b2/61/de6e7c3ef51f000d7207206bf9ce5fe29942bca1c39ebcb19a718c4884eb/cmake-3.18.4-py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/56/fe/def6c924b81aa489c2e304bde3a2818824c30d41dcc938f5cb280b611c14/cmake-3.18.4.tar.gz (from https://pypi.org/simple/cmake/), version: 3.18.4\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ca/66/8c4777949ae6e3fe625231a3d48e69168f58e4924dac6a6750463616462c/cmake-3.18.4.post1-py2-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4c/e3/4996ee8f1aaa54295d8d2e81b22232ca1128612b7e8641533fc76a2eafb4/cmake-3.18.4.post1-py2-none-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8d/d5/22963705828599a9cce54fe5bd46a3cd077e72bc8d8adf8101c5ddd654f2/cmake-3.18.4.post1-py2-none-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7f/0c/2186786ba0b7dece0326d4003656bb69e979f9a5618e9b96e6b60d4ddd03/cmake-3.18.4.post1-py2-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ec/10/7baa1f864598db6b13c17e206b6c7f9ed4356f3074d2fb900162e1c58837/cmake-3.18.4.post1-py2-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/49/35/8eae15288ea35c3e9c03e7abc241b554ebc2526418ae56c19531cb276719/cmake-3.18.4.post1-py3-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/14/c3/44e3feed56366ebfa9a684e7daae00fe9bdf582f88821710f1402914b189/cmake-3.18.4.post1-py3-none-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/bb/c5/9a07d851bf8356dba2871f141f3e5e8d390995687be20316041a1e564d4c/cmake-3.18.4.post1-py3-none-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.18.4.post1\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ff/5c/1a14af0b6bffa4c7bae4bedb731d278453fe5b44f2cc239ff0a2e474a982/cmake-3.18.4.post1-py3-none-manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6f/24/5d0c9c52a149aad705393f537ff95629f62003fc1680554151d75c1a535f/cmake-3.18.4.post1-py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/06/c5/fe5903b12268e99c649bac890539e86f26319709b21983aeeec734866406/cmake-3.18.4.post1-py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/26/76/b6df98a03343160a27c449c2866d8b94d349be4a3a6632aaf49c8d27916b/cmake-3.18.4.post1.tar.gz (from https://pypi.org/simple/cmake/), version: 3.18.4.post1\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_10_universal2, py2-none-macosx_10_10_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0f/ce/a720095c7ce14f7f935222a7433fd570d7abff447276cde16f1c7fb82874/cmake-3.20.2-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686, py3-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/76/3b/3dcb470e28e8d8643765757f4d00f455fe16c585f151a876731590bdedbb/cmake-3.20.2-py2.py3-none-manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/19/34/b1e6d50ffd6f737521e85a35080004c072dfe7ddd11c9cdd491274cef2b8/cmake-3.20.2-py2.py3-none-manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.20.2\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3c/5f/3c77e6eeb21c0c030728934ce42c17edcffcab9b436731280e3e6236830e/cmake-3.20.2-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4f/64/4fc8b4399e1b59712478ca24858a1e290b87f0bed34ae014f3e5e5ce2ae9/cmake-3.20.2-py2.py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/19/b5/a8ab1fdfeee0682ffbaea89628a3ecfaee39693a9ddb512b2e8dfc828ebe/cmake-3.20.2-py2.py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/eb/df/cad42ba94b363194a2335a39a080de3d403cfe44fb8ce72a5f62a3090f24/cmake-3.20.2-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/93/bc/12c0bdcddaf33e721f20de266b196692fdc836501f532c97e3674ca1b2b0/cmake-3.20.2-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/0a/37/2ff538a860a694780e1f2150e0616f7202c15a5dde0833ee09050002c091/cmake-3.20.2.tar.gz (from https://pypi.org/simple/cmake/), version: 3.20.2\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_10_universal2, py2-none-macosx_10_10_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e3/9d/1964a7e508c67599ad828ea194c1345ddb8a2f19da30cdf23e49f0e519d5/cmake-3.20.3-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e0/1c/94f3e775986cc80d5cfbfc330db81b0ed4a7b133a334eb7ac3508f5bad21/cmake-3.20.3-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0b/c7/5ae23ee42070c4223290c4ccbe072f8ad8f77b79ee1482b26ce7d0ad88d5/cmake-3.20.3-py2.py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/81/02/e0a301aacb567349d354da1beddfa65b48e6248109718a574dd2e3625e5f/cmake-3.20.3-py2.py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686, py2-none-manylinux_2_5_i686, py3-none-manylinux1_i686, py3-none-manylinux_2_5_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/51/01/a34d0c471175e37361c5437079949c792c5065759c08bd8b232619b61963/cmake-3.20.3-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/96/cf/d023dc0348b7b8b564b4a14c7457f9ee195ce6f6e91a39e9aea8e18389f2/cmake-3.20.3-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.20.3\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a4/d0/8e0f0046125459f596a2edc1f3bc1afed6f6938e9369ca1b4534872a5701/cmake-3.20.3-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a3/fa/bb15d7789d2469d96ce7f66f50d9f20c14ac1cca4bd28e82c7632c0fc668/cmake-3.20.3-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/1f/ed/a16acad189bcdc5699818e23bd11be1add825e504dca122b7cef3382f93d/cmake-3.20.3.tar.gz (from https://pypi.org/simple/cmake/), version: 3.20.3\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_10_universal2, py2-none-macosx_10_10_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/17/b8/36f489a2edfe1c318d5446cd8adc68159518cbf7aa6ffed1769198b728f0/cmake-3.20.4-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1f/47/984b76a8ff8ae95e10afbd4d84465893afa08b411f6760724ec915078001/cmake-3.20.4-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/47/25/222665bee68e83d933da3be308f6e834347e288345ec251d2ed92246f63f/cmake-3.20.4-py2.py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cd/5b/9fb78f089f7abbedb8394e4e38875aac65e25938352de51ad2015bb553e3/cmake-3.20.4-py2.py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686, py2-none-manylinux_2_5_i686, py3-none-manylinux1_i686, py3-none-manylinux_2_5_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/77/74/5bd36f1cde11b95df57193b7c9dbe38c063965c340004baa43e19d14e47e/cmake-3.20.4-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/66/d5/bca132bd7eb48c3463735d95ffb9f87f09af2078b8526ea109e760dffa13/cmake-3.20.4-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.20.4\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/00/8e/7532043ef82306b76ee5aa7a3a9e498f9fa25f947826b3b657d408807f0b/cmake-3.20.4-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/93/59/56e491c86d0e50cedc1596c146aedbfdfed5fbfc82794bd90d5f98ff5483/cmake-3.20.4-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/6f/30/88a24b12d3d501cfd3f69d1be8d753dd417641af8ed24602add45359232a/cmake-3.20.4.tar.gz (from https://pypi.org/simple/cmake/), version: 3.20.4\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_10_universal2, py2-none-macosx_10_10_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/08/85/376de60e3dff3b64b2482c02d85134f156ed8c5683f5fa7b798d5b4e14ac/cmake-3.20.5-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/33/5a/3e2d16ba683efdc9ac4474c89278a365004e19c88402a6e801e1b95b8dee/cmake-3.20.5-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5b/32/7a45ea178b9bf55c10ce096c7c58a43b9ca45616b3b90eac9541d90d55a2/cmake-3.20.5-py2.py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fc/20/3172e3dd9411f604291b4105d4194304e941e6acf52ea8a86278f3ad6496/cmake-3.20.5-py2.py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686, py2-none-manylinux_2_5_i686, py3-none-manylinux1_i686, py3-none-manylinux_2_5_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f6/86/c1113c5dde504c8739cc7f995250efa91096e9bb3497c008fccc7c59b020/cmake-3.20.5-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/09/67/b5ce5f1d025ba92c907929af3c23ca126f4df87ec4aa3962aceeb01c5a6a/cmake-3.20.5-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.20.5\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d6/49/6382376339afbe86c59f665d2cd49ca93aa08d7c99a5996930b1be84849d/cmake-3.20.5-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/65/7f/80cf681cd376834b442af8af48e6f17b4197d20b7255aa2f76d8d93a9e44/cmake-3.20.5-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/30/f1/402cd7765e00797e20e43a61ef77ae0d21edd4c27c7655720a10113fc047/cmake-3.20.5.tar.gz (from https://pypi.org/simple/cmake/), version: 3.20.5\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_10_universal2, py2-none-macosx_10_10_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fe/c0/bee47a45c9b74f6fda6bce39e96cc9a05b91607944dbd5ba95e242120ae1/cmake-3.21.0-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/65/21/53a8b7a0f34745e128299d32dc5ad318a33fa77b3293532a0a3427b368ee/cmake-3.21.0-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/95/d0/9cdb50cbb563e05b66ed9e4592ed5d3b3c884ba8736c9e2b1a7ef81f34a8/cmake-3.21.0-py2.py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/99/56/96357b05971613344cbedbd471bba8c9377c77c0224c445b3d176a24ecc8/cmake-3.21.0-py2.py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686, py2-none-manylinux_2_5_i686, py3-none-manylinux1_i686, py3-none-manylinux_2_5_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/03/39/a81f32227568c05c3cde6d45eef80cb5e224b94f90520d7a868eabadad0d/cmake-3.21.0-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/2e/e6/988e201a5fea43dafcdcfd7b4b8e971c0adf22ee554cd1fa1a84237ea41a/cmake-3.21.0-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.21.0\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f1/12/09d5a5cea172e13eaa529646bd0492f7db113ad128ea16b67820fca412eb/cmake-3.21.0-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/56/fa/42677528d2a25b6f38a6fc4653128a1055a5f4ec7bb30882d2b75b314fdb/cmake-3.21.0-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/e1/78/66d1a7c684cb3bdd2a037b4afc0becffd7b70587e8d2b15a38f1041d2e4c/cmake-3.21.0.tar.gz (from https://pypi.org/simple/cmake/), version: 3.21.0\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_10_universal2, py2-none-macosx_10_10_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e8/e6/4cc992c1628ef6ca8452da1ec3d77d8e123029e1ea11f1f8b4d136e17150/cmake-3.21.1-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5e/f5/bd4e962bd0aa0e773329381ee5a9b3d83bf77f61c8fce66af8268b04293e/cmake-3.21.1-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ae/88/d3892442924292a1f18bcfd53d0348cb9f84d1d0c0d59943f152f7bf6c05/cmake-3.21.1-py2.py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c4/ab/e6a43dbb8600d5500cc9e44a183c794438c9bdb634378c52de0f12866fda/cmake-3.21.1-py2.py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686, py2-none-manylinux_2_5_i686, py3-none-manylinux1_i686, py3-none-manylinux_2_5_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8e/2c/18938215e73030cd95c4969f1c5970f7c4ca83db723c06082c8f8c08b351/cmake-3.21.1-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/db/aa/2a5e197b438cae4b312a039717daaf295734eb19bcc258729ce85bfeacff/cmake-3.21.1-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.21.1\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8f/7e/54e921cec82d6ae2628ffed6c540a90809dbf78f848e2293f18cb110c169/cmake-3.21.1-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f9/9a/a8ddd6b26ff95e78c03f2dcd90b880dc97c74f73b04ea884b726a7d794b4/cmake-3.21.1-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/a2/48/864717c46541a332a1357852202a9e8da86be01beea90500baeae2de6594/cmake-3.21.1.tar.gz (from https://pypi.org/simple/cmake/), version: 3.21.1\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_10_universal2, py2-none-macosx_10_10_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/66/3b/2bf17146b4441b02be28c0ca7ba9c0d62af6bca090bae75f2ec87145113d/cmake-3.21.1.post1-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c3/ac/53bb56d7b0c0d7a6d99ff938f86dbf862e3d7faa92c016505150f9228ebb/cmake-3.21.1.post1-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/17/b8/fdcf6312dd043b9422ab76862a03a62233a20474a4b04c96b863e948a5e8/cmake-3.21.1.post1-py2.py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/96/7a/1a379b1df96d1abbd9f7df443de03450e3a25f7070268e754e63878ef92a/cmake-3.21.1.post1-py2.py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686, py2-none-manylinux_2_5_i686, py3-none-manylinux1_i686, py3-none-manylinux_2_5_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/74/d0/2ca2b23fb8b07bdbbee1383e37895042439a876e1ec94b9babd7880f1b08/cmake-3.21.1.post1-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/bc/f6/b465ceb4bfd9364e2bb307f3bd42630916151cae94f9a9a76f0312309670/cmake-3.21.1.post1-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.21.1.post1\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/de/89/b1821904fafc8c2a0e667cbe715705c8e8761bd5e0796dbde4c7c55913b8/cmake-3.21.1.post1-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ac/31/1ca120cd181ff20c2efce82f58050b6cb88a1275d597e4e57a86c4a43760/cmake-3.21.1.post1-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/1b/76/68249a914350cdec7d43b9f897e31fb749e8880f2549a9cba0b22e8fe8f1/cmake-3.21.1.post1.tar.gz (from https://pypi.org/simple/cmake/), version: 3.21.1.post1\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_9_universal2, py2-none-macosx_10_9_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_9_universal2, py3-none-macosx_10_9_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6b/67/f09f6febccf8378a325aed351c5522a94e4db34a9719d4eedd4941396b97/cmake-3.21.2-py2.py3-none-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2010_i686, py2-none-manylinux_2_12_i686, py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/91/75/8c73845aed19892a1962e404c441bf7f554dc03048a5cdcf2e55d042e3eb/cmake-3.21.2-py2.py3-none-manylinux_2_12_i686.manylinux2010_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/17/3f/a2d98878cc48c0d981214b231f524d94901a3245597c1731b6e1fbe1a4c3/cmake-3.21.2-py2.py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.21.2\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b5/a7/178d38069e7b010f3e78e4177a2bfa32018f40a2808d883258a9dd0e1bf9/cmake-3.21.2-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7a/11/a922ac04163a1dcab3cb91c5597a5d503b159c6a7744247eb7ee1978e627/cmake-3.21.2-py2.py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6f/10/4d64f2eb44114e79e75f85d7ec68d59fc5b156f4cce4a4f54b88ccbf2151/cmake-3.21.2-py2.py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686, py2-none-manylinux_2_5_i686, py3-none-manylinux1_i686, py3-none-manylinux_2_5_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9f/0d/1c5ee89716631ad3928d4abc4f1fd1d3e4326c689540cb5bb93e63eba7b8/cmake-3.21.2-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/66/47/74f4e375922d4cf46208137f9d2c077194f680994aa963e850ec29a42100/cmake-3.21.2-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.21.2\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/76/59/4e6cb9f78fcf1b4bc7fdc906947373b9553f8a1ecbee0b8a8313dfd5dbdf/cmake-3.21.2-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d3/7e/8fc8632ef7de5c3443af88d58147a6ae32f3386a5b5ee5f473847e59e700/cmake-3.21.2-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/0f/8f/57a0ee34cbfc2dad9b5cc7a2b2f9f7b42bfce9a8521cc9ae67e42d444296/cmake-3.21.2.tar.gz (from https://pypi.org/simple/cmake/), version: 3.21.2\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_9_universal2, py2-none-macosx_10_9_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_9_universal2, py3-none-macosx_10_9_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f3/16/8f351f29dc7283195f68fd96eba00056f48a1693abe9879347a7a5848c3e/cmake-3.21.3-py2.py3-none-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2010_i686, py2-none-manylinux_2_12_i686, py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2e/13/ff5b513f05ea5bb079550d90d9b6226a756728b015a8cccee14430d3c924/cmake-3.21.3-py2.py3-none-manylinux_2_12_i686.manylinux2010_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/0c/28/10f09c766617b3e916af523275c4a87ce6b4a586951ac335b4ac3acc724a/cmake-3.21.3-py2.py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.21.3\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f5/79/baae99e9525d0f0a2b8050725f23a6f44ece9ade582f73d2ccc4a818a4f1/cmake-3.21.3-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/86/c9/ca171e8f2738df912ee663bc57a3b311258fc700c0a1ea7fa9c0ffe08df4/cmake-3.21.3-py2.py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/58/db/a0ac86ee2b9989460253d827df52c7f4950b59a0c06eb1fff4668030de17/cmake-3.21.3-py2.py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686, py2-none-manylinux_2_5_i686, py3-none-manylinux1_i686, py3-none-manylinux_2_5_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/49/dc/6c15edd42f4c042245a3129c39e6f30047166103f14deb34f5407cd68007/cmake-3.21.3-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/cf/0f/f98bdf5c3a25eced35d9c3fc2955efceb7d0b2ff9679140b5ff3539f4ad7/cmake-3.21.3-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.21.3\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e8/be/4efdb88ae602e810f973ccdaa4fa10495a66728c278be28a7adb388152d1/cmake-3.21.3-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7f/f1/107d0cbb12d8637b705b50b7821250961466149449ee7e73bae3e98c62a7/cmake-3.21.3-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fb/44/39ba44b97a0f9bcb83c079563935ca34cdd4ad6fb6b1e3ac88bfcdacefa7/cmake-3.21.3-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/38/5a/f6b41ac33ad15a37a5b19e120ae27a746031d098dc4397683748730fa168/cmake-3.21.3-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bb/98/4e24676733c8fefdee354345283517d7d98e88caa5aaa219074c1fd3f90f/cmake-3.21.3-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a3/57/7e215b241c9f570758ca79cc4e4d32c05322a6cb733ffa455d5b85586489/cmake-3.21.3-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/78/1a/99b665ecc9dd6b4a35a109c5a54587139f3b36826d60b8f2f85d9b749e03/cmake-3.21.3-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/7c/5d/0fed70a9458aa0b45065aa0dab9ef6cce8bc10e8f7794fdbc84bdf7c5aa1/cmake-3.21.3.tar.gz (from https://pypi.org/simple/cmake/), version: 3.21.3\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_9_universal2, py2-none-macosx_10_9_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_9_universal2, py3-none-macosx_10_9_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/99/05/21e0f375eb3bece5de7cb3c1185b51dd96c292179fe216d1c34284705b5f/cmake-3.21.4-py2.py3-none-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2010_i686, py2-none-manylinux_2_12_i686, py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d4/ef/64d3e6f0ac6e48e2f8f3b4a84ec24ebf681db563fdb949f3ade9e367a1ac/cmake-3.21.4-py2.py3-none-manylinux_2_12_i686.manylinux2010_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/db/d4/d28ec9a079bd3e2b40a92fbba54cfedc9d830cb29552ae4cabe38ad59075/cmake-3.21.4-py2.py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.21.4\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b6/e5/a8e2922d6509d31affaf51f155965b9c9dfdae55876994d84c260117f38c/cmake-3.21.4-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0b/63/d8f899d92e5ead19d52d6024a0a45d3beba6f8409404d2a90b750330e75a/cmake-3.21.4-py2.py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c9/8f/ea193c3916d74440a5f09f1fa8a378b501395f67ff7429a962f3299e4209/cmake-3.21.4-py2.py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686, py2-none-manylinux_2_5_i686, py3-none-manylinux1_i686, py3-none-manylinux_2_5_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/32/4d/af12b0e7d7894fc63617f3ff1e0125db24f3784a6625ff972bff3b1aa208/cmake-3.21.4-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/e7/60/18207ef16aa96ad4491da3e22e93b7eeb64d6a19b22f2d5e04a480aca6e7/cmake-3.21.4-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.21.4\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/91/16/66bcb1004aaab11e8d9c0841eb0e3debc23038c67bdf093324d042802caf/cmake-3.21.4-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2e/a8/bf2f5fa83f31560db62f03ebbe89a77fc60cd040a8f925b263cb48bfb330/cmake-3.21.4-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/be/f5/aa8f424233ea5e534b53b72c6c647aca50bc234a0e7df9d64f8500c057fc/cmake-3.21.4-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8c/cb/e74210d95fc102b0efffc991337242668ef67b8ef7fb83e98ab616f3c94d/cmake-3.21.4-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c9/b3/75fe4187a2031c4d2ffdb6e393ff3d6629eb69951b7b1777c44223d02258/cmake-3.21.4-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3e/31/bf557fb7fd67991e9a44622741d354783402b5489f1f0ad3c861f4037101/cmake-3.21.4-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ab/d9/8975d2a731abb5530c4c030a74dfd01bd73150399df4e421242909883757/cmake-3.21.4-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/ff/39/6c75be6578d363b6f5356ebf503bad2095ddf7bbdf27b97ffc1cb06ec922/cmake-3.21.4.tar.gz (from https://pypi.org/simple/cmake/), version: 3.21.4\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_9_universal2, py2-none-macosx_10_9_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_9_universal2, py3-none-macosx_10_9_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b4/ce/7f75178f3f86cee6588de9881686776967c0136a6206ca7bf943698cd774/cmake-3.22.0-py2.py3-none-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2010_i686, py2-none-manylinux_2_12_i686, py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4b/67/9c12f77b133c48459a7b6ec9d2b6db3186633f26eda1c8bbe246fb329590/cmake-3.22.0-py2.py3-none-manylinux_2_12_i686.manylinux2010_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/ff/6a/acb8c8a163872cf62e9938ecc2c3b555be794cecf74dfb645b4c2bdcad57/cmake-3.22.0-py2.py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.22.0\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/19/da/4eb99752512b819eb0c4babb922a964ffa6d7462eab3b6471145d16b932f/cmake-3.22.0-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f6/83/ddd0d6fe14eeb8ce9acfdbed70d4fb5723298fa531a8859f1ef8ca10a919/cmake-3.22.0-py2.py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/61/a6/2de59d5d40ef3988ba8b83721e72be607b3ff545d75cbfbff847eb58af83/cmake-3.22.0-py2.py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686, py2-none-manylinux_2_5_i686, py3-none-manylinux1_i686, py3-none-manylinux_2_5_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/51/f3/a90f5d9c4842a4e4281364104f45d77d7bf635e4df6d1882c4d877ab0936/cmake-3.22.0-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/22/be/328f6ed82e2fcfd41a168b6fde3752fab94851d7e7cd3b09d3527344f762/cmake-3.22.0-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.22.0\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c6/68/c63f1212043201baad9281589e60adc85b00819ae8975b814e20b9d9faa3/cmake-3.22.0-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6c/4e/a8eeb7a09e780a2328cf408b2cd40ef7e3e141c9180993f33f80e6ca6552/cmake-3.22.0-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a9/07/7dc34f152426885f124d41e686d3b5405b727a4d746a2596a0c18b3cc1c0/cmake-3.22.0-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9a/e3/2cc414a90d5d360db04f004fa398515957ae1759c3633ef7a098b73b29cb/cmake-3.22.0-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/26/67/c09f599f0f7163476703dfcebcec39ae8a86a29de54fce73959568d94e75/cmake-3.22.0-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3a/c1/421de0b99fcb9b01fe2531855735c9f66d82e4c16f082bc509a8c5ae6114/cmake-3.22.0-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c2/3c/3fe75d917d335f10ff90bc510c89c111d45aad65be62010074e6b516e984/cmake-3.22.0-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/3d/7a/4ef0bbda0ffd2875a44f443499ab491e1d85d515a291a05a6a1a740009f8/cmake-3.22.0.tar.gz (from https://pypi.org/simple/cmake/), version: 3.22.0\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_9_universal2, py2-none-macosx_10_9_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_9_universal2, py3-none-macosx_10_9_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/79/51/fdef2e3b1c2c9fc26e59e4318eec0036936a26c2eba08fffa0e3810801cb/cmake-3.22.1-py2.py3-none-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a8/66/78a6495dd564207ed5bd6821bd6499025c2f01f9dd7d87e1f865544bf71b/cmake-3.22.1-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_i686, py2-none-manylinux_2_17_i686, py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a1/c7/21ec115e098368b467c0e3071ae999fcbdcdc03518ad6b1d12014b363340/cmake-3.22.1-py2.py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2d/e0/8afb7a6265e764811d7a972d9e4fb5f1359e85c17c55bc8c546907cbcb05/cmake-3.22.1-py2.py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/42/73/64cd0801ed31ca0cb044bbd7888a50e83eb58a1ab2827f340bb275dac8cc/cmake-3.22.1-py2.py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/26/e5/be65a604a2af840654e5b874d389dcefea6c617a59c474e51846b259a3bb/cmake-3.22.1-py2.py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.22.1\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686, py2-none-manylinux_2_5_i686, py3-none-manylinux1_i686, py3-none-manylinux_2_5_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/98/59/646722a07cc090e0468144009b0b7e1ed0354e9b6bc4e747d8b18c727866/cmake-3.22.1-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/c8/80/60ba644bbbb9dbb16a545d9c1e2905a4f5a2ba8b40609b688a6b58f526f4/cmake-3.22.1-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.22.1\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2b/31/183fef1fcb582c2c5deb1c41adad59dde1c4b0091ec50ee0d905d72ee094/cmake-3.22.1-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/51/d4/ac13b7c6afe6638e58c728d75581e335c419664b640f119c4254f7a7ed59/cmake-3.22.1-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6a/a3/b56910b2c2e2225ebbd3992da2c7c6a256f152142a7fd0f65654fb144425/cmake-3.22.1-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/46/46/2c4ac493f257b14e84d01927deee718f53d2e56da3a93a62e73fb792fad3/cmake-3.22.1-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ea/14/882aca69986277860bf9c276ebb6289d816e23a35a3e42800482fc575484/cmake-3.22.1-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/95/21/c04a1f94684f1b84376ee4e9b01bc76eaeed2bc6f1607294b733440bb2cb/cmake-3.22.1-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0d/7a/e65cc9a4f27a931a4fa4354826f0b02d54abab28b791efcba67e5e397a85/cmake-3.22.1-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/8d/1b/d40c3eccaedef8e2d979d17a2a9e545df80ab8c9c00fa4efb9ac3df45b52/cmake-3.22.1.tar.gz (from https://pypi.org/simple/cmake/), version: 3.22.1\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_9_universal2, py2-none-macosx_10_9_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_9_universal2, py3-none-macosx_10_9_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/19/92/9a33374cdb464ec27b39b479cf6e3743d46840f790b6d55c537f5ffd0238/cmake-3.22.2-py2.py3-none-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a8/e9/7347b3c0c917cb86add95f65ac1cab06a739d72d14743f5be502986e2203/cmake-3.22.2-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_i686, py2-none-manylinux_2_17_i686, py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/99/11/15c1625a37fd37e88aa628feabee1eff002cecb59104f2be731cc11aa34e/cmake-3.22.2-py2.py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ee/23/04df403e560796260cf14180d037d2f886f6de02eb35aede3e896c1e4464/cmake-3.22.2-py2.py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ae/ca/ee496fca53304eec9ccfa4fcf2caf28e7556f83d722130cd72af6fb9dc9b/cmake-3.22.2-py2.py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/43/f7/cf42906411c364dbf60087a2d977b09ec5d0b87d3ba6be485fc031480f59/cmake-3.22.2-py2.py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.22.2\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686, py2-none-manylinux_2_5_i686, py3-none-manylinux1_i686, py3-none-manylinux_2_5_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c1/52/ed23d72a0910d3fe553d4c1b4c7cf4929dc64415d0be44277f684e344fee/cmake-3.22.2-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/1d/93/d143ec58bce0f138978238f3642c51b01523112c0af5fa1bbed14a5c8711/cmake-3.22.2-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.22.2\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fa/72/35fcfaad537c96227762286642be2eae216575735f870b57905bcadf74b9/cmake-3.22.2-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/81/34/490b3c6743773bde538bdd86d83e921730bcd9f9aa805b202db45648151d/cmake-3.22.2-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/41/21/3759a20e0a5974a8e848f5e5a70ea70bc477ec1f16db0d0e40f9a0055d5a/cmake-3.22.2-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cc/87/8a46fced9c88039ce32174d17c00b86c3d5e70276c08a868cb9d01848a68/cmake-3.22.2-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/94/49/6a4392c5a620b03c6d77d79e7fc84d14d3129fe40bfab045c259584e899b/cmake-3.22.2-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/05/a9/7ba62383fe3055230fe398894bde1534105303136dbf583badcb584a8118/cmake-3.22.2-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8f/2a/db8ca9077c97d9db6269f4feaea35679b0c1cc944a6bbfa913b5749f1cfb/cmake-3.22.2-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/ba/c0/b5eca19178da6b2fcd036bca1ec8b99a7be292059fc8e9aeffe3b2e96ca8/cmake-3.22.2.tar.gz (from https://pypi.org/simple/cmake/), version: 3.22.2\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_10_universal2, py2-none-macosx_10_10_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/99/b3/6cd82779fcab886947b3ae5e24982aa4099fa9ebd908365e6ac5f225d3a4/cmake-3.22.3-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/51/3a/8264f83ecee5795ef10c816336bb1cb077d6df5af60e38aacd2ebb1db032/cmake-3.22.3-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_i686, py2-none-manylinux_2_17_i686, py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8d/ec/fcef0c870ab33036b7678c8ff693b7dc9e29764d4a56de0d1a795abdbe8e/cmake-3.22.3-py2.py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4f/9f/ffffc78ec31c23bec03fc90f2f434a19afc767ec071ec65a03493e5ab323/cmake-3.22.3-py2.py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4e/33/d050463741af7b62cbf63e568081c041753c8a753be6696277cf693220b9/cmake-3.22.3-py2.py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/66/07/2ffd55bccc0c1a3b6621e4e6e03e1f1c44f89fb101b9d3b37137180bd522/cmake-3.22.3-py2.py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.22.3\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686, py2-none-manylinux_2_5_i686, py3-none-manylinux1_i686, py3-none-manylinux_2_5_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/56/7f/fb112300de15e147d6396682d7396dcd303f3f6a2b4072214a6f61529280/cmake-3.22.3-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/67/a5/fd3874578cbe98afdfbb06f25206876bb3d6c00b48498a96c8fc24128736/cmake-3.22.3-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.22.3\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a4/a6/b19f205ad7550bbef999cd8680eea4c130c953377d26cd2f9b1fb6feb62a/cmake-3.22.3-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2e/3d/4d415e22580a6245e270b97930eaead093c14e30ef406262ecfd34c84e76/cmake-3.22.3-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6b/fc/2aa6c28fd2a4b583b06f8993ae70c141a6cd0503c45e227eacf5c3c47d33/cmake-3.22.3-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/27/46/65650aa3a0ea048c5388c36baf94606fff7ff760e4752cbb8f165b1c5028/cmake-3.22.3-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fe/96/e199edc9eb6ea969bcce193f8c21166fefa2129e824580bcf45396a2404b/cmake-3.22.3-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/dd/4b/1c2751b114050cbbc8943f9122a3cece2816ab59a0e1717d73334e4d1dda/cmake-3.22.3-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3f/17/8b94d0aaecb4138234b08807b446ece8f2faa918114fe0a6e394bd792102/cmake-3.22.3-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/8b/76/6ac2819c82af2d37ec123e56ab67396aaf76652a60858d9e83e8db787fe1/cmake-3.22.3.tar.gz (from https://pypi.org/simple/cmake/), version: 3.22.3\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_10_universal2, py2-none-macosx_10_10_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/12/e0/f0017740792406d90a332ca86a47fa1bf622416cc91d9204635696d40ef4/cmake-3.22.4-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/61/85/28276e9a99eae57da177636eb35d5c31e7c8e712a32e9b42db9fbd09c90d/cmake-3.22.4-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_i686, py2-none-manylinux_2_17_i686, py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f9/9b/ea044fd69818c7b78f6a92b29a85c16a803fb87a4addf57ecdc7b8c06f00/cmake-3.22.4-py2.py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/94/6a/0bcb36415c0087407ab82157847794df32d453ebb3c60843955b03f83872/cmake-3.22.4-py2.py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e9/f0/1db578eb3721a5fbb3885cb212b977f8928c52d26c41421e3f28832a74ae/cmake-3.22.4-py2.py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/5e/1d/50c4869c0801d9fc056a0f4beb299dd141ab3055de45e7dea7a1a413d98e/cmake-3.22.4-py2.py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.22.4\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686, py2-none-manylinux_2_5_i686, py3-none-manylinux1_i686, py3-none-manylinux_2_5_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f7/ef/4b9f0cced74f31bc545c457e93c2352661d37b62f279ea74a4b9bb8c54bd/cmake-3.22.4-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/38/63/f68c7f7d7ad230cefcabb023a7776eb7196274fe8c7649e885391a112d10/cmake-3.22.4-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.22.4\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/28/f1/e5621f821929e9fb0721ee0b153bda0d8362bb12006bb020b027a63626a1/cmake-3.22.4-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1b/67/f57d5f6c5d4586fcaeeab0da711002900236d918c5d4176641c2fe8e6a8c/cmake-3.22.4-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/69/61/32aec43f9b9f33f3c8a47ba465f0d336296f13a6156c690d13ad51004e6c/cmake-3.22.4-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b6/16/5bf3b1522a350839158626dfb40af0afa7858c3bac2860fc6ccc2af3eb5a/cmake-3.22.4-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/86/61/5e7222f1eee533c716ec0ec744c76cc8cf2338d51a3bec973a44e5a643de/cmake-3.22.4-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/25/4b/4ac8ba9349f365584a4581eaa13f66803949ce22b3117a60470195ba81e0/cmake-3.22.4-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/05/46/63e020a4c04656c70e007df19434d8c0de03ba3a7a9af6e16ec2a9e96f0a/cmake-3.22.4-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/85/e5/74fcd803fe3a32e8bed53d51889313089124c3ab8fa2a6eeab5cbfba29ab/cmake-3.22.4.tar.gz (from https://pypi.org/simple/cmake/), version: 3.22.4\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_10_universal2, py2-none-macosx_10_10_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cb/e8/9a944179a17fb7d87fdbf2a4881937225da42387d399a715191e3bbf9587/cmake-3.22.5-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/25/eb/ff88ace0958d5c12d847c1b8da627fbeede0eee0456cbc98f6738e5c73aa/cmake-3.22.5-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_i686, py2-none-manylinux_2_17_i686, py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0e/25/6b612cc60e4b8f1ed9646382a95af64f0a8a9d7fc9cd7d6900e15c66f332/cmake-3.22.5-py2.py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/25/29/53ff7e193dbba96874b1645ed3c68fbcbcd6db10d9bbb0e8a5d87c7678ae/cmake-3.22.5-py2.py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/df/ca/3f943047da2e7b5959ebec36785e2ae42d0b03252e569a694b1ae599f610/cmake-3.22.5-py2.py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/24/fb/a4b0c6999763d559a2d1a3fe01b71296cef9d73e48c1241fa8dbed6edf96/cmake-3.22.5-py2.py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.22.5\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686, py2-none-manylinux_2_5_i686, py3-none-manylinux1_i686, py3-none-manylinux_2_5_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6d/6c/6bddb4ac8a28f3d10e803db58c4e5a88263ee69422d19c66b69fcab7f8da/cmake-3.22.5-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/81/c7/583ca8110d0109edea234a3e4fb71fed6f5b5f39603b26dd18245bdec852/cmake-3.22.5-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.22.5\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cd/41/ea85f3e8e46bf5fc16965fb0a69fc678058ee93f1d58484bfa257d9c58bd/cmake-3.22.5-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/12/6a/4d8335d4dbdabd15e77f8b8cb2a823dc1a0969df7e312bb3b22110126a5f/cmake-3.22.5-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f9/1e/6b1df058948fb8866cbaa2e3603c3a4dcdde2fdcd75eac26c953256a64fc/cmake-3.22.5-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/12/68/61668ec101abbf9bbe946bbf309c8b2b342ef89921d81658fc79b4390229/cmake-3.22.5-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9e/a8/3e08c5482fef381748c3727e4397fce22f53de315fecaad32d76114c1713/cmake-3.22.5-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/28/b8/75b6cc68337fbdb7a6d2af5996f2ed0fc17a63246ce546301d3eb9b11d2f/cmake-3.22.5-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/23/39/6be8c1bd91c0eca20a87a296a3348da85105e776450d28c223e3892f3915/cmake-3.22.5-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/e2/5a/f9c4e8166abce86d62c2a8966700976aca8c5f3aa696a5b8d8ecc3614db7/cmake-3.22.5.tar.gz (from https://pypi.org/simple/cmake/), version: 3.22.5\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_10_universal2, py2-none-macosx_10_10_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d6/99/95b986ecbbea9568a083a1d43e5491d79bb1d2f6e3fd7d4689365aa2b8c0/cmake-3.22.6-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0c/f7/ac0c487d1119a7c5119b02a0546e82385d96779125861d17c5e75d479603/cmake-3.22.6-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_i686, py2-none-manylinux_2_17_i686, py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cf/4c/b1246722c3d8576b970d0835216b8c66153dfa0a1cbe51282dbcf99db2de/cmake-3.22.6-py2.py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5c/e6/608243123648753225d0c17cc513de943ce65bdaa5cee58663a195e3001f/cmake-3.22.6-py2.py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/65/0e/76c573adb4d5d49013021d53457c0bf3e185b4b933c8fec4431352f50c9d/cmake-3.22.6-py2.py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/51/e0/fb9182958e9c07366f991cf75fdc899a8d8bca6855d47d97728f5fdb15b2/cmake-3.22.6-py2.py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.22.6\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686, py2-none-manylinux_2_5_i686, py3-none-manylinux1_i686, py3-none-manylinux_2_5_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ec/73/b00e838cb5d4e172081fe65419431b57a49dd1cdefd16d12ca6e848d09f3/cmake-3.22.6-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/35/b3/8e562250a00fbdca503e5102bf607f3e114c6121ec021040c205f34abed2/cmake-3.22.6-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.22.6\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a3/20/f1adec348b00129fc550a0ebd2fb09a0e8220114a90f2f3f166bf00d6185/cmake-3.22.6-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/30/31/1f8193eed688f7bcd0784d22afab25ad7786696208dba3af80a56727e598/cmake-3.22.6-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cb/db/e82aa91cb9bef33c88f5f30fc1464fc734112b1698e084c16d3b9d824d89/cmake-3.22.6-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0e/f0/ae44fbbb5994e5e1e38a6fcdc6a9b6043760a58ca0a9d5635f6d48cccb59/cmake-3.22.6-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e1/af/a64e049a4425c6a6bd710a7354c6af9895928587af2200685888cc255426/cmake-3.22.6-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/aa/23/f17a0828d97fb18da106ef8522e40d7156c3ee7ab0a4717580cf35655d69/cmake-3.22.6-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e2/56/6e7cba5a59af390a1aa326d1b3b03a707949829a3142441564b96bf829dd/cmake-3.22.6-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/39/53/ad70692daf079c8e1587b197e859d7a63d1cb8aa3085a3eb55674c44a0ac/cmake-3.22.6.tar.gz (from https://pypi.org/simple/cmake/), version: 3.22.6\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_10_universal2, py2-none-macosx_10_10_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/11/f9/1c82b41537d5005261d0520c862be1b45a016e0d3afaaa1902d126075bb3/cmake-3.23.3-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2010_i686, py2-none-manylinux_2_12_i686, py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7c/63/029870602bdaf5b5a9b80851da320a386848a97e4808704539f5a1cd7561/cmake-3.23.3-py2.py3-none-manylinux_2_12_i686.manylinux2010_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/4e/34/bef90f76e1ac66d4b93c5224c988b7c73564b3847776680f42b63d845d56/cmake-3.23.3-py2.py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.23.3\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/91/67/e7831ca4f24c98a543a84548e9cb585f8bccfcf25b1caa498231b17a2ea4/cmake-3.23.3-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_i686, py2-none-manylinux_2_17_i686, py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c3/31/4556ba51b7076c51c39aad9170798a42f093527af1abdc144078919fb558/cmake-3.23.3-py2.py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/66/f4/73d51c83856853ed08da511fa14766eaa5689d4d30a8f202342154a8f020/cmake-3.23.3-py2.py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f5/ac/7687dbcd41344f7eb2df0a40ae0870008dcc7b6e851ae7144a74d6336972/cmake-3.23.3-py2.py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/9d/95/863ef8d5a4cff72b217d7005124968276bbf5596882327c68d587ada9897/cmake-3.23.3-py2.py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.23.3\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/49/eb/5a4e3d963079f495526c79d3198ba1c3cf6bcb2b4f1aed63d2d88229b64f/cmake-3.23.3-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e0/a6/3026a687d800c9e37e763fe697e53a362aa7fd5d340c62972d6ff8ee9b43/cmake-3.23.3-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/30/70/2be606f911ce2c38fb3ba3721c73c2db891d31ef9b3b29521c1acafddfe9/cmake-3.23.3-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/60/d6/7ec8b4792397df05dc86f240ba8d0559c6e54cd477e69116274d13d176cc/cmake-3.23.3-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4b/82/67efbf59c2f0580a0202979e61f0ddf379e0e1a361076c7c7db0249a3043/cmake-3.23.3-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ab/27/a143d467498b35ba3285197a75b9b53fa5b0b9b2747f62a4f7db8b73b427/cmake-3.23.3-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1a/02/45d497c18f1e76a9117d443643576ec6567f18bd07a6504e3b39afb81c22/cmake-3.23.3-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/cc/d0/1b465685714cd6eafebebb690633a71ff0802c8c102383b482bf3b42aa3f/cmake-3.23.3.tar.gz (from https://pypi.org/simple/cmake/), version: 3.23.3\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_10_universal2, py2-none-macosx_10_10_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7d/78/67a0ba7f391d700890c504e12763a8eddc0b640ddb39dc49d0a9cac32457/cmake-3.24.0-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2010_i686, py2-none-manylinux_2_12_i686, py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7f/2a/2892e64e6fb1eea01bb6d222b8ad423d3c9c141e92de6d20db7ccad9f72d/cmake-3.24.0-py2.py3-none-manylinux_2_12_i686.manylinux2010_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/18/22/0c12dc845dc24a8a0955c5c3ee2d52d744640e26e9ac007b4c7b8f70d0bd/cmake-3.24.0-py2.py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.24.0\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3a/70/0b827a1ce4795c0321854e4b33214f6d993343979b86458651c94a5b939e/cmake-3.24.0-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_i686, py2-none-manylinux_2_17_i686, py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ea/af/5eacf1401d309dd000c53f4f26f9c283ac985178cff8bcfa219e0777db63/cmake-3.24.0-py2.py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/88/16/049eb89cd7f0ce9febf46db8b3980f222f703c5e7f1635e19fdbb72c2847/cmake-3.24.0-py2.py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d9/bd/a86db3a6c8f1d306aa59a777b39bbb9f3d9d5d55d03c74af1222e40edb99/cmake-3.24.0-py2.py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/9f/1b/32ef95aee23f0df25d2e9f1a5cbf8e7dadfa96689976e7e27b2a78a235e6/cmake-3.24.0-py2.py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.24.0\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/42/01/140f1d8f6a5c0d2f8fabaec1edcd4b32ad2a7f98e9ab0b84937e78b2ca5c/cmake-3.24.0-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6c/2f/42c7c7bb8d7a9be59593f18d3eebb145029f3e8b51a24749c9a5775e3682/cmake-3.24.0-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4b/dc/408d3dcbbaee6e01faab50df9d77e5fb40e5f1743c541ae1da2d7f6111a9/cmake-3.24.0-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cd/a6/c872b8732b30f55c9eb6680aeefd9b0bc3ce05348ae483b7bb794579ee16/cmake-3.24.0-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/07/b8/821a388bcd4244ed4193d87c698a125e31ef7ba82917430227ae1e847920/cmake-3.24.0-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7a/48/d29fb4122ce5fc30795a5a04c8c40fb65924f6bbf47db1fa92e36090e615/cmake-3.24.0-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/65/67/09dd22bf2822dd2f755ea06c6a6158611c5796c99135200ab78fbf639c8a/cmake-3.24.0-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/d5/73/af2f5ea9e946662fbe3da4393875eefa0580a7dea209a28136bf66a5d112/cmake-3.24.0.tar.gz (from https://pypi.org/simple/cmake/), version: 3.24.0\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_10_universal2, py2-none-macosx_10_10_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a0/c6/10c60a31c072c5f6b2de7795ad86f894844804ac2fce355a898d29f5aee0/cmake-3.24.1-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2010_i686, py2-none-manylinux_2_12_i686, py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4a/e3/068a22cc0f7f6731ff32b33c0f4ba9d53aaa6141c05daf1f0878d20c6737/cmake-3.24.1-py2.py3-none-manylinux_2_12_i686.manylinux2010_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/53/de/5a45a8572cc9bbbf6c4f0ee65f40a31c3b35b55bf79135b29766055c86b3/cmake-3.24.1-py2.py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.24.1\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/19/3a/ee6612b77ead11b3e4836a72d637b088bcc6711a34fe592537710b982c23/cmake-3.24.1-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_i686, py2-none-manylinux_2_17_i686, py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a7/d5/b94aa75978ebde32528c0a54d3905ea87d3d0e5027fe34208fd2d1bb1476/cmake-3.24.1-py2.py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/75/8c/83fed7a9a4f9dd702b30af3b9a5841f9210b7b923af125d4caba58988cd9/cmake-3.24.1-py2.py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4a/41/bf017053ac85bc1020865bdce58a152841379374b0407cb07274c75d62f1/cmake-3.24.1-py2.py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/1f/ad/f7908b705c77da10d25cd07bd0e67a7ce08f5c4cbab8ee65c64079b00ba9/cmake-3.24.1-py2.py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.24.1\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c5/d4/25c6095224953378264b0d93ef703e8e32ccadc422e86cd79ab06f6c5ff5/cmake-3.24.1-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/82/96/e7bd7433d38ff8851e839fbf9a24f48e849c3a600f76a6c10731a376c234/cmake-3.24.1-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5a/40/9550cca2b8ab4a203517165df4112c992027313003eea8d755b46baa5778/cmake-3.24.1-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a3/41/d3cf7d6ee8e7d23851ca2428f4a7d1cf80dfb097b7b6d59bd43cc9599595/cmake-3.24.1-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/37/fb/d3f433b62ca8bf3441feff4af1b86ad43cd7e620cd71b705b340ef29e5c0/cmake-3.24.1-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1e/3d/c7a68c3ec0bc0e7c0a9406a9e1806dc546019a70809c4bd2b13f47cdf336/cmake-3.24.1-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/05/f3/09199fb2ee8d5c58642e327a75535d62ebd8b6763678cde7fc0d6fbab572/cmake-3.24.1-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/4d/1d/384850073c75a60c67135e7ee85b03a9a6445995061f147d3463286cfbdb/cmake-3.24.1.tar.gz (from https://pypi.org/simple/cmake/), version: 3.24.1\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_10_universal2, py2-none-macosx_10_10_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/53/ad/f0fdb2efe96eaab8c91c045a0f5796d504e2ba81891fb4a5f2eb752148ae/cmake-3.24.1.1-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2010_i686, py2-none-manylinux_2_12_i686, py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0f/21/5105f9f85308a16e4836adbdab50d15a2ec5f3c0fc7837f2d9926d4e10ca/cmake-3.24.1.1-py2.py3-none-manylinux_2_12_i686.manylinux2010_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/ee/0c/d10e9d8827ef71e323dc47667a34e5c3d3bd0d7f1e56fc0574dc83befdea/cmake-3.24.1.1-py2.py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.24.1.1\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a7/53/d72cab8577e33d9ce965b0203283d09749a50420a33154c1c22980dc7332/cmake-3.24.1.1-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_i686, py2-none-manylinux_2_17_i686, py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b7/e0/8536955d6a7dd97b30f7892b663aadde7acc1b1f32c6d793c9e793b4ed31/cmake-3.24.1.1-py2.py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/65/4b/cd2b62c1507c28180c0415f63072c1d698efb5a88241693b37aabaf9ed3d/cmake-3.24.1.1-py2.py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/47/50/0c4763477f516e439a422e24cc4f4bae777ce005a3db040a8c47afe5ca0c/cmake-3.24.1.1-py2.py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/81/6c/bf01eeddc13812c14757458b238b083a1f53afd4318e8586733b9e725d8d/cmake-3.24.1.1-py2.py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.24.1.1\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5e/e0/2636f31298e58a5364ce761b4af8ae457a59728a31dc2974143fb98fbe9f/cmake-3.24.1.1-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e1/2c/11d3c5044531cfda01b2a63687d863e90a17c6b954cae7cda292232e0df7/cmake-3.24.1.1-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/54/f9/c50d29a8f01ea852afa8150f592e264fdc6fd78480a3de32d22a1c0afd7f/cmake-3.24.1.1-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/89/62/88d24ca19dfa15c3a9517c09c3305e70f1acc201c269b04d0dcde2cb28da/cmake-3.24.1.1-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e5/57/fd8510c78ee3cf12fb7d16dcc1a1ac993c23ad5ec702154f5c72b6de1385/cmake-3.24.1.1-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/77/04/034fef3c930b59eee2e9c3d8e2a38f555d48cf6082731d1f091cf96da397/cmake-3.24.1.1-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7e/73/d405feee62b947f59dbde838ab46f36853d194ea7b4adfc2234ed7aec7d5/cmake-3.24.1.1-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/9f/96/2167de63811f695859dfe0705103021e0b213c029a345c7aaec32403aacd/cmake-3.24.1.1.tar.gz (from https://pypi.org/simple/cmake/), version: 3.24.1.1\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_10_universal2, py2-none-macosx_10_10_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/41/cf/ffe666359c1fb8b5b382227c616d85bb9604b90bf562e4812a0f4e8c9015/cmake-3.24.2-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2010_i686, py2-none-manylinux_2_12_i686, py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/93/72/60f9432e03b0bbc08d3d02d60ed99f81fa24777ba044e8fd4c96d50b5a71/cmake-3.24.2-py2.py3-none-manylinux_2_12_i686.manylinux2010_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/ee/99/a691632046c434bfc98f2715c425fc0975149e843876326eec7530c1324d/cmake-3.24.2-py2.py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.24.2\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8e/69/63bfe5d849ca1277e24c53cb149f58c66f71c7e69e1457bb1cefdd333df7/cmake-3.24.2-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_i686, py2-none-manylinux_2_17_i686, py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cc/ea/1b14c1fb6c9ef0e3672e3b4bd5149b2394523fdd835fa17dddcd37b820c3/cmake-3.24.2-py2.py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2e/fc/801d650d7e49e9572683c9ded27efccb12e7246e8d5ce36014692935632c/cmake-3.24.2-py2.py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e5/9e/c2e197aad03a96a0f0fbb212a44069e6a16dfc6fba800c87cd03d964d53d/cmake-3.24.2-py2.py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/58/4d/dd86e59ef21bf66f8de9a74f0d194d494b41081c21e8f0bdd015c35cf375/cmake-3.24.2-py2.py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.24.2\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/08/46/d48a36659029d33de30672dfc2e54d3505e7a12a9b953b288d2e72cd389c/cmake-3.24.2-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/90/5b/d94f2f44769ae85466242c1bb5b192640f38459012103dba3d3f2411d110/cmake-3.24.2-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/14/10/010042fc0fb21041a8caab69b88f88a501b1af78de725dadc0638f01d923/cmake-3.24.2-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f3/ab/3a2867537345368329ead90f2e3de4b48a97dff3db55fafc88fc59346490/cmake-3.24.2-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/06/1e/b6d4455c50bdca3bcfe7d585156a2c469252c4869a88cd3ab60d1a3c1c0b/cmake-3.24.2-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fe/32/1c8f39bf130bc7d29b748aa5966708b6d26b0825f6ef0628754b07cff697/cmake-3.24.2-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/67/b1/f09ec8fd4d40742f22ecf2147e08e3bad5c382b68e036472fe009446862e/cmake-3.24.2-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/c9/9f/fba57ac9b064a941f91fa788b0af1d7b99630e12534157a027bf022f2aaa/cmake-3.24.2.tar.gz (from https://pypi.org/simple/cmake/), version: 3.24.2\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_10_universal2, py2-none-macosx_10_10_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/94/db/8e63bbc9df1122940a9b0bb598efea1d34765114ba5070d09ceadc18f718/cmake-3.24.3-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2010_i686, py2-none-manylinux_2_12_i686, py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/61/82/241e63d72e1950485b9b7a055508159b95d45592f566499329946abbfc97/cmake-3.24.3-py2.py3-none-manylinux_2_12_i686.manylinux2010_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/c0/cd/57a7f062d9696cb35eff19c383a68fd408b2382133f88ac2aa519166c5b6/cmake-3.24.3-py2.py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.24.3\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/09/c4/297c2a00a4bc576a1e49617d97a176f5b036da5925d5219341ea956ae511/cmake-3.24.3-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_i686, py2-none-manylinux_2_17_i686, py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fc/e6/70720a552f204fe9d1a63950624a7366394b11334df85d9c68dc6fa4d858/cmake-3.24.3-py2.py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0c/29/28f89fe9156960d8fd5b646e0ba5b99a1b4fa8da0ab534695f3a2057751b/cmake-3.24.3-py2.py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/da/95/138512676d8eba7de4d7a2b6a8191f7de6fe38d9feb72edffe8cbd93aa4c/cmake-3.24.3-py2.py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/25/e0/1ba4a2c2ae83996c456250146cefa32e1fcbfb76446c2ba9d8aa42514b4a/cmake-3.24.3-py2.py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.24.3\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/58/36/44c06aeb4b12ee916e2f38b333aff63012e2c5951a5a14dc21a3bffb50b7/cmake-3.24.3-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/38/22/20660294b157daab00076c248998466a497eba0dd58cb7a40235aaf0b671/cmake-3.24.3-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0b/12/6b31fc0c738e005379622c9c7f8d649f0d2970a23974030d1081b98e3161/cmake-3.24.3-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a2/a6/36b71af6e4127f2d97ec31dca556c700ff2162a19ff8632d67e9d87f7540/cmake-3.24.3-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1e/b0/d544cef1a1a0da2d0c2f848a726f9dbb44253bcf9e96218f081d8c84bc92/cmake-3.24.3-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/25/4b/788ce2c23a2933989489cef8684a630c8ef9cc729040961ba8d256c0125a/cmake-3.24.3-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4f/de/370a899ad9415473676bd25f625ef7df5c7322ec972f35363b2d048847b2/cmake-3.24.3-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/fb/ec/9fbf2379c4e0d7ac8250e1d5be080f9781fb7e19790a75dbc8cc1981d010/cmake-3.24.3.tar.gz (from https://pypi.org/simple/cmake/), version: 3.24.3\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_10_universal2, py2-none-macosx_10_10_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/20/2a/f0149085701f8e84ed50c27acf3c05120e5a5326e80daf1c2e017d3b4426/cmake-3.25.0-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2010_i686, py2-none-manylinux_2_12_i686, py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d8/db/3954ffff64a02487a11f10fbf7d38e0a8648ab5fe917cae5346da56effb5/cmake-3.25.0-py2.py3-none-manylinux_2_12_i686.manylinux2010_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/66/45/9502dc65a18e90ccd058d7ab3f6b94d81ec62eacf3a438cecbfb183e7868/cmake-3.25.0-py2.py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.25.0\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/04/9f/45fbd61a470af6ac41cd150c76cc113378cdb34d305e8487a07909eb7c3b/cmake-3.25.0-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_i686, py2-none-manylinux_2_17_i686, py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/10/27/cf17c5f3aae6b1034f9c26ba75b9caa099241f1a1fbdf48ca17d4b9bd92b/cmake-3.25.0-py2.py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/06/70/1640c4ce59262a42dc1c7acbbe1a7159b76d442717438217e8f343b9958d/cmake-3.25.0-py2.py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f5/2b/22a481055d6d53c9ae2205877a275ce36aa0dac4068fc9ca53708a9615ca/cmake-3.25.0-py2.py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/43/fd/298b2055e718cb1eca005b5e5e739564cc68b12becd35fb32345e9b18faf/cmake-3.25.0-py2.py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.25.0\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ba/3d/55ddaf89c46afcd3ff385eca2cb9406b52aa4f856806b7ded785528b04c1/cmake-3.25.0-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/56/b9/ab3d7ac2267f9c665e9c60493cc69cdfa5cccb1f9ac5ca1694a674762b4d/cmake-3.25.0-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ca/2b/209e05abd3e2dab20b30595ceb9c77e040f0681394c8988611858d881e10/cmake-3.25.0-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3b/0c/35c683480ad71ad3dac04c624b0b3b59f43654745cb655a04f25ba42fe1d/cmake-3.25.0-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/18/64/23cb8f0e4794d5b9623fd5c0b92ac72600d076cb490fba118c43bd3008ab/cmake-3.25.0-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/98/3e/6030edd3408325a303f60a6b5ecab5db79392242754eabda92ff3fae4d25/cmake-3.25.0-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4b/29/15b4ab83da6163d4ca5b97b4b35ae6596c2ac68c85519baf6730c15acbf7/cmake-3.25.0-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/e9/67/3d545c3a706bc427b1bd2a9108e3986dfc8c1450be0da8149fe591902875/cmake-3.25.0.tar.gz (from https://pypi.org/simple/cmake/), version: 3.25.0\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_10_universal2, py2-none-macosx_10_10_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6e/0c/8a4ba1841436e5fb505bdb98f5194e0147c80d49dd69c4e24774ba613ba0/cmake-3.25.2-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2010_i686, py2-none-manylinux_2_12_i686, py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6d/19/b4ac60d7f20926f1127625e04c2fc0abbea1d0bb6c02cd069870e62b9cee/cmake-3.25.2-py2.py3-none-manylinux_2_12_i686.manylinux2010_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/fc/14/d5d60c19b90749a93ba6c6bb7f53754107c33573a103e6c162d7c7b3aecf/cmake-3.25.2-py2.py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.25.2\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b0/54/6a866cf7b4e864adf6271b3dba714242ea2d892ff3efa9b5aeeafe0b9fc5/cmake-3.25.2-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_i686, py2-none-manylinux_2_17_i686, py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/11/6e/aeeddf2f5b16542b6a30ceab4896421e8705d8e9a9296dba79395db11b00/cmake-3.25.2-py2.py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c0/40/a390b1fae90dd64f2bf4c1edc65092612c1ff35984f8b181af93819c40c1/cmake-3.25.2-py2.py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/39/0b/0e9e4d8dd598b24ab9637ac97dcd835431803177486b17358d5b3a75eb54/cmake-3.25.2-py2.py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/1c/3c/b6503e5915773c293482fad193dbfd8537eb7740432692cda0267b8dc957/cmake-3.25.2-py2.py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.25.2\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d3/34/fa268296c73ccc80b415c7da69f3bbb8b32852d530f6592ab208012ec88a/cmake-3.25.2-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0a/b9/ae20873365ef8991f329d2a70f8ca90e0fa1d19957d1a3a39c46a64596b1/cmake-3.25.2-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/57/b6/eba4ae0a9206957fbc5d1cbfccec4b15720d6f25d67987c76a4f28e51e28/cmake-3.25.2-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3f/b2/cc12aec864801ff326b91114a349071e0232257297ca4ce3686b8ca657db/cmake-3.25.2-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1b/e5/3511cd1285a8fcb5c17142553f0cd3203458e35b4b1a66ddb3c2a8cac94b/cmake-3.25.2-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f2/e0/b3d9d35a1c290e319dc787fd65f100f968c846314a3b40fab91c51d15274/cmake-3.25.2-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/36/18/ec180605f3515ca19919b81d91e74efea2ec465bc94ad298af349e9dd648/cmake-3.25.2-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_arm64, py3-none-win_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9e/62/e71f3192d86fa361698f1c46c8c6ce06182ac17bbbc827de546de772f2fb/cmake-3.25.2-py2.py3-none-win_arm64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/fb/e1/b8121035216cb41c3f119e887f8c831b325bc31e63ee95d94d76daa831f9/cmake-3.25.2.tar.gz (from https://pypi.org/simple/cmake/), version: 3.25.2\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_10_universal2, py2-none-macosx_10_10_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/99/ef/d086c658b47d19b738850579c9ecc05c6730b8afdbb05402fae6ab52c45f/cmake-3.26.0-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2010_i686, py2-none-manylinux_2_12_i686, py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/41/3d/2e80cec75640cfa1f5472e48cd1b449b639b5ad758f8c27d116016571d15/cmake-3.26.0-py2.py3-none-manylinux2010_i686.manylinux_2_12_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/17/5a/72a3454e31b93d5718a97e3188536849f91993a9783c301a8101b7400c45/cmake-3.26.0-py2.py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.26.0\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/39/6a/e6bfa8b78b876184c1afbb7b7a51a6b1335b00c6a3242b1e12eecce81649/cmake-3.26.0-py2.py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_i686, py2-none-manylinux_2_17_i686, py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/40/a8/c4f955335e0e2f11a02f29de9a80155d1c371d127ff114ee350428731b97/cmake-3.26.0-py2.py3-none-manylinux2014_i686.manylinux_2_17_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/83/d3/f8be62be2274c178d50baa9751525d1da07c3d10518190f3751f49daa25e/cmake-3.26.0-py2.py3-none-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e6/8e/0050c372bfcd0975494d70d685b298fcf6367ff67af5dee1f5ac2c516cdb/cmake-3.26.0-py2.py3-none-manylinux2014_s390x.manylinux_2_17_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/30/73/8cf2dcf5715824fe147b411f03d6d0144248e7bb0e3a1de4fd1824f8efa0/cmake-3.26.0-py2.py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.26.0\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/38/2c/ecf580d95b1743042e6084fc7a0b3d5b8a77e3792564b48df83788652516/cmake-3.26.0-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/24/b1/bdbfd6b7cf788ab78b5acadd8245dcf189effe9c68272dc59ebd0bd6304b/cmake-3.26.0-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/15/c3/0446b15fae151a7f372c3f88c789f755f46907cc07f8f62211ca21325573/cmake-3.26.0-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0f/91/547b5b32fae409195cbb6bfd8e400ff1ffda3f174f154fc98cf1048c3807/cmake-3.26.0-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4c/94/469061ba9d2025eecca4c40a4829c220d68acc85dca70b025d73aa14f1a8/cmake-3.26.0-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1d/0a/8211fe8ef07d4c89d64af35367d71696ed584480fea926a53f2a59e00b92/cmake-3.26.0-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/22/80/ef79cbc1aab3de2da49aee6225a73609c0dbc1dec80c0daa4dbdfb9ce894/cmake-3.26.0-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_arm64, py3-none-win_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d1/51/c016d42094e9d8495ecb6c5d15857d5e9702fb1969a16848a87ef190fe8d/cmake-3.26.0-py2.py3-none-win_arm64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/ca/f3/9d425d6c1695229e2d7690e9300b646ac04e6b869c73e47f0a29869e2a01/cmake-3.26.0.tar.gz (from https://pypi.org/simple/cmake/), version: 3.26.0\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_10_universal2, py2-none-macosx_10_10_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/01/52/2cbd61daebdf18dd76d531c29c91c280d4811d714ba91b8a4beeef39e8dc/cmake-3.26.1-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2010_i686, py2-none-manylinux_2_12_i686, py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/61/0c/a8a5a4241ccf70d87ee33aa32ccd24d6d4320d0a585337b4b51e693c1325/cmake-3.26.1-py2.py3-none-manylinux2010_i686.manylinux_2_12_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/55/49/7183cf8efa98e74543589c0674f1856e927ed61a3cfb995e58811ad854f2/cmake-3.26.1-py2.py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.26.1\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/60/ad/cc88440346b3ae8d4c2155f374e4c847af986b6909f896db700507b0ef58/cmake-3.26.1-py2.py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_i686, py2-none-manylinux_2_17_i686, py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/51/ac/1ebe6ccc02d52b40dc523662c3355ca36ef1824ed1a8a27f4e2872e52313/cmake-3.26.1-py2.py3-none-manylinux2014_i686.manylinux_2_17_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cf/8c/fd85a3fb989e738fbccd2a98fba815346b111bcf10e954ec36cad67abaa8/cmake-3.26.1-py2.py3-none-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b6/cd/4a107c900735f5ae5d8feae5342d80a213fd5541d798c70b635039a07a80/cmake-3.26.1-py2.py3-none-manylinux2014_s390x.manylinux_2_17_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/b0/93/74245e24426bd870ea56006be302805ed0bddb50e52edd700e5ddbd259bb/cmake-3.26.1-py2.py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.26.1\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/94/86/7786771a65d7f99fb1739503c81edf764d0d50760076c7f39edab3dfdf4d/cmake-3.26.1-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ee/8a/391cb48c26ad325ec0de595a3592304280105c23497a4c6cf79caa80ee42/cmake-3.26.1-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/14/bc/4298f04ed36cab9d254af825cd7c021535de565e8758285878e9eeb56c1c/cmake-3.26.1-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cd/e6/dc366cfec16151547236205bd88063118a89c5573ba9334afe9727374772/cmake-3.26.1-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ff/8b/d55ce095bc2a31ce0a820e8b50260def18d9a2f1e312632e8ae02ec5af88/cmake-3.26.1-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/02/dd/8d1366a417c51928c0c19991b8c6803c63abc7c1fd07f5ab7639a344ec3b/cmake-3.26.1-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/47/08/4445a965f6fcbdda42556fe999d0465d1c288c4d2743e076704adcf7ea44/cmake-3.26.1-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_arm64, py3-none-win_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e0/62/44e120a0cae43775c2aca6b0e7d9f5a6def8296599d65f0b8f0030506ab0/cmake-3.26.1-py2.py3-none-win_arm64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/60/58/7e8a67c5d080c92491e17d7e6ad6269920eedcb3b63b76cd40a84931f691/cmake-3.26.1.tar.gz (from https://pypi.org/simple/cmake/), version: 3.26.1\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_10_universal2, py2-none-macosx_10_10_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d3/83/127f8bda3b1eb7ba3218c345767846b985074af4228cb914dc7759404f58/cmake-3.26.3-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2010_i686, py2-none-manylinux_2_12_i686, py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/91/9d/52fc33c5a218059ee07d618db57b53fb53caa79bd79c162574037a4549d0/cmake-3.26.3-py2.py3-none-manylinux2010_i686.manylinux_2_12_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/84/42/b96417f224e91ccb029107897ef9741c6beb5a5d16b22ec55c7b4a0e3c0a/cmake-3.26.3-py2.py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.26.3\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/58/c2/a0cd5d3fb2c72db1a5364afa44e0d4bfc7fb08cd29dc1e7e009c4518f16c/cmake-3.26.3-py2.py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_i686, py2-none-manylinux_2_17_i686, py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ef/b3/2bd47d195c39e2ab5faa8dcb629f54ff45c488b5925de95237dd6c85e7ad/cmake-3.26.3-py2.py3-none-manylinux2014_i686.manylinux_2_17_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/81/34/6e1c878baa29cabd7b7fc408758de5a336c6b1138da4b39561d654d5abad/cmake-3.26.3-py2.py3-none-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/13/0a/1955a435d923861653f19668d1d92e439341bdc330f6c1bbdb9db052df89/cmake-3.26.3-py2.py3-none-manylinux2014_s390x.manylinux_2_17_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/1d/de/48d485d12285cd53e322fb7bdb263778820984d4be54c2bb2fb5eced5e87/cmake-3.26.3-py2.py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.26.3\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6d/18/840bf416514261b94aebb74a5cd214d1d527ec95f8d50377c9f27a38f0de/cmake-3.26.3-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/19/75/97698dc7de31a874bfcc986c1660736bbb368ec173b04470280683a4cf6e/cmake-3.26.3-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7e/9b/f44404df371f48a88a6b5e823fd9ee4428736addac5fe06d5f5d9c122bff/cmake-3.26.3-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ca/91/4184f8647284f9fe502da080a0b214003873af93fab8433e2c3846ad7187/cmake-3.26.3-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/04/e8/3720910368198585000e8257717d970ca3d17ff420ff822246a70d8987db/cmake-3.26.3-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c7/bd/49ff3f882df89e153e7359a86f60fb1519fbce5e30ce48a03d560cbb9248/cmake-3.26.3-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/79/86/193ab20e5efa3ff232830a9b1d898534fd9a323c1be34cdb4da27a8b5070/cmake-3.26.3-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_arm64, py3-none-win_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e9/dc/f781d6986b4e0abc05727e01dc3d728790e41d1adfdbd68d0e8fb34ebfea/cmake-3.26.3-py2.py3-none-win_arm64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/d1/ef/c44544c8cea1e3c43a7c5c5dc69d3c18ab1308a56af75cac29eb0ea73cd6/cmake-3.26.3.tar.gz (from https://pypi.org/simple/cmake/), version: 3.26.3\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_10_universal2, py2-none-macosx_10_10_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/48/1c/6314e2708a0e12b121cb5f9acbee236f53246e488fb9e69a760a9d5b4529/cmake-3.26.4-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2010_i686, py2-none-manylinux_2_12_i686, py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d3/70/f7665872008908aff9b9c00e9cdce436058291a70a6a635689b90f622fa6/cmake-3.26.4-py2.py3-none-manylinux2010_i686.manylinux_2_12_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/e3/3c/dedc020f8f7f1f4188564a2456e1e6e24148e995ce97a62dd6ebb275bad4/cmake-3.26.4-py2.py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.26.4\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0d/41/85549e9645097cddc7279886eafeafc7462215f309133ea2eae4941f9c35/cmake-3.26.4-py2.py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_i686, py2-none-manylinux_2_17_i686, py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/48/78/104513c1695c98e95facdbfc3c089efca10fbf0f715ae44bb2a43c0dc2e4/cmake-3.26.4-py2.py3-none-manylinux2014_i686.manylinux_2_17_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/03/cc/eb81633751b46825275abf0cac20c8db16de08335b3c4cbc2102350a22f5/cmake-3.26.4-py2.py3-none-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c0/13/ddf174bb9de96c49cc302d167c47d61ef2ef9dc7b1931e754cbbcd0e6544/cmake-3.26.4-py2.py3-none-manylinux2014_s390x.manylinux_2_17_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/b5/3a/0d5889762ec82d3c556cfab075e6cdbca06dc5cff55436950152d63bb194/cmake-3.26.4-py2.py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.26.4\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0e/bd/53bd29133ad9e84af7d4bbe6312abf4cdd1143f39a4b29727ba1d6914e11/cmake-3.26.4-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a0/32/6e65e305c9e8973f7a3d3f992be817736b8206c1ed03033f5da0a5df02ad/cmake-3.26.4-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/dc/83/4c4bf54b874241ebff53d214a96d5b30314c65b6640c603393c9627cd534/cmake-3.26.4-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cc/93/ad4136831157d78bf32baf280a573b5b696c24b69c9ea60ab601c2de17b7/cmake-3.26.4-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5e/84/501f9f304b714f1ec09b42899a45ff2d0122bc8dc5c075b5e489c299f046/cmake-3.26.4-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/79/f7/899657c4d3b4d88cac49978133256ad6a0fd9c90eee11ce11de82b7ba099/cmake-3.26.4-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/66/c8/997eab3e90f030d216a0ccacfe6f4c153f5108784d1b2f41b61ba4deadbb/cmake-3.26.4-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_arm64, py3-none-win_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/49/a7/a103cae38c1cdb3a926d030aa91f93631c92cc5944b97faf7077c9b4d41b/cmake-3.26.4-py2.py3-none-win_arm64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/8a/a7/da765b3f525ac9ab34e1fb700a4b95307ba33bc408461714b61e0938dd88/cmake-3.26.4.tar.gz (from https://pypi.org/simple/cmake/), version: 3.26.4\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_10_universal2, py2-none-macosx_10_10_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8a/2b/042528c0ce76d53ea4dfa305048e4f9914954421188c1f006c15b2814a0b/cmake-3.27.0-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2010_i686, py2-none-manylinux_2_12_i686, py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bf/5c/af9d062dda09f3f763336af9b1b148d1dc03d61aa99c010282489c896d6a/cmake-3.27.0-py2.py3-none-manylinux2010_i686.manylinux_2_12_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/03/36/2b154a089fddf951304a1454010ec948f16f7bf014890243c7eaea50f6c5/cmake-3.27.0-py2.py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.27.0\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5f/b4/a5a8fcd36287d38eb93cdab6a42520ec60eae760d1f92536c330b826eae1/cmake-3.27.0-py2.py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_i686, py2-none-manylinux_2_17_i686, py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3d/13/75b5687c91364515eae0cf783e557cd34f210228f4026aed841785e73488/cmake-3.27.0-py2.py3-none-manylinux2014_i686.manylinux_2_17_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fb/f6/5eb9fded8587efab4bba0a1983844472cccb5dabe23e37dd56025fb6644a/cmake-3.27.0-py2.py3-none-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/82/a7/f7934296e769f228e4220da04d6c13ae17c9d10160b9dfa705ca687d63a8/cmake-3.27.0-py2.py3-none-manylinux2014_s390x.manylinux_2_17_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/14/b8/06f8fdc4687af3d3d8d95461d97737df2f144acd28eff65a3c47c29d0152/cmake-3.27.0-py2.py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.27.0\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ca/ad/51a16998ea339ad6129bcbdf916c8a4e21ae407e02719e18abfba5a560b6/cmake-3.27.0-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5b/3a/69a9796bae112964085c2ac6cd1b7f93567d7c160276976cbc0d04e217c4/cmake-3.27.0-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/da/4a/ca7595211362e499da6420f13a13d1b7706ea4617ebd0fe42b7b8898f7ce/cmake-3.27.0-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b4/aa/03a34e6e819550e46eb3536ef1221fa837188b069ea949d9b05e7f0f91d9/cmake-3.27.0-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bd/b9/1ca9d7b8e521634ab35ce30fd6118ce84ee99ff947c5c3ae6b4b8fbd13cd/cmake-3.27.0-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/74/55/4c1140a800616735c5388994bfd1d04deb2c5b60aeba2a0bc467189b0479/cmake-3.27.0-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/78/cf/42d206fc2679902e9408688a6e75215215e7781faf88653b2738c599e70a/cmake-3.27.0-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_arm64, py3-none-win_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/95/8a/0b0f306bcabe5eec1fecd6e520ca4886976fc1e8e9335fb3b60fb4c351ca/cmake-3.27.0-py2.py3-none-win_arm64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/26/30/924ebe4c9b4fb65365b89542f4bcf681bf34c48230140ab02e5bd7e898e8/cmake-3.27.0.tar.gz (from https://pypi.org/simple/cmake/), version: 3.27.0\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_10_universal2, py2-none-macosx_10_10_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f6/58/780c8ec6c0f274a4ec9dc0a352c9791618f98eb6f3a93ac52b23a995b520/cmake-3.27.1-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2010_i686, py2-none-manylinux_2_12_i686, py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/58/88/9a384f0c3d1e6dfe87e5a6aa6afc8da28746468082d1cb487cf7e9c64b25/cmake-3.27.1-py2.py3-none-manylinux2010_i686.manylinux_2_12_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/02/73/cba5d0f2c07e70177551f0a275f9940aea548401d31f2473349986ebffda/cmake-3.27.1-py2.py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.27.1\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/55/8a/544882be8137b16e5a6f7a213fbe88b1fc873dd52eb08b103c93ccb77e5e/cmake-3.27.1-py2.py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_i686, py2-none-manylinux_2_17_i686, py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/85/34/1d94f89ac3b7ad7c422adf0b60a95b8a0e3cff923e11a4fe5d97375f1bdd/cmake-3.27.1-py2.py3-none-manylinux2014_i686.manylinux_2_17_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2d/7d/62a7be5d62bdd9f4d8d03bbfc00643aed1c3a28e6c91c288541e2d858f61/cmake-3.27.1-py2.py3-none-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/24/aa/7e9b594444ddfe07c6c1a7e980cf066c76fb0c2271ddeddceeb743ecd0cb/cmake-3.27.1-py2.py3-none-manylinux2014_s390x.manylinux_2_17_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/69/5c/961fc973ff91af8985c3290a80d169bb5c0beb083593c8614eb2ae18fab3/cmake-3.27.1-py2.py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.27.1\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/aa/4b/0c81d9ebf0ce769ee6a2eef5449ad45fb99cdaaa1c7ed6d2bff4e0ea2885/cmake-3.27.1-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c7/db/aaaa280ce1c6efe0a75444392f58fae14b7e5ee0e727314ccaf014df0985/cmake-3.27.1-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8e/49/90b960933c0e267e948605c5d18d07418b29d79fb6006ce37154c998a601/cmake-3.27.1-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/10/f0/3536c27a701d5171d536230b1d4de4e73723276fb82cab117f1d90bba61b/cmake-3.27.1-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/19/4c/f1ff410bfe66894cbe8f85cc1c9513b084359e981bf6915d1a594a9a9553/cmake-3.27.1-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cb/1e/5547446642a7c76d63f2fc28ec95f561918259935fc0d269b0c129464c37/cmake-3.27.1-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/00/64/5ca49f8523ca41deafc6d0bdfb40cfa8f8f3c2abf69de141f69f28791884/cmake-3.27.1-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_arm64, py3-none-win_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/09/ab/56c4337e1ba6d367ffb42888bcd0566e1d3c471710a6bc90b7ea3460e72b/cmake-3.27.1-py2.py3-none-win_arm64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/42/6f/e7e9badcc357f3aafa7007b3515511137c58b36b782e9147fa75be0eb8b6/cmake-3.27.1.tar.gz (from https://pypi.org/simple/cmake/), version: 3.27.1\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_10_universal2, py2-none-macosx_10_10_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6a/27/a1b63d753ccc1dbc72ac6749762428c4a56f3f76eaffbf69316735460bef/cmake-3.27.2-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2010_i686, py2-none-manylinux_2_12_i686, py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/32/80/f9fc1f1cdeb7a95821a6ff0ccd553e15664011e46395e2055221be9e0ce2/cmake-3.27.2-py2.py3-none-manylinux2010_i686.manylinux_2_12_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/a0/27/82810eec04938b1174a2f9dccd67d6abee0db2d49035ab779a585cdf314c/cmake-3.27.2-py2.py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.27.2\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7d/40/cdff9a606e48aa14dc8c3989a041f21d646f655f07abb221dd52ab816244/cmake-3.27.2-py2.py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_i686, py2-none-manylinux_2_17_i686, py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5f/14/1879145a6b2257004827000c10c200f93e2ec9cb138783e0de62afb0d0e5/cmake-3.27.2-py2.py3-none-manylinux2014_i686.manylinux_2_17_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/07/73/adbe133b5f110e44333b0745ea4bb68808be19f81d7d387376636b6b0303/cmake-3.27.2-py2.py3-none-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b2/85/2e8f69730ba97d8a987527fbf946b166e0a4893aa11cc35da876cdd59cd8/cmake-3.27.2-py2.py3-none-manylinux2014_s390x.manylinux_2_17_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/2e/51/3a4672a819b4532a378bfefad8f886cfe71057556e0d4eefb64523fd370a/cmake-3.27.2-py2.py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.27.2\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f7/15/993bd392a85d8285633ec16a3c2849e81956a25897b5dd9cdd279aecf077/cmake-3.27.2-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/95/f8/8fef6561f010b2f99afb24da3fa7596521442aeca4b419b2ce3f2d6a63a5/cmake-3.27.2-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/54/a9/d5f350fa7688386364be8de5aef7009924aa15efa87cea1f2b1f4f968f05/cmake-3.27.2-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e3/4e/f89a453c60718279ea56c6ee3c13f3d4f8785bd4de40bf87b0481cdf24ca/cmake-3.27.2-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/70/3d/c3cbbbd0beb80a503f3549bd77ec6a609feb2f07d393a6f1439124987d10/cmake-3.27.2-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/88/a3/d4b256d5ecd5b2f5af2a40898f01ff143e26c81dcf3a6d4ed631efebcb06/cmake-3.27.2-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d4/73/ea47cc01e712ab804f1e40840ee8c5243cfdf73d34497cce27fa5d66a82d/cmake-3.27.2-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_arm64, py3-none-win_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b8/83/62207b0fe86aec3eec536df0f609b0a300c327d0dd6360b52bd9111837ab/cmake-3.27.2-py2.py3-none-win_arm64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/bc/0a/e3bc9130ab83c311d6816d04718a13b07fdf3d8e8cbc95930efb9622ec43/cmake-3.27.2.tar.gz (from https://pypi.org/simple/cmake/), version: 3.27.2\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_10_universal2, py2-none-macosx_10_10_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e5/e5/d89dfc1fe5dc7102a0ee1669d4dada6638a3e1ca413a0ef8cf674dabd4ca/cmake-3.27.4-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2010_i686, py2-none-manylinux_2_12_i686, py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/92/4c/59d4c77b0771cf43ebd6937cbc7e0f32931bfc7dc9cf63d87bb2b0d86d54/cmake-3.27.4-py2.py3-none-manylinux2010_i686.manylinux_2_12_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/06/a9/3587953d197033cfb8e7aa0c5dea295bb6e3e9c47f2acfeea4a4c8721897/cmake-3.27.4-py2.py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.27.4\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a8/2d/172f2dacdffb3c31e16c9b0b07681b4043914fbde754baa0278963bc1df0/cmake-3.27.4-py2.py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_i686, py2-none-manylinux_2_17_i686, py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e8/13/ce2de7da626b1302979747291da7ca3cbf8a8a802b372bbfdc16800ae15e/cmake-3.27.4-py2.py3-none-manylinux2014_i686.manylinux_2_17_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d0/52/7ffbd6d7384b62c290038f0c5c950177572ed85c7860840e78901c1be461/cmake-3.27.4-py2.py3-none-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7e/13/9dc2a5d9982bd7c73ffcce9cdc936ec8894e192fce82d038d9be4c0370a9/cmake-3.27.4-py2.py3-none-manylinux2014_s390x.manylinux_2_17_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/00/fe/88709278867098daf6e33d75802a2bcd0e4726108c3e037635aa1d50c791/cmake-3.27.4-py2.py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.27.4\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/72/bc/a73f94bc3e0b6e685cf871affaf3f08149a0dbbd6108d213ef699e59c11f/cmake-3.27.4-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/31/48/795dc32a78394a9da6418c37f15a51e4a6ce0b44982c603f0bdfbaf5ec5b/cmake-3.27.4-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e4/bd/7a5cf18234587d05a68749886a2cd3bec6be1ae8fcc3e22c9cf1f2cb20bc/cmake-3.27.4-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/98/46/b163fe50e4ef76d70314682215fa0c5aabc672cab7815ecd23e7bd0e0016/cmake-3.27.4-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/57/d6/e3e1e13dc3d4f9ec98ee1fb4002c88a131e39025a5565c54c7ad5c3f209d/cmake-3.27.4-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/86/e8/df2cf4c7573ee8ee8ae338092202a33bdc0718c184d4d09bc272580e01ef/cmake-3.27.4-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cd/ab/56694baf81d2b76b032a49b8da6a8c4f9f6e84aee9e2766eff604745cb1f/cmake-3.27.4-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_arm64, py3-none-win_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d4/ba/855e462ef4d75a855c4ea32a38af99718a720c609748c288d4f16acdf1c6/cmake-3.27.4-py2.py3-none-win_arm64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/11/b3/c07ab163f445128fa8483752feb5b211cb5566050f1e7acb63035e8669c1/cmake-3.27.4.tar.gz (from https://pypi.org/simple/cmake/), version: 3.27.4\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_10_universal2, py2-none-macosx_10_10_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e2/e7/a10295b243952afbb0cbe859f5261698a63d9efa54af44eaa0184ae9223a/cmake-3.27.4.1-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2010_i686, py2-none-manylinux_2_12_i686, py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4f/ae/dea4591487d20f12bf7f6a6ba9ebabbb62c8c8ef5bf2ead7a61e58c0c64f/cmake-3.27.4.1-py2.py3-none-manylinux2010_i686.manylinux_2_12_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/54/99/0b4645ac5dae225ac9b21570fbd66c16639b5d5220d2ad1b42c041436ea6/cmake-3.27.4.1-py2.py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.27.4.1\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d2/ac/2430b34fd1e45e0d6c03f53963602e4028346a9c8d37c86f03c2116ba682/cmake-3.27.4.1-py2.py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_i686, py2-none-manylinux_2_17_i686, py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ec/31/2604ab1bccccaa9f7d8bb9b8609515bf659295a6add4dc369f11db937b15/cmake-3.27.4.1-py2.py3-none-manylinux2014_i686.manylinux_2_17_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d2/95/54a3a3cc0af3097c9702b3a159d2d1fd07f13864c5663cf08a4a2daa9a27/cmake-3.27.4.1-py2.py3-none-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/24/ff/02813d7d79513d94bedc45f1085abe0f68480b8523cb56dc57331520d7a0/cmake-3.27.4.1-py2.py3-none-manylinux2014_s390x.manylinux_2_17_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/94/87/68536d2dde5acec492742c63bb71f43534eb7d3d83122cce3067c4abca2b/cmake-3.27.4.1-py2.py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.27.4.1\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f6/1c/976309fd687accfe8779042d2867ed0de9393f0e81e7a13cad672b0edc11/cmake-3.27.4.1-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3f/23/c3d833a585de993b5094470457ce1bbe1cf12f6b2272ce1a74954aed42eb/cmake-3.27.4.1-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bc/bb/b1be11484f3f34afbce8b3b127e5c566fa45711ace82388953454f8b8916/cmake-3.27.4.1-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b0/90/2e66a172fed8b2ff9896a61a3def7a6f467eaaf1eeeee3f45c29a60450e0/cmake-3.27.4.1-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/25/1d/fde17317f15aeafbcf95301b96a81ea609061edf201b1b89e351959c6de4/cmake-3.27.4.1-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a5/d8/5e2100a25b809cfdd1b34068b417a8ede791987155d38cdff558d8a17f0a/cmake-3.27.4.1-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e0/67/3cc8ccb0cebac463033e1f8588328de32f8f85cfd9d3150c05b57b827893/cmake-3.27.4.1-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_arm64, py3-none-win_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ab/8a/9b078ab28a7cb97909034c091f951e9770f324f4d3804d00aadd47bd78cb/cmake-3.27.4.1-py2.py3-none-win_arm64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/2c/e5/aaf2b159423485f3d1340ef9d91bea0515df0da0ed88a390bdcb15967451/cmake-3.27.4.1.tar.gz (from https://pypi.org/simple/cmake/), version: 3.27.4.1\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_10_universal2, py2-none-macosx_10_10_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a3/b1/5cc3948ab1db500c8ee52f05269592bfbc001637c6b37e8dc370980f6966/cmake-3.27.5-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2010_i686, py2-none-manylinux_2_12_i686, py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e8/bf/762c35f303c38c052b6afb5e353871debb02a205e1504deda245889b9da0/cmake-3.27.5-py2.py3-none-manylinux2010_i686.manylinux_2_12_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/74/ce/6d8904f3d1ff03632c048674d96a2c00f28ae8ee061db31ded7408290e4d/cmake-3.27.5-py2.py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.27.5\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2a/c9/eb8459725af699ffaf93ab2053429ddcbb8dd089134f19c20a465843beb0/cmake-3.27.5-py2.py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_i686, py2-none-manylinux_2_17_i686, py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b7/b3/e2f4f14da39d12517b2efbcf432482be718820622558a2aa8c24a5e86db4/cmake-3.27.5-py2.py3-none-manylinux2014_i686.manylinux_2_17_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a4/88/34f58b5396dffe2d9730dea9ea38fb6ce6f19a92db32cdf6333e52eec077/cmake-3.27.5-py2.py3-none-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/38/97/0d63e137e8b0bef0425f0a549830f27a6da547140f868f01d25febbf7e78/cmake-3.27.5-py2.py3-none-manylinux2014_s390x.manylinux_2_17_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/de/94/cba4b3ddc0d4555967cce8fd6e9fbced98a6bf62857db71c2400a7b6e183/cmake-3.27.5-py2.py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.27.5\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8e/e5/d8e780e4260d4c8b39e38bb2873a50dc92e8d006e05b064e76ea566b46a1/cmake-3.27.5-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/46/74/08544306164cd72bc1e1cbc1c5cc304090e8a876bde042a459c920e82cc2/cmake-3.27.5-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b4/a0/96c8e807df3d00f2c1ae43e256d4e4103f1a3e9cb63223c428cbd11528a3/cmake-3.27.5-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/05/55/c7bf359fc3f8fa30682181f488522a041e5f83b45cb33ba8c9c370a81a00/cmake-3.27.5-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ec/47/e5c6dd4b8bbcd50b79e9a7bdb48634337e363988ad3de1b8f30f4c6ca493/cmake-3.27.5-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3b/ca/0ecb5712b393647bdb7718bf654be416a29b9ba7370dc5a308ce09fb952c/cmake-3.27.5-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d4/f3/cc82bb2ef5e9d3396007a18ce2c4b5fa57d37ff95e36174b478df6fc0918/cmake-3.27.5-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_arm64, py3-none-win_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2c/f0/f038ed4becb3a5d548a8580b66eb4bc5ac7e5ab830720ec012e1ed1976a1/cmake-3.27.5-py2.py3-none-win_arm64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/d7/c5/1e628964a2c8c516a23674890900303e70d18156bf27a0e73d106f770792/cmake-3.27.5.tar.gz (from https://pypi.org/simple/cmake/), version: 3.27.5\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_10_universal2, py2-none-macosx_10_10_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/02/ba/9d83d76ad80167315f7e57d20055062024868f7ee4f153a8e6b6f6aaf332/cmake-3.27.6-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2010_i686, py2-none-manylinux_2_12_i686, py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/24/e3/8434b29385d642270adc67c6c91e87d0510d6df6ffa578f727904174e994/cmake-3.27.6-py2.py3-none-manylinux2010_i686.manylinux_2_12_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/00/85/4a8653482072b8cfe70367ffaaab3db9d6544e79ad4d1f277205c918753e/cmake-3.27.6-py2.py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.27.6\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6f/01/741a7eb6df09b015322372bcc0c0675299728a6777b22481e1c26e3e4c50/cmake-3.27.6-py2.py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_i686, py2-none-manylinux_2_17_i686, py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8d/ab/dae438887d28e2e119522e2259cc9c516a71ab403b2c572888aeb937018b/cmake-3.27.6-py2.py3-none-manylinux2014_i686.manylinux_2_17_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4f/df/754b5caf7a3608213cb9b10500107bef873aae6e97904df52fbdc8675c72/cmake-3.27.6-py2.py3-none-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/da/f8/7b4e918dca7c2dd9ee1dd3e62dba91b11e7e8c2f55c9bdacc85bc8d1a6e8/cmake-3.27.6-py2.py3-none-manylinux2014_s390x.manylinux_2_17_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/72/89/b1cf3cd5fb9f4ae796dd4a743412553f884dad2acbf6b9828d3a0c2b5524/cmake-3.27.6-py2.py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.27.6\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b0/90/c70b236771feb601e3849d2c7e16b91a274d947bf9e6e3f41a9768b58f2d/cmake-3.27.6-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5b/a0/906b9cb1ff6da0eb32aa19ff8966f8cddab5e1778da62c98f90e7aa688c9/cmake-3.27.6-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b7/79/02a45093ff2aac50c1ed0b7635a254677d13cce8633eea0b6812fd0e40ce/cmake-3.27.6-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a7/e4/9df914ed79ccffbcf7d15229a061ddabc571122fefd9857fd22e32054431/cmake-3.27.6-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/64/62/075a8e5ed791314a44c604218372950123c00efc9c39c2755563ee6488f7/cmake-3.27.6-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4b/64/29ddd07489eb1c39f41c26db32386281a309f95baf3257fb5e3614c78ff7/cmake-3.27.6-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ff/21/f184a829edd2fe8edd844a607eb17f7bcc6e78e2a32f3b70238075060b76/cmake-3.27.6-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_arm64, py3-none-win_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/30/1e/d9144fd02abaa01ecd831965624ebd918db5d57211bfc002c1e2853ad927/cmake-3.27.6-py2.py3-none-win_arm64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/ad/43/b524e7c1fd0726dbb6be278a8b021924ba29775b6d6c982a8ae426737612/cmake-3.27.6.tar.gz (from https://pypi.org/simple/cmake/), version: 3.27.6\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_10_universal2, py2-none-macosx_10_10_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d9/e0/6c919f63a2ef07ab02daa9039688cda551f69483592bd5852095ba3f62b7/cmake-3.27.7-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2010_i686, py2-none-manylinux_2_12_i686, py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ba/40/6edeb86e217d87b2a66291d92e860b8c43850fa855c9c182c93730e26a67/cmake-3.27.7-py2.py3-none-manylinux2010_i686.manylinux_2_12_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/4b/49/ae220dca494c41568ec01cbece0f322379de5f9a8cd3a3cf76db662aca7f/cmake-3.27.7-py2.py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.27.7\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/11/0f/9d18e4c90a62a08ae8f809397af5022f1330a544c01365fef737d17ea30b/cmake-3.27.7-py2.py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_i686, py2-none-manylinux_2_17_i686, py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bd/f4/94b7ab3bfee32876900c6459c73776f9be5675de1d38946c461294ecbf8c/cmake-3.27.7-py2.py3-none-manylinux2014_i686.manylinux_2_17_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f3/a6/cd0df5e7360833ab6bc54686b71da9d666daa72b9d261cd0ceeb561d6c92/cmake-3.27.7-py2.py3-none-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3a/5a/157ec89eb1e00c6fd42b50666fa67799eb51fe245f005990fce4b8e12b7d/cmake-3.27.7-py2.py3-none-manylinux2014_s390x.manylinux_2_17_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/5a/e1/001da8b79b5d336d42aee95aae4cb934348ffa8925a6280fcd81859d8734/cmake-3.27.7-py2.py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.27.7\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2f/f8/1422a49530a5d3abc1f5ffbe616765b9cce7603c82ddb971a0e7833da7bf/cmake-3.27.7-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/db/8b/518f2a05d5f83510cd501c2ee07714de64265ccc21b69311591ca5d204c7/cmake-3.27.7-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1a/d7/89f5d4da954e1b2b14d7cc89acdf77b9a44b22c30670a1e235434098bb34/cmake-3.27.7-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ac/fd/8ebce9e6d9890832ffb549693d0b5a421763a3c31a930984013ca0f0e8f5/cmake-3.27.7-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bd/c9/3702abd06bbd773961b359e530a57db4d78fdb042ecb7b52c505564fdde2/cmake-3.27.7-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/76/91/72d40b5322beee5acee48bb6a50c994e5d19f7f5ad42c68d3db2af7994bf/cmake-3.27.7-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/38/d0/abe3d3b34bf81bf1d60332f81169fd66ba5f2d113dbfcc2c823cc495d686/cmake-3.27.7-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_arm64, py3-none-win_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bb/7a/74541ab08bd7dee2924d504d26acc56ce4b7d981f25688d7080224be4fbe/cmake-3.27.7-py2.py3-none-win_arm64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/3b/45/5e3320d2d0b399908a97824581bb52fbbc0d71b21c4f184932d58c6bf18a/cmake-3.27.7.tar.gz (from https://pypi.org/simple/cmake/), version: 3.27.7\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_10_universal2, py2-none-macosx_10_10_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/44/a5/b1bfcb76e2309fa2fb63a2e71f9749ce304112086c8c3c9065ee6a7aa098/cmake-3.27.9-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2010_i686, py2-none-manylinux_2_12_i686, py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a9/ac/aa732ab2e4523edca4cb732a9b07253636ed0079844b621ccb42ebb4163a/cmake-3.27.9-py2.py3-none-manylinux2010_i686.manylinux_2_12_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/ba/32/a3268707510b7138e6c444d37b19e30e9e386d4a5e4e52d8e6a998494176/cmake-3.27.9-py2.py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.27.9\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/68/19/1c879ce0510301f88131e2c93502f9428c613770527b07c5de0985308ba1/cmake-3.27.9-py2.py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_i686, py2-none-manylinux_2_17_i686, py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b6/53/7207dd3759d619a9fd54841a8338525927009ff1dad99da183ac15f80b0f/cmake-3.27.9-py2.py3-none-manylinux2014_i686.manylinux_2_17_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/41/e8/0bfb38cbb6711608acf1a246b691500bd84bf20a67a13c8a3bc23be41cf4/cmake-3.27.9-py2.py3-none-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5c/34/fdefa98837db883a56b0830bd93afa3f3f25e771dea82bd66dcca1231b57/cmake-3.27.9-py2.py3-none-manylinux2014_s390x.manylinux_2_17_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/48/79/10d15c399a6fb92738f8d02c69eae6f6df0b9c6b9545c947a29c2a45adea/cmake-3.27.9-py2.py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.27.9\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/63/2a/335a9924cda25d0d3481157088a8708befbc96e3eddf90b71f20755bcb9b/cmake-3.27.9-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/22/2f/c327f94f885a2fbf943531772e4c9f7f058a4b5949534655e3a609879449/cmake-3.27.9-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ee/b8/dfa7ce0ea0a6ea5bf75cb654489494ea4cebb3238ef15ce3074f27186c2f/cmake-3.27.9-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/18/9f/faf033ffbc8f65a449ba96ee8ddf8595f9af60d2a81be1afb0dfb215d075/cmake-3.27.9-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/19/af/6f8a29d27787116acfb6000c6c5e730cae5afcea589eab91a404a8846232/cmake-3.27.9-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0c/4d/1f64f2993a18def8e64b35e4824cd766f6928b4014d26db35ce7c9061608/cmake-3.27.9-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bf/40/eddffadde9be2eb62eef87f31bab13d950645374c48de7536e80ff1990ac/cmake-3.27.9-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_arm64, py3-none-win_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b5/a9/e27e499fa7280a110976560ac7bf65289d60107a13f75538e9d9f57d8540/cmake-3.27.9-py2.py3-none-win_arm64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/3e/6b/76ca411a4317bdc0012de597c245a59c824aef1f71dd83e8de0b5ec9bc32/cmake-3.27.9.tar.gz (from https://pypi.org/simple/cmake/), version: 3.27.9\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_10_universal2, py2-none-macosx_10_10_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4a/3f/21bd0a2320f3cb83d5a6485b1b258a405a24a92a34c036612c308f340d53/cmake-3.28.0-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2010_i686, py2-none-manylinux_2_12_i686, py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a8/4a/3c6bbec2eb6108d7e062c6a53fd5c7ac09820e859a09ff6ac3b32e7ff7d4/cmake-3.28.0-py2.py3-none-manylinux2010_i686.manylinux_2_12_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/58/de/72dc36e86b4467729368b41e9db900c474e4bebc9cc133169dc535999bd4/cmake-3.28.0-py2.py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.28.0\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/95/65/c79b2e18f6d693f042ff88fbb14f9dcf1b1bff17b662c6b6b5cfcfa13385/cmake-3.28.0-py2.py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_i686, py2-none-manylinux_2_17_i686, py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/98/24/118d9bdc77f0875bd264d3cec0e9b07c06c879c6cb0040151fe44f0d4c15/cmake-3.28.0-py2.py3-none-manylinux2014_i686.manylinux_2_17_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1e/da/7c9e511fe78596cac6968eb043b607b37fec78256be3cecba7e7dde68f6b/cmake-3.28.0-py2.py3-none-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/32/49/4eed32d81ac053cd7dbf1d36b064c024009906d2538256e152d723016e9b/cmake-3.28.0-py2.py3-none-manylinux2014_s390x.manylinux_2_17_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/0f/92/69c0ff59697c8f8199283b35d6f3be575e52526d65894330f25e9933f31b/cmake-3.28.0-py2.py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.28.0\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3e/03/f7192ee22d190429032c227efd32fcfacd1e8b328db83a6921248ee359fb/cmake-3.28.0-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/28/f7/d21a9b844fbe8e7f280635a5cb95e819dc7af7407117a7f6fe4746e033c7/cmake-3.28.0-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/49/71/d2d2f14dc18a1b0953ace4ee2fbe775799951cbf172bb430a58f2987d814/cmake-3.28.0-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0c/30/275d2cc7d76b007611dfd1a381f6e7a6aec865513bb2a33c6ed932e38c16/cmake-3.28.0-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/76/67/e3a5680ee63efbedfd2e7cce86777016b3ee0c6c76d53e8379a53d8edf88/cmake-3.28.0-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4e/6a/21b90d15c4c4c2e4aa4e259e70b7229b6999ee66e90f2708ca8a2a2a1a66/cmake-3.28.0-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6c/e4/cdff7c80caac00c9a19c80c1c51583421d32fa7c0e585a7d2af27e7e2f14/cmake-3.28.0-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_arm64, py3-none-win_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/93/3f/7c50b9d7cdbd8110feceef3beeeff9b0f7667aacdeef9566c0350cc64479/cmake-3.28.0-py2.py3-none-win_arm64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/13/e9/67fd23ec85a4eb4caedce091a8bce13a6de87d4b668112b96f69e7562c2a/cmake-3.28.0.tar.gz (from https://pypi.org/simple/cmake/), version: 3.28.0\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_10_universal2, py2-none-macosx_10_10_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/61/70/81b8feac4fd80dfdf90b145cc79eea632b349336adaa253a6f2deae072a1/cmake-3.28.1-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2010_i686, py2-none-manylinux_2_12_i686, py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3f/56/df0da8599694d2a0313c291034abcedc2bbdb26c45f6236d58083c2b5856/cmake-3.28.1-py2.py3-none-manylinux2010_i686.manylinux_2_12_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/7a/e3/87b075ad1846ad305cd6dcffa8eca9f5eb3d1f4d29249bcbe0a311c9a453/cmake-3.28.1-py2.py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.28.1\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/21/45/76e4e9992355cbc073735e434da376a55e67172a9bf80c6f29c90ff797c3/cmake-3.28.1-py2.py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_i686, py2-none-manylinux_2_17_i686, py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b9/d5/1329ec3d22a0be1c32bea6c8a3a26f28267dbb55d9177738d0850347f3a3/cmake-3.28.1-py2.py3-none-manylinux2014_i686.manylinux_2_17_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8c/84/19982424b5981abdc6e67ec462f16d0bca22b8d0e39f3d4b81f3834ae44d/cmake-3.28.1-py2.py3-none-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a2/aa/29d7c598fed62fd2030bafcb5fa7fa2685a651206f33a2d925aec5efbd81/cmake-3.28.1-py2.py3-none-manylinux2014_s390x.manylinux_2_17_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/09/30/df85689d18122becb9b6495cf6778f9ef629bdaa3ec86f49809ab5772e35/cmake-3.28.1-py2.py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.28.1\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/15/fa/e86d4bcbb77193ee9e0aef862d6ecd6ac0dfdaf732fb11bc1e72df844f7f/cmake-3.28.1-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/20/1b/7a2e562451024d3e7d774ed296133ae2518b7ebd2403c74944e2efc59fb7/cmake-3.28.1-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/85/36/f88dd449991e73b16fde7f2422c58e374592fb28072ec8d4d3fda795799a/cmake-3.28.1-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5c/c8/ebb885d41bb70bfa054b1bc127fce229bbe297cd8a97dc496b04888560ce/cmake-3.28.1-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bb/ea/2b3ef4329c36dd1ca42229281c0e0b74248ad4060f37d35f789b922da8e3/cmake-3.28.1-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6d/5c/74dc676f1685bf00526a5e5975b5580160561af8eb63f11ee5d6938d46a5/cmake-3.28.1-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/09/fc/0ad863c735a11f2d3740e718040267fffe540ea79f7800621062f21286ca/cmake-3.28.1-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_arm64, py3-none-win_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5e/92/01ee9509343c5ada77d5fa966d272f047b3a9f705986da0e4144086416a1/cmake-3.28.1-py2.py3-none-win_arm64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/77/4a/78df9bdaf3d0ab1b50a78c0d6ffedf1cbc0152b5d8b462cb5f23b6fb4c04/cmake-3.28.1.tar.gz (from https://pypi.org/simple/cmake/), version: 3.28.1\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_10_universal2, py2-none-macosx_10_10_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ad/01/65f2111303e2f9f7ca0edf50ff8ae39d11a4d0a74df31573afae2f460ed0/cmake-3.28.3-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2010_i686, py2-none-manylinux_2_12_i686, py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/75/56/7b230739ef68d1976e2e41e7fb07699182c8dd25c255015f9348623d13d7/cmake-3.28.3-py2.py3-none-manylinux2010_i686.manylinux_2_12_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/98/c0/2c1f0aa2d3daf510063d67d85d2288bc11d9fc31a2442c574ce7208e6684/cmake-3.28.3-py2.py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.28.3\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/93/a5/b48cccc7ebaabc10de59931649d2a8636455e0619efa4a1a22cad3640c3b/cmake-3.28.3-py2.py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_i686, py2-none-manylinux_2_17_i686, py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/82/c3/e77dd4e38f8d0eac3300c9ef8b8c5cfbc68a1042958b042d207659e73cb0/cmake-3.28.3-py2.py3-none-manylinux2014_i686.manylinux_2_17_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bf/59/9dbcad651d63228b1666d546ce4214266c41be2ab51c43df7693242b4640/cmake-3.28.3-py2.py3-none-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d1/7b/984658b77453690b062be9ff911d76bc75b278eff9ae83536f6524409bfe/cmake-3.28.3-py2.py3-none-manylinux2014_s390x.manylinux_2_17_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/91/f2/93ceb9aaa7779abe5c3f4e361ba5a55b1ff0142ffb5966e7b8c1cfc0f627/cmake-3.28.3-py2.py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.28.3\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3c/a2/e03ebd0204abf635f490c58f5d16a1920ca58899d56d487398d716be4a2e/cmake-3.28.3-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6c/6d/21d769a25a62e9341b3ffc619a9d33a155c2ade4df9b9e217db733b3e608/cmake-3.28.3-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/75/69/baf7bcd0cc60bc9dacea5e3f49e20744072d0b351427c5bf560f8ea68191/cmake-3.28.3-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/01/b9/620dd125b7eba6a7e257b2690fef535c1fb610fa3c3e80da4b85800093c7/cmake-3.28.3-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bc/08/e24791e45f811461a69c64d945ea65dce07eb1f434f70ae4d54a416a1f94/cmake-3.28.3-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/97/86/cad64d204ef3474f621102ba196bcb3254a7c1a258980b58de4977fe146a/cmake-3.28.3-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1e/82/da0c325e829b9987df30d0252851b68ff2b92ad6ffa675817354abe015ad/cmake-3.28.3-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_arm64, py3-none-win_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/08/10/721f986d2655913d7c9c0107ebc1ab4e15ed7e6d161982598f773c94aed3/cmake-3.28.3-py2.py3-none-win_arm64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/ac/2e/dfafb24bcee77471164b419860799db880e6123bc12714a5cc6cd62e634c/cmake-3.28.3.tar.gz (from https://pypi.org/simple/cmake/), version: 3.28.3\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_10_universal2, py2-none-macosx_10_10_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/25/de/a54dbc80384d3410b02f0389bfcc79de004188708dcfd744d0faacfdcc1b/cmake-3.28.4-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2010_i686, py2-none-manylinux_2_12_i686, py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5b/b7/bfc8fc76f9c4b30c7672e2432ea884b9d5c71039aa4f981fb1fc0adb63f4/cmake-3.28.4-py2.py3-none-manylinux2010_i686.manylinux_2_12_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/57/b5/0cd5ecbe03290da97ee162221cedb762e388f41a46329fe0173b12e82f0e/cmake-3.28.4-py2.py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.28.4\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/42/97/7fdfaed0de840f9812fde45d1d8f5044f435de8bcb5e32d14560a93d4bd5/cmake-3.28.4-py2.py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_i686, py2-none-manylinux_2_17_i686, py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fc/6b/792da96a72f6f30173acd9bbc12f6069bb2755c1e582a362a965be7d77e8/cmake-3.28.4-py2.py3-none-manylinux2014_i686.manylinux_2_17_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c2/62/ae4b3982accbbb671f767db27962ec831c9502062c7915e7f1aec5ce6a7e/cmake-3.28.4-py2.py3-none-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3a/d7/0f7e90bf540d9cb20faab86c332b665ea15d4c529f5225e09036905b4f40/cmake-3.28.4-py2.py3-none-manylinux2014_s390x.manylinux_2_17_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/2f/a1/aed90f63609db7af7bbd9a6ad8bcc28b710ed58db3ebf0e7c92ce1d04f26/cmake-3.28.4-py2.py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (from https://pypi.org/simple/cmake/), version: 3.28.4\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/94/f1/c08f1f9997d46fddda66dd7a5ccdfb5e2ff8cfc219d5b972465c5256beaf/cmake-3.28.4-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7a/60/e35ade8510d9974ceb66c1b4dd7b3a810232f78715f9193dfc6ab1d5f5b7/cmake-3.28.4-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2a/5c/f870d4a0f268c66c0c0605592b8c0ee1ea2e9af1fbff504f7856caef0489/cmake-3.28.4-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b3/1f/e813548ace292f43b41a17d005b869cec41c411318ad7ec12100d466ab65/cmake-3.28.4-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/45/ea/624ff3c5caf6ca2c00b7652f0db792af7fdade49e78939fc6a3cfbc78d69/cmake-3.28.4-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bd/5e/d4a0c783d2436e2f42028327932f5899324f55da0f6973f1bd5c25131723/cmake-3.28.4-py2.py3-none-win32.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/74/26/08746c521e2f32d338b79bbef82032d818990b2b932f900142730062cf09/cmake-3.28.4-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_arm64, py3-none-win_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/31/f4/e9697ea95661b9308961208fdbac040a20f5c164156e6c7bdc9f0f4a8f0f/cmake-3.28.4-py2.py3-none-win_arm64.whl (from https://pypi.org/simple/cmake/)\n", + " Found link https://files.pythonhosted.org/packages/e7/90/39fc3e549f434ae8e9e9a8af96337de6556c82447321b4bc0e39bc68b55d/cmake-3.28.4.tar.gz (from https://pypi.org/simple/cmake/), version: 3.28.4\n", + " Skipping link: none of the wheel's tags (py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/81/66/8e819f4372976799c0c1683bfa3ae27cd9d576ac1be695d3b827535f77ac/cmake-3.29.0-py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4d/14/f896b49d356095e43639744a4cf9f01afd9253ad2d205d9d2b9cb4e8af60/cmake-3.29.0-py3-none-manylinux_2_12_i686.manylinux2010_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/ab/6f/d777da5b5f5fdbefc2c9acd776f6c0d3ef515b49afc8ee844ce70ba8e1b5/cmake-3.29.0-py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.29.0\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e5/89/3bafd0f459aecebdeefc0650b67b8da2f95634a7042dceace345ec99c890/cmake-3.29.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a0/ae/06086937be633ce2d4c8bb671048b17013a0ad9c1926c4068ee5a6ca3489/cmake-3.29.0-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/08/2b/02b04dbb0c199227814de66a8289e3a732f1fe0049a2a3cd4bc92d3d217c/cmake-3.29.0-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/72/c7/baa7cc2073f30340e714734abadc73503e94baa91dbd9a86d538b821f6c3/cmake-3.29.0-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/29/25/026dccd8584c65a2faab1896100ffdf39b61aae88b49e38b0ba9f8719af2/cmake-3.29.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.29.0\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a8/68/20d9c745e15dd70ec67599909813617b9fcef25e1c9c0c500eb51caf7632/cmake-3.29.0-py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c7/03/0345cba2492a7f8ec0fce2229e821b6c3224086945e0b9d4aa8216bac6cc/cmake-3.29.0-py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5c/d9/5e68f32d5eaff5fccaa2b330734a970aec9f8156998e0fa7119f5dedfac1/cmake-3.29.0-py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7f/b5/6bb8b3124b384658a0c552e49a26dfe2a73c8cddc1ec56a70ae68e18394d/cmake-3.29.0-py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/36/73/7b6aaafc813b40009261eb43dd5a3c998398e73a19c41ffc59b5614bf517/cmake-3.29.0-py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2e/f0/f46f2d2a3150da404d4998043c85c21a600046a952a0ea676f206675cf4b/cmake-3.29.0-py3-none-win32.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cc/6d/d961fb91e76f35229041663defbc50705c9daa16b43818f476798ee2ab43/cmake-3.29.0-py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/28/6a/b880a25aca839cad1187f470d5f02091c588efd331e0290eaa56cd2f9198/cmake-3.29.0-py3-none-win_arm64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/c1/97/299bf2929867b558adb27008701c74d8e361d767e0e7d09143dbed51e323/cmake-3.29.0.tar.gz (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.29.0\n", + " Skipping link: none of the wheel's tags (py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2c/00/850601b5a7e86254e78750ba2f85fd9b637a511d9ba1383d4c4761967cd5/cmake-3.29.0.1-py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5f/ad/9e5a8bf80b8d9b326b0ec0c04b4d75d3f0743031ff131269073371b66dfe/cmake-3.29.0.1-py3-none-manylinux_2_12_i686.manylinux2010_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/45/5f/848ca4c8bb0e02ef6662d574ece447512d569bb48a1d9e1a5d4be65ce081/cmake-3.29.0.1-py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.29.0.1\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4c/d0/4d364f370e4eabfc9d95799bcb7b221560e0cbc50da668c4639ff46a883d/cmake-3.29.0.1-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4c/61/ce6ebb2a546dbe456af56afb73dc41aea81e4cbd915f788d965d4b29b2f7/cmake-3.29.0.1-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c2/6f/4dbf414cf059eaee5bf740c1665c5ccfc85b563b30efddd5a5a96faf1800/cmake-3.29.0.1-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/13/10/9d967334ca491247508ab15f822af3673337ae9d9e77c8c064d2010a0ca2/cmake-3.29.0.1-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/21/00/be982e337e2bdb7642223e8b770b6dd54cea3476fad84db19cef9e5cd5c0/cmake-3.29.0.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.29.0.1\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c3/6a/e6b32c356984533947a0e9b0e5d6c8eb82d4de8e852e2a4eccd6390623f0/cmake-3.29.0.1-py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f9/54/5f78b3f3db21332e6d8c80740931ee7c4e2599175a5b917691ad221b3ac8/cmake-3.29.0.1-py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/59/0e/c3c7b1dbcdd50189a3e943284fc233367b07c53b08dc79b9627fab17efc5/cmake-3.29.0.1-py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4b/7b/fe3d48357c3880bc99102ba8490c0341533346a56e051022eff2a23de362/cmake-3.29.0.1-py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6a/ff/545f7f04b67ab4366252fe899a348ba5ea62175947cae774662929df9fc9/cmake-3.29.0.1-py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/56/da/752f390c4244f3aa48b478d489d3c7be0c59f23645ee71200c32b47a8774/cmake-3.29.0.1-py3-none-win32.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a6/29/82c7516fd3617343e31d0e4f62276a82d2ac111b56615e499b54b86b004a/cmake-3.29.0.1-py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/30/eb/ae95d0be93364990f10329a3c5df9ed70b1026ac20d6b0eda5efc4d27d63/cmake-3.29.0.1-py3-none-win_arm64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/63/10/8c5fe6c6f3ea61dff23b570693d06fe78bb9a65ee1a0a437512122061109/cmake-3.29.0.1.tar.gz (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.29.0.1\n", + " Skipping link: none of the wheel's tags (py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4e/2d/199aebc4a0aa5b8f19d0314f89c53165e286ad05f0eed9babe02ac3b482e/cmake-3.29.1-py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f1/3e/22ffaf595820fc5beba4d4650218da8e1b0371e2387c34244e19849c4550/cmake-3.29.1-py3-none-manylinux_2_12_i686.manylinux2010_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/f8/22/dc82aaddbb4ea79ce905e2f32efa435af17dbd7acdbd8b61bd9223cb4ce6/cmake-3.29.1-py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.29.1\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ab/a1/48e57701bae3dc2febd11c17669ff915d14c9a1577f84177149561f5628a/cmake-3.29.1-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d8/62/2b1db24fe60a5cc6b1d7053707e4392c5ae8ab69a6e7a1848c1654746799/cmake-3.29.1-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3f/74/57472758c6a963055a40a36cc61f810d47bce7f368a49d77123d41ab8a69/cmake-3.29.1-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/07/3c/574264d273b615319b12b44a6a832c68f4f575a1502e427273e27cd5e8b3/cmake-3.29.1-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/c3/a8/ac0209c00f88c7114d4be164df51ff780ff5b506137ecd56409abddc9425/cmake-3.29.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.29.1\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c8/14/6ca9b545fc5eafa65ac38114be5e6f240498323f9c6b0aa7b111fe1ddeb1/cmake-3.29.1-py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0b/d8/5a917e67e35b8d14078c7e12828eb08fd5732deeef8bf0bcd8a1e097fc0c/cmake-3.29.1-py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d8/c9/eab81160e9c76dd72e9a56229e6c7dfea5e42a74d8c7874f3a18d936d8cf/cmake-3.29.1-py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a8/2e/df09be0aebed4901f20247ab946f63fc5edb5395aabd02583800f734a12b/cmake-3.29.1-py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/39/2a/3a8b9850bf62a418890b28336565b9f03eeca82f805f6b350f9ade98b3e3/cmake-3.29.1-py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/10/90/fd36219baf7a0c684141c82b319042e81ce4b319a85ef9d513d147401750/cmake-3.29.1-py3-none-win32.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/db/fa/708178a25afa302beef94d26351718ee0496ee1884f0214cb3baf7454027/cmake-3.29.1-py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/25/4f/b77544368c014a6caf2e63e9a83403696a17935eef49b1587cced685bf57/cmake-3.29.1-py3-none-win_arm64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/64/64/ba3abfa51a6c1daff77275049824d620136d43a3a81dd5fb39a427307643/cmake-3.29.1.tar.gz (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.29.1\n", + " Skipping link: none of the wheel's tags (py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7a/79/041cc6a56334ffa77da4ad101c2327fad6c9c0a87f3aa93178875fb138f1/cmake-3.29.2-py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/46/a9/b65bb603a116196ac347e8ec9e344fa748d0c29f6b080ea07d379bb8c6cb/cmake-3.29.2-py3-none-manylinux_2_12_i686.manylinux2010_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/e5/fc/fdd3644ce89d07caf71af0931fcf939d7cfb169c20ab052559f07574451f/cmake-3.29.2-py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.29.2\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/66/86/0be37acaf4778e8e219f4f228d2a558af74e346e5419abfbf8e0b4313360/cmake-3.29.2-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1c/8f/5053b4fd92c52e7ea23993338eb6c704a360da27fa9a786693295067a7bc/cmake-3.29.2-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/13/bb/6cbda6b86863ae776372ee01522323c5a99806264d8a1f37abf2afe676a1/cmake-3.29.2-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/26/ca/391fee035294c1132ff84277a357e8b41135729a6adb18ff6585a797ad11/cmake-3.29.2-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/be/2e/8f8daa34e6d743816f852c752da544c34ead6b4fbbdf547519430bdba590/cmake-3.29.2-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.29.2\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/35/bc/cc8162ec43ac38a48b07f6412b94c39c08e880561681ec44c2b7ec4f9227/cmake-3.29.2-py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0d/76/8d9244311b34fff3dd7244bf69bfd48cc4cf9b09c536b0bf563e1c1abe71/cmake-3.29.2-py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6d/0d/197de8d218cb3fa155424de0b8f6c78b80f33f1d24ba9844fcd54531482b/cmake-3.29.2-py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4e/2e/e4b1bb7e5d14d3f662d279415a01f6f5b7f0c060b460628b16c8188bb6c7/cmake-3.29.2-py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/05/66/25109585970b9fb07bd77420a26404accdb6b029cbe792cfdad107e7ba70/cmake-3.29.2-py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/74/49/620a81db11fdbfeee03cd24e7554b9ad9deefcdb462ad14f980ff7f7d4a3/cmake-3.29.2-py3-none-win32.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7a/0c/7d805ff509ee87d6d54e01dc798ed0d8bc0a6c2ecec48b10f4ebdd7ba7f9/cmake-3.29.2-py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/92/fb/cf4676099fd7c78916c0cc20e59ac0a4668cbc1f8c0e05fcff3b8d120291/cmake-3.29.2-py3-none-win_arm64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/80/bf/4f9a9f754507992be28b985d1e9b17f93a2271106b5916a212efe1d65205/cmake-3.29.2.tar.gz (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.29.2\n", + " Skipping link: none of the wheel's tags (py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3a/c6/97658b917bece0302d758c5c36910b2844a874c1a03e64a70a2ff0dfce6d/cmake-3.29.3-py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/69/d5/13295c1a167df638579116f6e33da1d1a7d6018e9867cd35d428b2c082c8/cmake-3.29.3-py3-none-manylinux_2_12_i686.manylinux2010_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/12/51/08e6b42071ab25bc80c304b56d882eb1f3d810981cc8eed8635bc0db97df/cmake-3.29.3-py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.29.3\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/95/fa/11c404b3c8cb3df9d7e4c85eb5036940fb0f27fbef0228315e5fa2c5c42d/cmake-3.29.3-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b0/c1/ed4e61b1ca1f034379f70c03cf1c095a44445dc8fe843b6dfe61fa41e169/cmake-3.29.3-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c6/4d/3e93f0f424f8887199e64b6a8b565d0a696071b45c1158c160db6ca99244/cmake-3.29.3-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e8/bf/ffed658202ed05d69a1ecf3c1da9a1e30e06b06f8336afaa6a0ba61fbb20/cmake-3.29.3-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/0f/6e/aec230302433cf697928be1311d783512dce582e39167c70a7581a21eb77/cmake-3.29.3-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.29.3\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/25/e6/602c33eea995bd1f8cce1819f211f1003faad8e4ad68dc85f645fff7d00b/cmake-3.29.3-py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/dc/05/23e838375fc5de7fb4f143cbe9df5a30d7ac7d2d768510215b81cf0e38b6/cmake-3.29.3-py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/95/d8/20295c2ad5c9c5864127a146370e9b108e76e14cd3ab36e4629873776e2f/cmake-3.29.3-py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/12/2c/264117e04d2f508dc2a7c7a53fc8706443b79ba2be44c2306cde353df944/cmake-3.29.3-py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d3/53/8724463d40bfe0db9a72d84414189cdc6b7f43c27cd2eeaaeb2500e34059/cmake-3.29.3-py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3a/39/9a74ff2bdc3e61392f883b3344d24f042abb2741521bac471deb8ba11bd0/cmake-3.29.3-py3-none-win32.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/39/e9/22adbccc3235cf88219e0039d6b7a2fdb23c6ad18143ab7c4c3365bdcaf7/cmake-3.29.3-py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ff/fe/b949025f930a1c33cc391747e3f4d1c373178f8a714010046c5cf0e0f167/cmake-3.29.3-py3-none-win_arm64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/9e/cf/fbd014f36d3407f04fcbd4d216a1431ef05f2ec69a25a2ad3af1de75e835/cmake-3.29.3.tar.gz (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.29.3\n", + " Skipping link: none of the wheel's tags (py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fa/3a/937059da703367d96b6ede732a6792ebdf03391016f53ec6a653efd6718a/cmake-3.29.5-py3-none-macosx_11_0_universal2.macosx_11_0_arm64.macosx_10_10_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bf/d1/469b3c6585963f6d0bfd44f1bdb4cb3ffe4c49867faafd67a222c73d2cf5/cmake-3.29.5-py3-none-manylinux_2_12_i686.manylinux2010_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/93/81/496e21bd4826c493e3aadd476d19432cb6624b51b9d7db36c5683c2188a9/cmake-3.29.5-py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.29.5\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/79/bb/ec035695f4c43ef02434dcf800abbc3d361173ced0b51436874f9c2aab6e/cmake-3.29.5-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/79/41/7c686fd894c1d4503d8df253d0132482c5e5a03e54946147f4edad9a1c2b/cmake-3.29.5-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a6/ec/7cb1255099a98c4a234a18b92c232d58e1e26540b0a69aeacea643938058/cmake-3.29.5-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/42/63/eb9d9e980419ce6bd4e1737fb2eb7078d5618e8c7ce40a05f70f3b86790c/cmake-3.29.5-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/de/a2/d2c2f486dd34282b2ca6f8548b35b4c341c35f5f657495ba219cd2b4b675/cmake-3.29.5-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.29.5\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_2_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1f/ac/c1afb60d36fc8081e528e8a80029b4040bd612d89f77a4e97237ba9e7b63/cmake-3.29.5-py3-none-musllinux_1_2_aarch64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_2_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3f/46/4961350d85d6a17708c1c1905758d845edccf9798438c78298288ed9b010/cmake-3.29.5-py3-none-musllinux_1_2_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_2_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/48/2e/60707cfa9bc5f0a62089fd6c1890e54d9ff696f1bf64890f272086b76c39/cmake-3.29.5-py3-none-musllinux_1_2_ppc64le.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_2_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f3/fa/7e0aa86d7b2ff6cdd834900c42cc23b141527c08cfe0f716beca6475b45e/cmake-3.29.5-py3-none-musllinux_1_2_s390x.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_2_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/db/6e/7c3eb02d1dcecc947f6777fbc827e4c4ef09cd7a9c396903d826c7f6d9fa/cmake-3.29.5-py3-none-musllinux_1_2_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ec/d2/6648aa446bfabeadb82daa277b222765399e60ba518820cff6b516a36c57/cmake-3.29.5-py3-none-win32.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/44/fe/cef41d53a7d8b06f78a93171f3a23fdc2961852a628ef5e59fe4cd418695/cmake-3.29.5-py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/27/a3/779e88dcfd88fd8f0f7c58617a4600f798ac08c2dbca68da0e971389ae65/cmake-3.29.5-py3-none-win_arm64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/44/26/f4c4c1f0f844d3e546439ef6e87f667ee7e7a1c34880975cfcb84a4bdcad/cmake-3.29.5.tar.gz (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.29.5\n", + " Skipping link: none of the wheel's tags (py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6d/de/35fed4235e04cb1322856d0faf03d9c5020c1756ed9f47a3623c6858d551/cmake-3.29.5.1-py3-none-macosx_11_0_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6b/7d/be557528db421b0e79bd5b916fd9f55bea64d95d553321ba2cb3218bb774/cmake-3.29.5.1-py3-none-manylinux_2_12_i686.manylinux2010_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/0c/72/c0fa7d29bc821acab33f7e40f0abcffcbcc12c6200de602bdd011e147a6b/cmake-3.29.5.1-py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.29.5.1\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b3/d2/ae41c3f5503ce53ad11415c4d1e1b9c57eab6819c53791ba399f4a57a93f/cmake-3.29.5.1-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5e/c8/9c9b133c21dc7c036f47f4f1633c2b5579beae39bd5b9edd3dc2731c63f1/cmake-3.29.5.1-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c3/a3/bc2576178db13af15b3362af193289b0f97563e073415f5c09723655f6d2/cmake-3.29.5.1-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8d/85/d7973581fed93f23797fb3a14319c7c08e7b7e832f26ae1e700716745995/cmake-3.29.5.1-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/93/9f/7902254b26f424fd15431c79528e9307c60d70afea56e417201ca8c164ee/cmake-3.29.5.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.29.5.1\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/55/92/c96fccf3da21a0d0c46c884b105c7cf6890dfc31bea5a93c3372119c2a52/cmake-3.29.5.1-py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f5/23/fbbb7eaca8941576d7bc8a1bd34787e7215f873ffd5097b9a9ba3195f101/cmake-3.29.5.1-py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/95/6d/0e3f4025888e8f498ed8ee54eb00e1549ca4f447454ed749b9d199d96c1c/cmake-3.29.5.1-py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/57/9b/ab5eb0553c4fd9172d2504ae09d42764b4db9e07c8f382f2de6a0df270ec/cmake-3.29.5.1-py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4f/26/45a535e4e03d6a16e69388d4d2b2fcebca37a6713601e781eeb874fa5652/cmake-3.29.5.1-py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/14/9b/f25588fc3b9c25214e4eadff7eb7af75aec40770035d06e888f0b76dc0e9/cmake-3.29.5.1-py3-none-win32.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/11/ab/8c67ef1deb53dd774b4ddc05ab9db5c8663aba92a6c0ec884a30617479fa/cmake-3.29.5.1-py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f0/bf/89ba76d85b7591bbc3dbfd04c708344dac194838adec5818ac879637b727/cmake-3.29.5.1-py3-none-win_arm64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/1a/57/706da5e1855b720b709de64a12a85f36f6d6622acd4ac3f61a19448d6d42/cmake-3.29.5.1.tar.gz (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.29.5.1\n", + " Skipping link: none of the wheel's tags (py3-none-macosx_10_10_universal2, py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/74/4f/4b7afc487edb4b04ab21048c05ae1decdbe5ed24de6764c22369e8caa132/cmake-3.29.6-py3-none-macosx_11_0_arm64.macosx_10_10_x86_64.macosx_10_10_universal2.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f7/0d/2ea1d019dde2dc397c726b6d9558fdeb73a45ce1649296b9ea4414af763b/cmake-3.29.6-py3-none-manylinux_2_12_i686.manylinux2010_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/aa/85/bb2e99016bda4603c65108d85c1d4563606acdd88224c23ec3b9aa6e466f/cmake-3.29.6-py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.29.6\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/42/aa/39dd09bc89166818bd4b7dfa60dfc60ec192b93a3d81de5b653e6a3182c3/cmake-3.29.6-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/28/05/5dee18b5548394bc8f3e7fc38a620f46825e378fa75531c1c7b7dbbb4d71/cmake-3.29.6-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/59/ca/0aa72a7d21a890e1af699f72a32dd570f1ecf07d37da8bab6f29a56f260a/cmake-3.29.6-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6f/db/5bc6050af53cf0194df9b214a7d39934a3a64e6dcd6f307634a34e0335b9/cmake-3.29.6-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/ad/78/bc40496264f8e940e90c9466c511da3fec5302457ab71d296012f8d508f8/cmake-3.29.6-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.29.6\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/46/9c/17cc1ee2b1e0712a5c9f24195f186be78248d2493c3b0c565a03f5df9aca/cmake-3.29.6-py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f3/9a/93e77b236300b901856611b0d0c02b82dc8c906792a9cd77057a6abb5bd9/cmake-3.29.6-py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8a/76/ae04200233d9a92469386f5d4d6f7f9c41989d38089726fc8b8db301b21a/cmake-3.29.6-py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c7/d6/4a70f36952e77e7c9e97f97f9e1c062b1fccc258250036c252ffe23a02d9/cmake-3.29.6-py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/01/23/ac5f16e7fc4dd0e585592d75026cfd7d6ed7a23529a4db1c33ecc3bc7e1d/cmake-3.29.6-py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/68/e4/92118e3511f9a59068b7eb5f5a5872ae68c6b84b0e23858407eec5b25b92/cmake-3.29.6-py3-none-win32.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b2/92/3071f00aa91afacddcef3ab2a55c68e27b6aa80ff891a66295aac19d4340/cmake-3.29.6-py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/63/5f/c498c9bb7f0c0b4dde0fa868e5fd5afdce02ff602456459c38f47ea24942/cmake-3.29.6-py3-none-win_arm64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/16/fb/64d20d1a11552f708eaba491a7574631583355ff785ceb89138434ef4fe6/cmake-3.29.6.tar.gz (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.29.6\n", + " Skipping link: none of the wheel's tags (py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/68/23/0c44c6b86c83f18aef38e711a4ab2594e82ee89efbd04bbd28cf028f9937/cmake-3.30.0-py3-none-macosx_10_10_x86_64.macosx_11_0_universal2.macosx_11_0_arm64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/aa/13/f54c99dc24af358156faa15b167382fc23337c17ce9bf25a8986fb0dac67/cmake-3.30.0-py3-none-manylinux_2_12_i686.manylinux2010_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/36/44/d87a7b8036ab9f6c7db1816f3376ef314854c72bc9b94f7b5141efdd3a4a/cmake-3.30.0-py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.30.0\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1e/fd/447ee6f5fe16a9189484b80fdf8492d30437734c335bcd159da91950da94/cmake-3.30.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7e/cf/fa4e2fcb2a54830610ac259a6140ac0f8996b8e518a3c21494a633f83e43/cmake-3.30.0-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/62/18/803e561b42bba18e7ec1a2fec441340c096cb685be76185e4388bc67795c/cmake-3.30.0-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c9/c4/bfbe474c72597784403626beeb45c4c94c8df8a074ea4d4bfba7b1202754/cmake-3.30.0-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/f9/2e/4f04db5517547aea3cf7dc59c4fef66b2b0e647792babd913b956aa95ceb/cmake-3.30.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.30.0\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/21/d7/3ac38fd5d82bed0878998b812289b91157d41a4c838f9feb7f88066f4edc/cmake-3.30.0-py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c3/b6/c62489c54d68e47f5ce9410be8c0f038e6363993279a27dba9b499de93c1/cmake-3.30.0-py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d4/c6/bef3d960d738d9e57063ec07614ea6576486c20b3e534e5c003a5636e0e5/cmake-3.30.0-py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c4/7e/9209607bb386da0ddce98061b713124a6cebe0f37624c6891b5779470412/cmake-3.30.0-py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b1/a6/2784d503c11c12b0f9286b0b599645eebad30e43ac3080c0715665588a89/cmake-3.30.0-py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/93/bc/062cd2d42629841cd12ea2e594d04bcb8b5d3f706b6c36b2f31814f03b48/cmake-3.30.0-py3-none-win32.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/51/e1/b22898f5eabf60c821e4ebb9815bfb394472a8da9c2d2c18f3640f66dcb2/cmake-3.30.0-py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2c/9e/275ad404ae6b8fe950ddaa9dc865c283dfc9902db001c4fb9a980be6d5a5/cmake-3.30.0-py3-none-win_arm64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/53/6e/969bd8e01358730ddcfce4a04a7caa8ab3c5e2fd1f1bbad9e6b6276c8b54/cmake-3.30.0.tar.gz (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.30.0\n", + " Skipping link: none of the wheel's tags (py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/57/24/bd87254c67ce63457dcd8a1f1538f797c6a6d2e19c1b2985a2323e263e88/cmake-3.30.1-py3-none-macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0e/5e/077f529318efd7f13f8acc44488a0901f8ad7f58ae6913b327813d5baa25/cmake-3.30.1-py3-none-manylinux_2_12_i686.manylinux2010_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/e5/04/12032e8345bb07439a38fa5a81d1a79d208417cea4874a180d107aa6e613/cmake-3.30.1-py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.30.1\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/40/9d/945e55ca87d8f15eacb50ea2ffb334f73773dd8b69b57fa20edbf44d4cde/cmake-3.30.1-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cb/6c/52bc6bb4952a0487bc5dfb0fee4db8ff5dcfbe0061e806a0e01b553e1def/cmake-3.30.1-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/35/34/180972b77a17f21956778f0a23c8bd254ec64284e5d2d6961523189895c3/cmake-3.30.1-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f2/36/4e59671c6e51eaf8fce45a138664e0c0fda8e5c490d0bb16ac885f608634/cmake-3.30.1-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/78/5e/c274ffd124b8d4d95734af94c1080f0421c89dabdea2475651a7bd1e02ca/cmake-3.30.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.30.1\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/29/e1/f2244ae08cdd9ff2d77a15a76fcf5b7af0e1672e5c6d623ab173d4048c6e/cmake-3.30.1-py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/94/a8/a4b692d3862faef908b79284a3315bb286bc3112548f027a530912443328/cmake-3.30.1-py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/73/24/ed86da1a723560b58fe0a87e51ae893865317d53845a4afed0f338781d17/cmake-3.30.1-py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e2/ef/329dbda0756e6f2ccb5615fe956d546d44ba9b9021cb9a04bd29ec541aef/cmake-3.30.1-py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/14/81/df2e9cb1051ce5ba29d0fb77e077be9602af73eab9b1448613f737323606/cmake-3.30.1-py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/74/48/5681b6efadf0060e00e6cdf24346a0be70daf97d086c6abc04418ce5b284/cmake-3.30.1-py3-none-win32.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/63/0c/86925da0a97e9af20f2de0e0aef93985369dbace8cf33773da389622101c/cmake-3.30.1-py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c5/54/4116f323d9514b34e4a6430a24465322a3a1dc2552a572e063aa1e6d00f7/cmake-3.30.1-py3-none-win_arm64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/cd/00/94a5cba1229e1406c032ea6445f387c3cfb9aaa020b87d9160b75ac09ea2/cmake-3.30.1.tar.gz (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.30.1\n", + " Skipping link: none of the wheel's tags (py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9e/d8/a8c9d7310ee1b0bd5ddc7ef1009c7dcb122bad5ec79e7e49e77f2f4ea662/cmake-3.30.2-py3-none-macosx_11_0_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/34/db/71d3a15324e75486810be65269f71bb2916992ac79c7d298699c03e77464/cmake-3.30.2-py3-none-manylinux_2_12_i686.manylinux2010_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/62/c8/5d85978610809832742eae54a1888e288e93b2376d2b7a16abc869f9234d/cmake-3.30.2-py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.30.2\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2d/e9/90272f2c830b9ac36ccd9ef2780a3d879e638b77c71c929db9278867ecc4/cmake-3.30.2-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/23/87/bd250c2ed2c40764443896af6d430108c8bb9bd1c7594ed00ae50daa9ff0/cmake-3.30.2-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4d/39/5b51898846b14878bedeab8979608abe0e004cd7d43ee8c33269d521d22d/cmake-3.30.2-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/96/a1/b650ad960d533e20568eff8f91763f7f2e3ab346d4dc7574621e07ca3a4b/cmake-3.30.2-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/69/70/242937601f9ff9e6df4c0587b5a7702be4dbfd33420b409d80e2bccc276a/cmake-3.30.2-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.30.2\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e0/84/26b06bb25888f5e842d2334d6fd1c15b4a939a2ab0ba8d2232ae922e5811/cmake-3.30.2-py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/17/ac/6ae65664b0bd30124fe66d6731a41f5b621f57a9b76d92840e0a2e3cafdf/cmake-3.30.2-py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f6/52/f622cb8df88dcdf62d18372438e18ecc80cecfa9d309d9b00f02e7c09001/cmake-3.30.2-py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/49/4a/5bbc863f09d844af8087d55b0c43e115863f7c7691ec41e58ffc0f36ac46/cmake-3.30.2-py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2c/95/8d533e6180420bd80956432d3505b86a948585366d653897f5ab4a7e6c98/cmake-3.30.2-py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/69/7f/cb4acbe5e261cc45164c2b8563b1c08c0f21138381d7bb3e944d5247dba9/cmake-3.30.2-py3-none-win32.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5b/34/a6a1030ec63da17e884bf2916f7ff92ad76f730d5e8edafd948b99c05384/cmake-3.30.2-py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/51/c3/c8b7c00cf1a91dfa60d2bbd1d1aa0b02aa0b94bf61e6999be313ff83ffe5/cmake-3.30.2-py3-none-win_arm64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/ab/00/278ec45e7c9619e95fd7ed723237348095397511e2552f66390648ca1c46/cmake-3.30.2.tar.gz (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.30.2\n", + " Skipping link: none of the wheel's tags (py3-none-macosx_10_10_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/da/de/23d480cab04cbcd6d7c615f1807316c9bc6780fb9b823f898eca80674bef/cmake-3.30.3-py3-none-macosx_11_0_universal2.macosx_11_0_arm64.macosx_10_10_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e0/18/fb2508f21061faaba36415a4b1ecc990ae56c6cd71ce7bdbc95bca77b695/cmake-3.30.3-py3-none-manylinux_2_12_i686.manylinux2010_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/cf/07/e2ac0f7fab5fb2746f3a3c4daec72860aa67ab669191fd0549dca9457c53/cmake-3.30.3-py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.30.3\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a5/7b/4a00c8a321638e07f9ad616ac7b4eac802cf91d69d60bb3e913e04d8282f/cmake-3.30.3-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8b/8a/e304d8afc757bc0766ba15e4b2518f808175191734237f1e70f073144fcd/cmake-3.30.3-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a2/67/d8d95041d8982cf9a1fc3a0d24a4dff723a55c01750f82599d7637e676ed/cmake-3.30.3-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/05/71/979ddc2b17357a128ad716689de2449db28f9efeab87d7a2506670b310d4/cmake-3.30.3-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/b0/bd/c92eb92654e41483fc79f309863c55647bcacbbc9b1312a9684d6e0ba725/cmake-3.30.3-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.30.3\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8b/61/3295b7fb9249390e4433096e1010670b42d47593527f1c870df535ec7109/cmake-3.30.3-py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/81/89/ac737c0657f24813cf199381fd884189b49d64f9b7aa314196440024cd37/cmake-3.30.3-py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ea/34/199690833e707a9d41acd8518efb670d9ad1cdd0f0eaac56bf6254f291f9/cmake-3.30.3-py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bf/34/307dd0d3a920255210d2f52f6205629f3dc3b1291cc022a0990a6a72074c/cmake-3.30.3-py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c7/98/9fdebaa3be70c68c11552aca4595fad605f2ab3d0865c1ef85cbf8d9ea16/cmake-3.30.3-py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/38/45/fd47b26e1a66fe08ae2cf3364b03595114ce506c8bd33510f9c24e3e0ba3/cmake-3.30.3-py3-none-win32.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2d/df/51d938710ba4c3af94fe65bec019dd2eb4aca291cf0ad187627499aded97/cmake-3.30.3-py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ea/cd/3087935cb6471cbd32e79ddadc2f707ac5365721938113680b84e78bdd7b/cmake-3.30.3-py3-none-win_arm64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/61/59/c5298e16a4e44b411e53aea01ddb1cc263827911675a3b6c2a8c5d0d5e96/cmake-3.30.3.tar.gz (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.30.3\n", + " Skipping link: none of the wheel's tags (py3-none-macosx_10_10_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6e/d5/23c32a44f2027dc3fa70c5ee736f01aceb5ae47f3c78c562f61863f0a700/cmake-3.30.4-py3-none-macosx_10_10_universal2.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b5/6b/10c7159b6924eaf4adf8d27a41a25c04fa480db648cb2131b35b7c4e3d31/cmake-3.30.4-py3-none-manylinux_2_12_i686.manylinux2010_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/24/bd/77a5902f1532c12b357c969857903062249912d3d8058c51ae80be8faa38/cmake-3.30.4-py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.30.4\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/89/83/c7e9781b8d4f21ce6e6f2c832293457c563729d0378670e1cc7139aa5a94/cmake-3.30.4-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_i686, py3-none-manylinux_2_17_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/90/a6/7de29345f2e42e71d55fce8809bb139fa19947d4beb53d52abb51162d4d3/cmake-3.30.4-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8e/83/66298708019bbe7b87e7ff8f131ea6686a05119dde44c00440278495f1e9/cmake-3.30.4-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/aa/29/0dcd073a87843c4424c0c1c0fdfdf41acadf0c5aa64cbf8b1cb8c4a234d1/cmake-3.30.4-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/e9/50/b23e70979e62e9633281448af22cd79deff3a7a7bf656c61399d1c8735ac/cmake-3.30.4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.30.4\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5a/78/4794334640d3a22b8a7fe517a0d78be323aa21708bacf6f5adaa8ca7e216/cmake-3.30.4-py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c6/8e/d94b94ac3787a9e6e073d78aca0f057d07be765e476a3279fa72be6d02f8/cmake-3.30.4-py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4b/df/bdfa0ec878594421c5f48f15dfe69081c53652505ad49acaa482d67c8ccb/cmake-3.30.4-py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f2/6b/14d580b77fd2c0be31f01e5b9b9ef58441194455b221fe0ccfe6fd3ad84f/cmake-3.30.4-py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a6/f1/03b03545bfae0d7b9f5507afdbe128eebd6fd53a53c6c4625c3975de5d2a/cmake-3.30.4-py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6a/eb/1b8a24c6794bf396ad81c89f753359b6ce1f8f7a1cd07008d474da5f8b49/cmake-3.30.4-py3-none-win32.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0a/e8/e2822ab7a8317aa598c76aea7f108009e6857ba43fa3b2d2550adf99444e/cmake-3.30.4-py3-none-win_amd64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Skipping link: none of the wheel's tags (py3-none-win_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f3/42/66d1ca37d39eee9ca4a9a4205aee0aef54c2c1388d69becae755b84e2915/cmake-3.30.4-py3-none-win_arm64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7)\n", + " Found link https://files.pythonhosted.org/packages/59/17/583aa5d3e91b26fe778941be92d3d05cc823553410e294b4b72c48b832a0/cmake-3.30.4.tar.gz (from https://pypi.org/simple/cmake/) (requires-python:>=3.7), version: 3.30.4\n", + " Fetching project page and analyzing links: https://abetlen.github.io/llama-cpp-python/whl/12.1/cmake/\n", + " Getting page https://abetlen.github.io/llama-cpp-python/whl/12.1/cmake/\n", + " Found index url https://abetlen.github.io/llama-cpp-python/whl/12.1/\n", + " Looking up \"https://abetlen.github.io/llama-cpp-python/whl/12.1/cmake/\" in the cache\n", + " Request header has \"max_age\" as 0, cache bypassed\n", + " No cache entry available\n", + " Starting new HTTPS connection (1): abetlen.github.io:443\n", + " https://abetlen.github.io:443 \"GET /llama-cpp-python/whl/12.1/cmake/ HTTP/1.1\" 404 5254\n", + " Status code 404 not in (200, 203, 300, 301, 308)\n", + " Could not fetch URL https://abetlen.github.io/llama-cpp-python/whl/12.1/cmake/: 404 Client Error: Not Found for url: https://abetlen.github.io/llama-cpp-python/whl/12.1/cmake/ - skipping\n", + " Skipping link: not a file: https://pypi.org/simple/cmake/\n", + " Skipping link: not a file: https://abetlen.github.io/llama-cpp-python/whl/12.1/cmake/\n", + " Given no hashes to check 150 links for project 'cmake': discarding no candidates\n", + " Collecting cmake>=3.21\n", + " Obtaining dependency information for cmake>=3.21 from https://files.pythonhosted.org/packages/e9/50/b23e70979e62e9633281448af22cd79deff3a7a7bf656c61399d1c8735ac/cmake-3.30.4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata\n", + " Created temporary directory: /tmp/pip-unpack-zgc_snbs\n", + " Looking up \"https://files.pythonhosted.org/packages/e9/50/b23e70979e62e9633281448af22cd79deff3a7a7bf656c61399d1c8735ac/cmake-3.30.4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata\" in the cache\n", + " Current age based on date: 335429\n", + " Ignoring unknown cache-control directive: immutable\n", + " Freshness lifetime from max-age: 365000000\n", + " The response is \"fresh\", returning cached response\n", + " 365000000 > 335429\n", + " Using cached cmake-3.30.4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.4 kB)\n", + " 2 location(s) to search for versions of ninja:\n", + " * https://pypi.org/simple/ninja/\n", + " * https://abetlen.github.io/llama-cpp-python/whl/12.1/ninja/\n", + " Fetching project page and analyzing links: https://pypi.org/simple/ninja/\n", + " Getting page https://pypi.org/simple/ninja/\n", + " Found index url https://pypi.org/simple/\n", + " Looking up \"https://pypi.org/simple/ninja/\" in the cache\n", + " Request header has \"max_age\" as 0, cache bypassed\n", + " https://pypi.org:443 \"GET /simple/ninja/ HTTP/1.1\" 304 0\n", + " Fetched page https://pypi.org/simple/ninja/ as application/vnd.pypi.simple.v1+json\n", + " Found link https://files.pythonhosted.org/packages/55/c3/d669ec5d9f8dc2a24cdb5cdf3d3cbb99ee2ed65622472fa901bffea80baa/ninja-1.5.3.tar.gz (from https://pypi.org/simple/ninja/), version: 1.5.3\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-macosx_10_11_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/60/ee/c6728cd94bac29a6c76ca29d2f698bc233650edbccdbad22dbbdddc7f971/ninja-1.7.2-cp27-cp27m-macosx_10_11_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3f/ca/8573f4b0a561c340776562e2465f55b2b1e352b61e2b929c627601e3d869/ninja-1.7.2-cp27-cp27m-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/77/06/02bcf1894f825418ffb504a4ec27a2cff7106c19bf985c17512ccde45451/ninja-1.7.2-cp27-cp27m-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/35/5e/8bbc939620b86070904993c8a7548bbc720565e000f96a3a9e0b9cde16cd/ninja-1.7.2-cp27-cp27m-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ee/47/b979f071c3c1d0d85c3a9cbab92da257fab573da13c7b144559d2735eb1a/ninja-1.7.2-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/90/fa/378005de0de44a7038cd60e23a344813e132477cf590ad66dc7854303136/ninja-1.7.2-cp27-cp27mu-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/db/85/09f78a11a71e1908c38c50fe59030aa9f9c333815918c3afa03460210d2a/ninja-1.7.2-cp27-cp27mu-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-macosx_10_11_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/11/d9/b035bcb4835cb3c5b9e436ebd80dfdf04c5d7440125da7ad10d74a7e4e13/ninja-1.7.2-cp33-cp33m-macosx_10_11_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f9/9e/f1673e9daf024f69ef4e3b05920ea1bacda4a2118adf92f74bba8a0cabf4/ninja-1.7.2-cp33-cp33m-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bd/e6/8a63e03262ce835f7cfd445bf0eaea634054d8ca7f48f3b8a3fd66f6ad7b/ninja-1.7.2-cp33-cp33m-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8a/21/f38309feff0a5393f12be8e48e000891a70c5ba8ed093c6f57acbcef4ae0/ninja-1.7.2-cp33-cp33m-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/13/3f/385670df4d3395d71889235d2f71f0cb5432ff00f7034f644e307a0cfca8/ninja-1.7.2-cp33-cp33m-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-macosx_10_11_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ed/b7/1eafb017dfb30423a1e677fcc156a15a801d647f33fa33f4f5d264463530/ninja-1.7.2-cp34-cp34m-macosx_10_11_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/46/35/423b8aa44eaae5d329c085cc9a4b5e9b1f9751b42ba6fa39f8d29b83ae4b/ninja-1.7.2-cp34-cp34m-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cb/80/f5ac689f8b5fbc74b06f79bc4a8e1a4eaeaaa6d52233673a0a1537a514b3/ninja-1.7.2-cp34-cp34m-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f1/f2/e0cc68d6860f3966cdaa01a9553cc6f8ad9b9508ccb9e5878e3c7029d381/ninja-1.7.2-cp34-cp34m-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e3/2c/8d21d6280353d03f24ee21ee64109097231c055db89be4cef1ec7bdea35d/ninja-1.7.2-cp34-cp34m-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-macosx_10_11_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/07/65/591c872ff328a5f83103015830a33c4d2c012f661bf9f98a70e33b5561e8/ninja-1.7.2-cp35-cp35m-macosx_10_11_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5b/39/8c7ab50acf946c465859d1caf3e67fe85136603d1ae65e281afb1ab30a39/ninja-1.7.2-cp35-cp35m-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6d/1a/907b09c3cdbaafe71f4386460f855bfbbdfe61ef90e45450f7a35dbb050d/ninja-1.7.2-cp35-cp35m-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d2/c1/4e1b9d03b83cdf299da76cb3c689ddd563a999ff7fc177f6269d6b18a319/ninja-1.7.2-cp35-cp35m-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/dc/f1/94267737c649f3fcab5739e8ead8d0c31a0dacb1559ea30ac4c93eb41eaf/ninja-1.7.2-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Found link https://files.pythonhosted.org/packages/90/51/1081286887cdb01b4931e9300c4b7b492a701c2d394ee04688e57d420a9b/ninja-1.7.2.tar.gz (from https://pypi.org/simple/ninja/), version: 1.7.2\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-macosx_10_11_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/45/43/dca463745c8a531f004fa2f9b4efb161fb609bf3672d406dde13dc272c41/ninja-1.7.2.post1-cp27-cp27m-macosx_10_11_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2e/92/019398e94fb212a9c3711b69f23c681634876d2365a1bef7f184933065ea/ninja-1.7.2.post1-cp27-cp27m-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/61/93/787ecc40eae29f2b1b17c3e77491e2ed98279e024beba51a900bbcbb0963/ninja-1.7.2.post1-cp27-cp27m-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/11/10/8d5cd47a299e8c5c36b05c22dee404983604f55900a764d2b79ea55eab36/ninja-1.7.2.post1-cp27-cp27m-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/78/30/2dce86181df37cabd85cb4ec04b423757268d75a9417395213c70662bd3b/ninja-1.7.2.post1-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6e/bf/c2eb30bdaffc6857ba70c07a35928aede9f6bb86b73b8f28194c07f0fdf2/ninja-1.7.2.post1-cp27-cp27mu-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b1/e8/4c6596b0e099a59595a76098bf0ba3345b30a7edc1380b70464b2b06d0b1/ninja-1.7.2.post1-cp27-cp27mu-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-macosx_10_11_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3f/01/1f31bc0b12300d89ee19c7bf238dbeb2765e7b31d9e5960bad6e0b846594/ninja-1.7.2.post1-cp33-cp33m-macosx_10_11_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ed/e0/e5ffcd220bd224a2febc4c9d0880804724e6cba67590c6b6664173f9aa47/ninja-1.7.2.post1-cp33-cp33m-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/84/3c/68adc3a60c00bbb86536d49790eb2ae092e99d6ec4a94f6a4e7131b52b29/ninja-1.7.2.post1-cp33-cp33m-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fd/12/b50a868d16dcbed98fc08bbeddbb595898ac2b7c7af541d5ac42238a50d3/ninja-1.7.2.post1-cp33-cp33m-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/64/da/51468ea08c214b27898781924a79b68b77ad97f8d8b30bd2fb2ea8802573/ninja-1.7.2.post1-cp33-cp33m-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-macosx_10_11_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3c/12/39488e1330de4738f3bced2e88a052906a7033bf8a03ac08329ac923c07f/ninja-1.7.2.post1-cp34-cp34m-macosx_10_11_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f8/c5/e4d27a86f44135a313e6c96f1dfcea0c548cd14591900f00b14388cb1d1c/ninja-1.7.2.post1-cp34-cp34m-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fe/5f/931cabcc6d51b75da6b7356eb4e281fb1f72baa4ec197c5995c40c320f55/ninja-1.7.2.post1-cp34-cp34m-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fa/7b/3011ecf04766f537395e241f42232c44bdf8b0b10d9b3763893439c39391/ninja-1.7.2.post1-cp34-cp34m-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/41/b0/0e818aa3d6969b231e0d28cf33cdbebe76f47db90f82890755fedd29e25d/ninja-1.7.2.post1-cp34-cp34m-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-macosx_10_11_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/de/0f/f50181a79a0dd6da806a1889b552eca1270accef39bb27aea625d0f6d56c/ninja-1.7.2.post1-cp35-cp35m-macosx_10_11_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bd/07/8b4b0dd50351364f1d5d5db12d1b2c444e8fe5cf4797652846b3eb6c19ff/ninja-1.7.2.post1-cp35-cp35m-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8d/65/882899ed00f5c3fe319f716ca0c8810b430d235549d16225094f69691432/ninja-1.7.2.post1-cp35-cp35m-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/73/f6/940c70b547cadfd337fcdb5e0aa09924296c4620b47f423645e04618df98/ninja-1.7.2.post1-cp35-cp35m-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/dc/84/41e75989287add6376089e4173e5a3693f29f76231237e7fe461b19f5c20/ninja-1.7.2.post1-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_11_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1c/1d/9dc6639591bf9e8e14ca152260862e2805bbd07546d3ebb06243c1ead38d/ninja-1.7.2.post1-cp36-cp36m-macosx_10_11_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/90/8a/0d9e3c332dbe03fa83fb7453dd4ba8bdd7b6960b59e26e7d793a413347d8/ninja-1.7.2.post1-cp36-cp36m-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ad/e1/1764fe762466e01c032b9fde2157578639148ec53e4952aaf4787c3e21be/ninja-1.7.2.post1-cp36-cp36m-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0e/f4/9ab5a5a6a999b08915078d5a05f1f662091f3cae7f6d48cb22753e98ec08/ninja-1.7.2.post1-cp36-cp36m-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b4/df/fd1fa08a7b78bff32144256bac14ac9aac0962cd007d2185ee8337c9be33/ninja-1.7.2.post1-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Found link https://files.pythonhosted.org/packages/8d/58/6e6322e86fa2653c86845cbbb9dcb8e4efa8994754e0fd3ec57e4ecbcbd5/ninja-1.7.2.post1.tar.gz (from https://pypi.org/simple/ninja/), version: 1.7.2.post1\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d0/5e/ea3bcd9b74d528620923209ba1225f59a0a1305afbdadc9390912b625b14/ninja-1.7.2.post2-cp27-cp27m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e8/b9/5f48f006ae3045a23b19a1b4dae9cad3849dd1675c50619b1a00f29c5751/ninja-1.7.2.post2-cp27-cp27m-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/dd/25/a6a6ef04bcc8fbbf4ec972c2ce4ef25941bce6846f21b109af0936bb0e62/ninja-1.7.2.post2-cp27-cp27m-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0d/cb/da928638592805b373eef0d882cedf1e02350a38966f74d570539759c8f9/ninja-1.7.2.post2-cp27-cp27m-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/25/9c/aeff38d642beee3f66ed5e21b2382ec3e1790ac7b7f11fa350a45ae78838/ninja-1.7.2.post2-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/64/1d/124882129861388e756493d1f4be9d11941e9cc52c20552699eda0e95f3a/ninja-1.7.2.post2-cp27-cp27mu-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/56/2f/e67a491c12367cf9702c0661302daa84203c78e84f4d9238f5ef7b282996/ninja-1.7.2.post2-cp27-cp27mu-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0a/7c/96e5ab8f5eaa50f9c288ae1cdee83481c1d7c0736599b5563788a3941cd4/ninja-1.7.2.post2-cp33-cp33m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/09/0d/f36a9e781dd0e00908a1201072465bbadf65ead6e341c5b6a3904b16d316/ninja-1.7.2.post2-cp33-cp33m-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/47/dd/ed8ea42ee63cb1fb0f65ef44315c3f236edf614ccf9e95882b0d8c6a442e/ninja-1.7.2.post2-cp33-cp33m-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/be/9b/3881cb1817cadf1b2e22e2396ccef5ff14c371ab6e719efabaaebe8db65d/ninja-1.7.2.post2-cp33-cp33m-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/52/1b/6b291d7a2c530e801d68515c767b2854f034c77ac62eb8fbbfff94775a15/ninja-1.7.2.post2-cp33-cp33m-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4e/91/832bca96b6b5b833c79ca60898fa351523aa46a366c1ee21e09892a62062/ninja-1.7.2.post2-cp34-cp34m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/41/ab/dac9eef958b0327f08476ea917238dd20a3004223c1944fc3e9cf95945ce/ninja-1.7.2.post2-cp34-cp34m-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e1/85/fe78e23cd9afdac95416f9bdc1a7fd535ae407a6cffc8bea30664d50f148/ninja-1.7.2.post2-cp34-cp34m-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3a/da/3bfaed8153673b8a326c2606234c22585dcdac0b636e7940c8fceae2a82e/ninja-1.7.2.post2-cp34-cp34m-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1f/4d/dc0fd3391d7d18e1834d0176116aca30db60b9c5267cdefafe5f4fc04027/ninja-1.7.2.post2-cp34-cp34m-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c7/49/2daee5f90db064747679c0a6d68c1e66aca5cbaaa57c6d8c39e4e8d33dfd/ninja-1.7.2.post2-cp35-cp35m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2d/b9/6dd90e7e49d5dd9190eecf97ec8bcc257cfedad8fdf7575283c9b027b43c/ninja-1.7.2.post2-cp35-cp35m-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0d/eb/6d2dd399a13f39d2085fca4b85fab6209efcb0b6373f0175ad198a6f3eef/ninja-1.7.2.post2-cp35-cp35m-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ff/8d/ff7933b94373b203ea6886611a66034c676608bfdf73f522e6e773b476f7/ninja-1.7.2.post2-cp35-cp35m-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/28/34/3e9efc94418ff7f23dc8daf19c33417e538071715c88e77275e4391a16b6/ninja-1.7.2.post2-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fa/d6/787b60a5a909014516469fde0deba341af58fd1a0e57fb0e2d063e813959/ninja-1.7.2.post2-cp36-cp36m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e3/01/cb18c60a1f854c28a5e7a528a8d0e097075fc85dc5dd737e16ebeb720dc0/ninja-1.7.2.post2-cp36-cp36m-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fe/15/c6c9689f00b69ec8ebf8fa7b357be7a84a65de8cd9995f5b887ede1de0e6/ninja-1.7.2.post2-cp36-cp36m-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/32/ee/46261f04ab885752371fbf17bc556e13ac670a2ddb6cd32f758dd8d1ed53/ninja-1.7.2.post2-cp36-cp36m-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f5/f4/f4d27f6e36ceb32593e7570ec0168fb45a655673069728458167aca31017/ninja-1.7.2.post2-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Found link https://files.pythonhosted.org/packages/49/b7/9c3070d7329a946baf510fde849f3d4f5df97d40972ab8d1c4ffa9b06a4c/ninja-1.7.2.post2.tar.gz (from https://pypi.org/simple/ninja/), version: 1.7.2.post2\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/74/66/1430085e91c6dcbea42448d3b0f7e57e89cf82485cfb01d6aa881fb3cf74/ninja-1.8.2-cp27-cp27m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/66/c7/2a654adf123581ea3d2069e1fd57ff1426d07710ba272c52072526cc70d6/ninja-1.8.2-cp27-cp27m-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1a/95/f24cf139f050d602c6535ced0d53d2b2dde6988c81f594173057b2f4b444/ninja-1.8.2-cp27-cp27m-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/08/82/7f7185a4c37fdde42fbfb784d747d476b5695c2b62eef84b14b3b9ae488a/ninja-1.8.2-cp27-cp27m-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7f/13/ff5809479266bd9490aba8ae331e8f5bf53866f3a9bdc1b75b9f59e60770/ninja-1.8.2-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b1/d1/a6cb92810245cd5311905b8ad881dccf07c9b0f8ae2eeb5e817adcc65638/ninja-1.8.2-cp27-cp27mu-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fb/01/54f111935f58ddd9c9dbff81835d99f7eb0fa33175fcd43554d28d8bb976/ninja-1.8.2-cp27-cp27mu-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/72/c2/838675d5bee78efa170c8d823730e6031f20a14a90ecc2da8a3771a7e6f6/ninja-1.8.2-cp33-cp33m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/83/da/094f0ac4e4f3717eb20502c6a9bd0c6d6804c64ae23c7cb31ccc85404f68/ninja-1.8.2-cp33-cp33m-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/15/e7/3c7a12736667e9efbccd1fed9a7dfbf8d034a9f361430b716dc138318fbd/ninja-1.8.2-cp33-cp33m-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a7/a9/ed3097570fd3e65f3c4c383ce8943fba7dd7e700d2eaa37a29dbb6aa375e/ninja-1.8.2-cp33-cp33m-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp33-cp33m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/61/a8/42551ad15e54b7432ff4affd2a172537ccab8d06f1062ca387257db52748/ninja-1.8.2-cp33-cp33m-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1c/d1/7464c7cfe7b77168a36e8f82bc456abb73074c9e7552aba2a8819cafd853/ninja-1.8.2-cp34-cp34m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c1/31/837f085bf7117723de04a345ccf7462c6d702227893da956a25220062424/ninja-1.8.2-cp34-cp34m-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/19/9e/4221ccb89ba61ac1b06f1e1df78688179a607d61176bb30497d02c87614e/ninja-1.8.2-cp34-cp34m-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f5/04/b824ca890a9588a53fa4e83b2320fa833d961164217bf07a1b8c2017bc8b/ninja-1.8.2-cp34-cp34m-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4c/e4/f76aa3a223f2a7c5847280bd060303f024b41ecbae8a581203dc2b5bfd5a/ninja-1.8.2-cp34-cp34m-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/25/b3/004edf1f15eb09b1c6db00e0a394347f710ed7229dfe2f6537605da42446/ninja-1.8.2-cp35-cp35m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2f/6b/cab5859433e09df9cf8c871624784223bc52eef245914c3c3dd9484783b8/ninja-1.8.2-cp35-cp35m-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fb/87/b640c7319881f1d2c5285ffbf5d5cd6bbf4049e635d966aae6a8a6eb0a4a/ninja-1.8.2-cp35-cp35m-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c5/16/03be8418f423e912f06d9bd6291468b94f15307fe9030a64caa157f3a9d0/ninja-1.8.2-cp35-cp35m-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0b/9b/ea911d4fa30d051cdb9a568d0286338068859515df96f1ee688a5552d759/ninja-1.8.2-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/96/e6/47f09ade19636860dcfe906418e3455dba6f7d23fb759bd0f2a89be4fca2/ninja-1.8.2-cp36-cp36m-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a7/c6/e95b14594cab908fc177b6e234d11a94c92f8e2c03b9ee4954fe7fd26b5b/ninja-1.8.2-cp36-cp36m-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b4/73/9d802b2d2e361c545ed475d821131adba57ec24cc7a7771f183f9bb6eca4/ninja-1.8.2-cp36-cp36m-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e6/78/01f60f9181192f57c911ed6f88d951a126c0dc3128298d3aa6c3a75f0eb3/ninja-1.8.2-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Found link https://files.pythonhosted.org/packages/9c/51/332390f0e25882b8e1744ef626af70c780df66e2ba07c45428ad091be739/ninja-1.8.2.tar.gz (from https://pypi.org/simple/ninja/), version: 1.8.2\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3c/a0/7f83c0199cc1625a028fab8ee8394a75e391f4e5c8dd01f0781c7a434fed/ninja-1.8.2.post1-cp27-cp27m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f6/3e/99d1eda0c0185660fd12235353b3fd4c2061a603b376e7d34330e7f91606/ninja-1.8.2.post1-cp27-cp27m-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/29/82/116fa93058e0d0ba90e4182f61d567f9c4fa28ea72cfcea2e5fc6ad2f103/ninja-1.8.2.post1-cp27-cp27m-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/85/8c/e97d491cd4d4939e48bd0aeb0f49de0191a248e5c629d7e0bc05b467ba55/ninja-1.8.2.post1-cp27-cp27m-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d6/ee/038ae7b0d09879619ac4255621575d5c2d63aac20196cc6f5af0f331c9a3/ninja-1.8.2.post1-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/22/37/ded6514c0d9c6dbb8530e7abcd0784f053dd397dd3f71f623a3aceacf1ed/ninja-1.8.2.post1-cp27-cp27mu-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/01/69/f525f5134454af2594ac057c539213af596ba07cae6ce2b6c027363d22e0/ninja-1.8.2.post1-cp27-cp27mu-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/27/1b/29cdabeee14fdaa954efd9327b48fcb3f878e2e45b50a0fdc461cdf4f699/ninja-1.8.2.post1-cp34-cp34m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9f/d6/6341fad6eed067222a4abcc6b6651e6b73cbf3d67ee2e1977a9c1ad5f9b5/ninja-1.8.2.post1-cp34-cp34m-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e1/d3/2b0d58ffa35228999c6f5e82e035c153941fb555494dc0379b6d9f86f5b0/ninja-1.8.2.post1-cp34-cp34m-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a6/88/7f8a6ad378c94eede11c03c662f1af9095f4ed93cb6d657a9497d6344e6e/ninja-1.8.2.post1-cp34-cp34m-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2d/81/b6913c6c9d55a771a26e31bf401a233fdc201e554468817cacaeb5ae7073/ninja-1.8.2.post1-cp34-cp34m-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4f/57/6c81a934e6042d001537b4aaf22fd74ec82d1e3aa6bed7f12d6396f8d118/ninja-1.8.2.post1-cp35-cp35m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/db/ad/64e0473f613eb9b12958a4abd679d889694170bb721977d861c153a74d83/ninja-1.8.2.post1-cp35-cp35m-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/18/f3/b0cf6939ab044d5ac7fe234926b8a0579faca201b774b38e7a2005d36eca/ninja-1.8.2.post1-cp35-cp35m-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9f/a4/8892acad523e2c0ff6acf58f9baf658e90c386fadd61cfe5bb852fb3dbc5/ninja-1.8.2.post1-cp35-cp35m-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d7/04/c61c53a4363725f5278b97fbfb8e728812316ba50838714d65e38347a15a/ninja-1.8.2.post1-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cb/83/c6f77b109865930494b4a6b8074e6e42f2ce9fbabecadbea6a50a45c849d/ninja-1.8.2.post1-cp36-cp36m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/da/87/8b867d1029621ba1a9f88e782929c7fd693eef4c52c8855d51dad9e686c2/ninja-1.8.2.post1-cp36-cp36m-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/11/9c/11ea776653319992f7bab8bbe87b6a318462c666e3be4e72f20e3059a308/ninja-1.8.2.post1-cp36-cp36m-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/20/d8/6a607aa8b08dd5a601f7e70fe7aa89c6993c95833f064ef44732d3689493/ninja-1.8.2.post1-cp36-cp36m-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/25/7a/06ed69ef4f26852ebc0e8fde903d879a3bd8250ddb80e4f3ffed19df3cf2/ninja-1.8.2.post1-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c2/61/5bc4c51259baada37a59b945dd97f1498f147dbc68f04785ffdd55221066/ninja-1.8.2.post1-cp37-cp37m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0c/14/c52cb7f451246338e2d110c999c8a825e856612fd4e5969de52593b08f19/ninja-1.8.2.post1-cp37-cp37m-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1f/b0/c48f0773f8df0ef0fe40e987749754de2c98ac9f4545d4c959f03c0bfe5f/ninja-1.8.2.post1-cp37-cp37m-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f4/78/62411d2520830bd4a3414734ec5124fdb6f870e67a832b133afe8e906138/ninja-1.8.2.post1-cp37-cp37m-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b6/31/7966d2e754917a15eef46e1edd5543ef155310ea9505c254b85fec68456b/ninja-1.8.2.post1-cp37-cp37m-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Found link https://files.pythonhosted.org/packages/2b/99/91f086888ba715cdb352b9147dc32a44871272969442c4b68c92be065303/ninja-1.8.2.post1.tar.gz (from https://pypi.org/simple/ninja/), version: 1.8.2.post1\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/84/dc/1fcc09e6ae76a66ff3c163352b094d2492571b8a13d781c5b238424d2316/ninja-1.8.2.post2-cp27-cp27m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/04/fa/a71d1a2aaddffe7a4d80788bdfd10f77bc65e8876c8d2ceb3ab473a12330/ninja-1.8.2.post2-cp27-cp27m-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1f/65/ac9634351a7404bdbd6a2ab095a0d66c8e2425cc8493857c84f4dc38f722/ninja-1.8.2.post2-cp27-cp27m-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/59/9c/b702e60473d2acc2b93036c205880c251af5821efa19b3ca625cb1de4abe/ninja-1.8.2.post2-cp27-cp27m-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e2/42/f84397a1cd951bad372969065398390c56873e4706e0155410cb59aa0602/ninja-1.8.2.post2-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a7/db/bf8754fbd47d23f139d5e0d7775a0be25d5895ff51e0911a359c02431476/ninja-1.8.2.post2-cp27-cp27mu-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f3/42/8941cb2d069e37462422bcd3497b7299dd2a992693dfe47bc4d77d47f4f2/ninja-1.8.2.post2-cp27-cp27mu-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/50/60/ad3d57c5f3f63497e634e8d5e54c3b850448b33ef7cd9f844499c2a1f72e/ninja-1.8.2.post2-cp34-cp34m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/72/1a/78972a383dddfdfcaa2a0cb036615f7070985831910ba15ac8de1c891c6b/ninja-1.8.2.post2-cp34-cp34m-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5e/72/456e0b051a469315d0d7492184dd29e7b37c206b771c75b0a6ca3848885d/ninja-1.8.2.post2-cp34-cp34m-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ff/6a/df24f300227f85eba6d000bf3a6954d4f0cf3f9f0a9bf86ef8dcee31e01f/ninja-1.8.2.post2-cp34-cp34m-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/11/e2/8a55171310a33ad5cca3f84283f65280acd3657deda5c6ba418e7840e2d3/ninja-1.8.2.post2-cp34-cp34m-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1c/3d/4274bb6df1e7d182f44aa63872d11704e605d16f4d39144fb33454e58074/ninja-1.8.2.post2-cp35-cp35m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/28/a1/1551e9c6f315c56f694718e160761c562232168527e293d5a4c3944c5cc0/ninja-1.8.2.post2-cp35-cp35m-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/24/c9/3ee97d3324f86d632cfd24a260018dc5f8459480a58ca2397f23a46d10b7/ninja-1.8.2.post2-cp35-cp35m-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6f/51/690f9bc27dc301f1f787a9921ecb1ae32f25bbbf53bc0a377bb6766302a6/ninja-1.8.2.post2-cp35-cp35m-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/92/16/c086b3c00dd7d70372989b454f687190198991215f98835730dd41f69cf4/ninja-1.8.2.post2-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2a/74/89cf823c99b22a2589809a74cc7dc24dc1aa429f5e0c15f00d9e5d6ae214/ninja-1.8.2.post2-cp36-cp36m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fd/bf/d9402c2e6ffade449f567782f0ac6f4e3d3abc0de21457c990bbef2d29de/ninja-1.8.2.post2-cp36-cp36m-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/20/6c/8bf281550ca984d673f76a6f59e5f2566cf21d5a8c7b2936e2cbc75488d3/ninja-1.8.2.post2-cp36-cp36m-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/25/bb/9db6fdd47f55585ed09f0c571d06646228a528cd225ce4c72cad4aa61c86/ninja-1.8.2.post2-cp36-cp36m-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/70/23/65b560d09eacc3f23824c5152fa63a2aabd68493c7368f35b67216e91f23/ninja-1.8.2.post2-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/47/33/bedf9f4b8c5360bfd9b3a35e4d0e7e8e066d3a25808bf5cd4a45ed357d0b/ninja-1.8.2.post2-cp37-cp37m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/82/d8/6c8688a0684ac83126f19a89deea7ee1c971e86a7474e4796da359183b8e/ninja-1.8.2.post2-cp37-cp37m-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/24/47/f02728a7c1618b12ead8b9c1c0cf373c4341d079d41734310aa804f2e3e7/ninja-1.8.2.post2-cp37-cp37m-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ce/9c/21a3e0b714f667322893c65d4351671b46820310f5d5921dfc2ebb8a5022/ninja-1.8.2.post2-cp37-cp37m-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3a/2c/43e8bcb535bf7ad56ddb7b8b80f63ac72d76927d152a81c7e11ee63b12c9/ninja-1.8.2.post2-cp37-cp37m-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Found link https://files.pythonhosted.org/packages/66/09/2a859888a29ca698c45c2e5a12b7f3dfdc58bd2896b33366dfffcba1a385/ninja-1.8.2.post2.tar.gz (from https://pypi.org/simple/ninja/), version: 1.8.2.post2\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7c/ae/2d555ceeb2ac342f65305aaecf5f47d32865e39d44deb807b6628d1bd5d3/ninja-1.9.0-cp27-cp27m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/10/9c/0ce4eb295872f0123e29389ff66d687a5e4f3da158e46e85674885b5c1a1/ninja-1.9.0-cp27-cp27m-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5d/45/d4f1038e437becb6fa79d84401365d338155503eb7215d8e4997e98e0ca6/ninja-1.9.0-cp27-cp27m-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4b/50/614c474822ee780f81737e9a02fa421e63f1f6d2e1a627c87334b722520c/ninja-1.9.0-cp27-cp27m-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0e/f0/d9901140b86b6e2adf91ee7460539e96b7424885e5db65d5abf69ccc538b/ninja-1.9.0-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1e/01/14635a1a742fa2285682fa73e24288ab217e8c96d14cf360a69729f89f5e/ninja-1.9.0-cp27-cp27mu-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp27-cp27mu-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/88/bc/7cddccd209e9d3d87046d17459bcf8844b205fdaca6051ea4d24ab525e5c/ninja-1.9.0-cp27-cp27mu-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e4/a2/1495bc3089d7e409a906bf3a8e865568bc5e0ebbd49a47b30b83b2c266ba/ninja-1.9.0-cp34-cp34m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/af/4e/718543626a2327e9bf9e901e53e99f8dc8b73c466d8bef1c8f100eae6624/ninja-1.9.0-cp34-cp34m-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/99/77/107f457b7a520a607642d5c40eb1b65d5c24fa80147a1818c6486301d9e8/ninja-1.9.0-cp34-cp34m-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ec/8c/b1ce369f19667b7d3c4d15181357dcc496b570750e580cd9c7e1df76bc27/ninja-1.9.0-cp34-cp34m-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp34-cp34m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/51/2a/4267645c5c906dde29666fbd0daa3f0ba781d8f37a86610fc4557e5e3fdf/ninja-1.9.0-cp34-cp34m-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/16/b1/14cfce561064c9ff03956f68a64a7f57b1169cb3670587fc3d5f962e95a6/ninja-1.9.0-cp35-cp35m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/36/46/ebc745f8b255c9e43bfd49f515bc7c2ce1264e6c9fe26b04ec191c25f324/ninja-1.9.0-cp35-cp35m-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f6/d0/6f0d28d016ffd5c734566c00881a3f344419415ad633ad05a2c0f9265903/ninja-1.9.0-cp35-cp35m-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7c/1d/e695c4219ee81b0feaec773b656aee836a280549da690e3e9f3b57e1f7a1/ninja-1.9.0-cp35-cp35m-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8b/94/bb220df85efa64e17fb8d0ab73c3aa6cac252ee1a7827641262aaf094d94/ninja-1.9.0-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ad/e5/0c8159c709472dfc2f0643be2a57667f82348de1777280bd9159ee1b623e/ninja-1.9.0-cp36-cp36m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/60/0d/133780e47e8b193df9d630cbd1f6bf754b1444ccf39b6e9a698193d33aa8/ninja-1.9.0-cp36-cp36m-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b9/c2/5ab1027c689be7419edee7145b9160438c4ce35bfd8662240e0f9ecbf2a8/ninja-1.9.0-cp36-cp36m-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c0/3c/655d73a034923075c0d731eb18cf40433612c49c9bb8708c066db5734fa5/ninja-1.9.0-cp36-cp36m-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b1/e3/4eea18116c48d730d6c8d95ca90d20c9edaa0d40d497d6be15164a2f72f5/ninja-1.9.0-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c5/b9/12ff96990be5d6f3cf89e603f471fb5513643740a9ec548774aab8379ac8/ninja-1.9.0-cp37-cp37m-macosx_10_6_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b5/3f/6260fda4d1e1e8aa6c46ffe382925406b9b9c276714c41cd421eafccb57d/ninja-1.9.0-cp37-cp37m-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/39/3e/4f105c5a160ce97f663691e4dc084289a66f9c4454b1d177711cead0cda1/ninja-1.9.0-cp37-cp37m-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/97/92/872b6d4db17215e910bfa1588ce6c5dfabf1d64254a35a03a6d9c2c0e6fd/ninja-1.9.0-cp37-cp37m-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7f/aa/d9b89200454dadf9e83c4267445612152ead9737d90c1d866d8f2c690602/ninja-1.9.0-cp37-cp37m-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Found link https://files.pythonhosted.org/packages/47/ff/e2ddb9b663fd387437f3aee7befc2376b98410c7375d1e3105c268274cd4/ninja-1.9.0.tar.gz (from https://pypi.org/simple/ninja/), version: 1.9.0\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/44/f6/d8e49a98fe7f68beaba9e48d27b93e5a34dffb48caab50eefa5f09b3a35e/ninja-1.9.0.post1-py2-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c9/de/990c077d18ce7891c8e90533e8a9681ccfd480add39faba123c4ec894a41/ninja-1.9.0.post1-py2-none-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6f/11/536b532fe7613de0376862ef20b8b2850033ed5675a8237bfb1a53ef6131/ninja-1.9.0.post1-py2-none-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6b/a3/62de120e2ae5a055cd7d811f378ded8292927d1a8aaa74ca5c3e5f6611ac/ninja-1.9.0.post1-py2-none-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b5/26/9a2d2699bb5d18df7ba730fc87d41802192aac733eaf60b0a2d65b6bbcbc/ninja-1.9.0.post1-py2-none-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py3-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fc/3a/824d7f8a44d5403219d72df0bbddba8d5d2c007f2f22b133d5cce018d775/ninja-1.9.0.post1-py3-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ac/10/29b900cc2a63dd95b9d71f68df9562754f406701eccfb2f0e807fd42c608/ninja-1.9.0.post1-py3-none-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Found link https://files.pythonhosted.org/packages/cc/bf/32e5dd5cce6543374e4050a7292099402ab80787eddf3732810a55b37763/ninja-1.9.0.post1-py3-none-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/), version: 1.9.0.post1\n", + " Skipping link: none of the wheel's tags (py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1b/77/22fe1a9b76a9e171477c0da2cf6b2aaf0f0b32a432f999defe810bb37641/ninja-1.9.0.post1-py3-none-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7b/25/6e388c2b1b64a433b165f51465ca4e46142c8044c4c75e252c2252c40af1/ninja-1.9.0.post1-py3-none-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Found link https://files.pythonhosted.org/packages/dd/96/e2ec4acccb8dee33b4987f553d531d61e3081c8d4cfbce249655dfe23906/ninja-1.9.0.post1.tar.gz (from https://pypi.org/simple/ninja/), version: 1.9.0.post1\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4e/0e/2243f5c7e8a6bdc3df4772a8de263b083cc4a11331894f9f8b1a83e11b07/ninja-1.10.0-py2-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c5/19/390bee539a34695ae18a9f5f3081989f5ee886e7d7cbd6b46edde0858d16/ninja-1.10.0-py2-none-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4e/9d/5321f92bff4ac3105121a1e1b32ae188025fb75fa3e356eeeb931135408a/ninja-1.10.0-py2-none-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py3-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/72/18/4287c1cf0400d8392085ab26a7c32fd68ca107bb9b3003a993282b860e2d/ninja-1.10.0-py3-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1b/1b/97875d9cc1af65d0fd92a7998f4aaa0e9bf11ffa484f78b41f77aafe590c/ninja-1.10.0-py3-none-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Found link https://files.pythonhosted.org/packages/d8/ff/6eb075fa26b5e57bcd952b036afb71b3f9cfe37ffe55a65de09f40b998df/ninja-1.10.0-py3-none-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/), version: 1.10.0\n", + " Found link https://files.pythonhosted.org/packages/aa/76/c546f9d833354325eebdbf9df33a3e5ba537c9f474ecc6e61da043afd4da/ninja-1.10.0.tar.gz (from https://pypi.org/simple/ninja/), version: 1.10.0\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/33/26/57c5890aa21a895af90f3234957572c6539b10fb20a97981ea55ded9e2ee/ninja-1.10.0.post1-py2-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a2/b8/8a5dacefd2b4f8663ea7ee5a6458e61377536be5e268f85d6d26780cf2b4/ninja-1.10.0.post1-py2-none-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/44/a2/c91b2f3959c996819f1b63466f398469d698835587cf0d30d2bccc6a00e7/ninja-1.10.0.post1-py2-none-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b5/df/31d88cc86f41afb82d458f4c9d2ca3e10ff4615621f06e1c14316fa9349a/ninja-1.10.0.post1-py2-none-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2f/95/eaf0fd3f3acbf1cfdc927ba67428dd92221fb56fa166701e17a89d734c83/ninja-1.10.0.post1-py2-none-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py3-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e7/ce/7ddc417f9806cf2f14166e5608c420b1dafff481a76349ac5086279ea81a/ninja-1.10.0.post1-py3-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/10/ef/4bd419c576ea6c4f9c4eedb6a0d87e5ac950698fb3db7875907e116e341c/ninja-1.10.0.post1-py3-none-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Found link https://files.pythonhosted.org/packages/f6/27/41b8a846496451ea9f103bf8e1d0d1b010d1180c30d84a87433ec5d7f88e/ninja-1.10.0.post1-py3-none-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/), version: 1.10.0.post1\n", + " Skipping link: none of the wheel's tags (py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/20/63/677e78f91d4c4b452c942dc44e16fa69d7a07413c50d2eba179519842acc/ninja-1.10.0.post1-py3-none-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8f/9b/2b93da6df3129a1af33e797570d6251d7d8596f402f32670b02d4d6e62d9/ninja-1.10.0.post1-py3-none-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Found link https://files.pythonhosted.org/packages/f3/05/f5f9f7accf3e2824d2546151dd68692a184113dc21e7785f2b230f7ee4f5/ninja-1.10.0.post1.tar.gz (from https://pypi.org/simple/ninja/), version: 1.10.0.post1\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7b/1b/03f3e6e1d099b17a28e55216a118722c0e384b5f68130b50ae3ff019584f/ninja-1.10.0.post2-py2-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ac/f3/66be805dbd66f0d677e44963fe725cbd418d34db43d7db91f2bcf677529c/ninja-1.10.0.post2-py2-none-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9a/e4/0daf240fd54c66a13531168df5584e46f16452c67fea3227d551b38c5159/ninja-1.10.0.post2-py2-none-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/18/d3/e6217d5c5b84e29ce36099e025e7e4a82be7e83981b12af43db88a1ae977/ninja-1.10.0.post2-py2-none-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f1/37/6721134203c85b0ca08a7b345c4dd4c5c2216de553ad288450f6381cb77a/ninja-1.10.0.post2-py2-none-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py3-none-macosx_10_6_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a1/4f/619a45eb3fa24d11a297790015dcc212ab85287ad39e744e2d5d3b028280/ninja-1.10.0.post2-py3-none-macosx_10_6_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py3-none-manylinux1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a1/9e/0b51be3491d1c214fc753f4b635e6daa8e2055ea186d30e92dd9b501d216/ninja-1.10.0.post2-py3-none-manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Found link https://files.pythonhosted.org/packages/1d/de/393468f2a37fc2c1dc3a06afc37775e27fde2d16845424141d4da62c686d/ninja-1.10.0.post2-py3-none-manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/), version: 1.10.0.post2\n", + " Skipping link: none of the wheel's tags (py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a0/04/406e0d64f349f89355a0bdd02a1d30ce3e93f58241ac6f6aef236e92deaa/ninja-1.10.0.post2-py3-none-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/37/0d/34185e60b43a65ebf00d54aec7be551345151bb99c9ce9b0fa46223b8f20/ninja-1.10.0.post2-py3-none-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Found link https://files.pythonhosted.org/packages/55/a3/56376f09d6be4be5b7ebfc492d3e89cb05206a61f8c5f695a5d1e8cc49b7/ninja-1.10.0.post2.tar.gz (from https://pypi.org/simple/ninja/), version: 1.10.0.post2\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_9_x86_64, py3-none-macosx_10_9_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b1/9b/e3a86b94ceaa57a0479147b85011830a1f2b680f98bbaa1f39849a909763/ninja-1.10.0.post3-py2.py3-none-macosx_10_9_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d5/e6/48e3fa37118f1dac3e70b1e3d582eefe7f9aedd55eff19194d0b35198fd9/ninja-1.10.0.post3-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e1/07/c6f2decba563ff3cf0f46dfc79d9fb40f270274f946ce9eeb72fa51a9fe0/ninja-1.10.0.post3-py2.py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bb/b3/d7289f38998ed70352490c1b51bbc7ec1c45da8175f2153a47f7c0191b1f/ninja-1.10.0.post3-py2.py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686, py2-none-manylinux_2_5_i686, py3-none-manylinux1_i686, py3-none-manylinux_2_5_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/85/6f/9f1aaf91c75fd4c6cc6acdb809f0c4e25aa4c8168e062f455339b8dee3fa/ninja-1.10.0.post3-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Found link https://files.pythonhosted.org/packages/14/9b/7caf9e81f7b55ca4afd5ef819a64e8993e849a60f9cefff18424696cddbc/ninja-1.10.0.post3-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/), version: 1.10.0.post3\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2a/bf/3b48f962dfe54a42c063ac0496f0635a23cb7b8841d0b88707d8009c1f00/ninja-1.10.0.post3-py2.py3-none-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7b/bd/c2554a5b64881e1dc8d15bbd0ff4a948a21fa4ccf4806a3f247d614c85bc/ninja-1.10.0.post3-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Found link https://files.pythonhosted.org/packages/94/37/5e491fb9433ccac71e13d88edf58d8795434477e93fc1334d1e221553af5/ninja-1.10.0.post3.tar.gz (from https://pypi.org/simple/ninja/), version: 1.10.0.post3\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_9_universal2, py2-none-macosx_10_9_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_9_universal2, py3-none-macosx_10_9_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4d/bc/7a1f268e97bbcf69de5f8df6cdd00984fc8456c5e20f1ec586a4d5a9212c/ninja-1.10.2-py2.py3-none-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/37/bd/fc8cdd60d20981526ddd7fb299e42e4b215c7f88e534ba027ffcb2fb6312/ninja-1.10.2-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/21/c0/92104959f51a62655d68b9f76e05293ac24df8027c9dc5fe54546870cb24/ninja-1.10.2-py2.py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/13/cc/4e085667df877eb554448aa984f2ce2f564e108530bacedd20dc1848a323/ninja-1.10.2-py2.py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686, py2-none-manylinux_2_5_i686, py3-none-manylinux1_i686, py3-none-manylinux_2_5_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9a/ff/fb33890256ca9102677378a4df2813904576baa603c1a491c60569efee08/ninja-1.10.2-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Found link https://files.pythonhosted.org/packages/14/e9/981a87bdb105768fd9b9db4c9bef1e9e73e1814fddcbbe5fcc36b446ead3/ninja-1.10.2-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/), version: 1.10.2\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2d/f7/2f817883da7cfaad5fb6003032e84f58c739b376d6eea2877c01377fca8c/ninja-1.10.2-py2.py3-none-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2c/f1/30316c8ec18ef9837c1c957379110eef28f9d9d08837bd6643066bdcc329/ninja-1.10.2-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Found link https://files.pythonhosted.org/packages/52/fd/6a82411fbc23b62bf5ddf511b09cb3d6059d1b84ec6833589aa064cea207/ninja-1.10.2.tar.gz (from https://pypi.org/simple/ninja/), version: 1.10.2\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_9_universal2, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_9_universal2, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/80/31/91d7c31fb4761d4331069a2b6953a3fd25102110c75534e7350c35628de5/ninja-1.10.2.1-py2.py3-none-macosx_10_9_universal2.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cd/9a/38c69145d965b3bd8e43bc2f5bac34e3b66b10ff135a62ed56823668700d/ninja-1.10.2.1-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b7/b8/719447a306cdc21d76b8458aec0eeb56e76cf2c0348a495ee8f51db5d806/ninja-1.10.2.1-py2.py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/db/dd/295794ff8951c50eeb62a918dd4cbe9a45f90cb7eae3841e6ac1a9745e06/ninja-1.10.2.1-py2.py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686, py2-none-manylinux_2_5_i686, py3-none-manylinux1_i686, py3-none-manylinux_2_5_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bc/25/e8038e2e75cc286ddf9c1d4969c6ffe6697b0941e6026bdc061ecacdf4d9/ninja-1.10.2.1-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Found link https://files.pythonhosted.org/packages/c2/5e/2d098a896cb794e23d4840c46dbd0c7728ad74d22ac56e0109afbf0d1419/ninja-1.10.2.1-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/), version: 1.10.2.1\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f8/e3/9f5b90dd6ecd10d7459c7b0efb9ae0d65c0daa56854992e6abadc482fcf2/ninja-1.10.2.1-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/40/6b/b70c7b1d1e3d8cf8db02e6217c747dfc30c41cbfa46eb77b7b44fde7691a/ninja-1.10.2.1-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c0/7d/bd5fa529509f8ba14efdb4ca4d57d188721633990c06aea0bd86fad4acba/ninja-1.10.2.1-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2f/de/60644b234b7fd0dbb5ded176633c63e1e1625355613b939b9867f8a332c2/ninja-1.10.2.1-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c8/9c/dfc992a67d115cf4767d71e804f92a0c0d590cb98aec9c4b2c5fbb82a899/ninja-1.10.2.1-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ce/cc/d334ab22655fbb2c00058d02f3b286ae817f9f1e351e322fedc89ee5e51e/ninja-1.10.2.1-py2.py3-none-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ad/26/26dbb0a12857b5475c3da3457b3719d8b87c68d9eabec90328f434e2d5dc/ninja-1.10.2.1-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Found link https://files.pythonhosted.org/packages/07/2b/84175ca3e5978f9e1be3672b7618c6be713b69e3a50c98617b7ba4422d58/ninja-1.10.2.1.tar.gz (from https://pypi.org/simple/ninja/), version: 1.10.2.1\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_9_universal2, py2-none-macosx_10_9_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_9_universal2, py3-none-macosx_10_9_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/95/7c/ce1487f88a00e43825a73d5395adc8e200af06c08017b204efe6c3ff8992/ninja-1.10.2.2-py2.py3-none-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2d/73/c8cf416123c21cb0eeab7dea3061c80fa3a186a29ea3c9f24ca72078cce2/ninja-1.10.2.2-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/71/f2/3c16c26314da9f9f819be78c14e33265916631f648a26e75f940a3a7d60c/ninja-1.10.2.2-py2.py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/11/14/65b686f73bc0684d2c70cc12991fa8b8054bb4125b8c0096b22b909ead09/ninja-1.10.2.2-py2.py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686, py2-none-manylinux_2_5_i686, py3-none-manylinux1_i686, py3-none-manylinux_2_5_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/63/80/1669016b6be5316bc8d6fd3e95b7f852b80536482a2100e3d91ea6e9c8a2/ninja-1.10.2.2-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Found link https://files.pythonhosted.org/packages/35/8a/1b097ca8884be4c3b39e9531252ce12ad70eaf95356cc1de24a0322a97d9/ninja-1.10.2.2-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/), version: 1.10.2.2\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cf/a4/3057ecb8f5aecbae3669c3b4c840393e9bccc75bc9b323884f13452dc59e/ninja-1.10.2.2-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/83/ba/fe667fa00b1f0d62258e4275ce397898de6a260ab8317f3969c39ea3adbe/ninja-1.10.2.2-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/97/4f/d1ef14123af13d47adc89724b88850a335e52077c055e687074f73ef4c1d/ninja-1.10.2.2-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/81/b7/488bb9c6cfaf7ff13a24934f381109cfc3da6167975a82a106c416889314/ninja-1.10.2.2-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b7/88/10af5b6983719163f031321551e3fe4e89ad0cf42dc771379e84be397c65/ninja-1.10.2.2-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fe/09/66165852a05a1466fc459a7bcdecdde2559ebdb44ab89b8c59bd39c31b18/ninja-1.10.2.2-py2.py3-none-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5c/3f/374f4b1120de85565161d1257eaeb76f8f46e7eea30d5dc3cf6d0b0ac904/ninja-1.10.2.2-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Found link https://files.pythonhosted.org/packages/85/d4/d3797ed3f18bf6bf2ffe784b68f30d07948202d732322b94e77991612ea6/ninja-1.10.2.2.tar.gz (from https://pypi.org/simple/ninja/), version: 1.10.2.2\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_9_universal2, py2-none-macosx_10_9_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_9_universal2, py3-none-macosx_10_9_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7f/11/916dee6dac80e2b8bbae1cd5d3eaaf6fa36b773d69a849848f535b43215b/ninja-1.10.2.3-py2.py3-none-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/50/55/d38eb201d17615aff69601882d72156c2054856cd492777cfda28f4e3fee/ninja-1.10.2.3-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7e/fc/8084266912b4646860d4b2405faa751cdc8385f75b11204b5385e0836787/ninja-1.10.2.3-py2.py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bb/08/78c3f4f259d34c908bfd6fe5bb050513832db6974c53ae11e8ec3d158a6d/ninja-1.10.2.3-py2.py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686, py2-none-manylinux_2_5_i686, py3-none-manylinux1_i686, py3-none-manylinux_2_5_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7f/f6/245c776e3fd7129d799a08bbbcb3fda5a2a8a9e78e150e1ea6e5a91b8666/ninja-1.10.2.3-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Found link https://files.pythonhosted.org/packages/52/65/d212822d0f29afecbad20cc3b3f41b8eeb4b47bea728602b8ce0b2d347f5/ninja-1.10.2.3-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/), version: 1.10.2.3\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4d/fc/644a8a55152c6cf293ae69d56ae37581aeff8e707a258ebff8795fdf8a79/ninja-1.10.2.3-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/61/09/5e93963e31dd661236f40d8fe2c92caea80d23048896cf42544b213dfb5f/ninja-1.10.2.3-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/05/b0/7208ec025e583100778da89212381b75282bbb12973c6b9ec43cfb446e88/ninja-1.10.2.3-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/94/72/f03c75b65d08a6a3666936abff339112fae25bbf427d71af7c519d190d8d/ninja-1.10.2.3-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/79/27/5f2a3b84aedabdd1f30cc72ca3e46cf4d49a175c20c4ced979b142614571/ninja-1.10.2.3-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ed/bc/5c4b25735020aadb35e0757065d352475995a413adbefe12d0b06d12df0c/ninja-1.10.2.3-py2.py3-none-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9e/6a/adf5c7e32951d354cf1709663ef3a86611edc95327217e3c01f6859b9610/ninja-1.10.2.3-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Found link https://files.pythonhosted.org/packages/00/99/5beedbf09e3ec6b617606df42d04c4251959caddbd98397cce21da4c52d1/ninja-1.10.2.3.tar.gz (from https://pypi.org/simple/ninja/), version: 1.10.2.3\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_9_universal2, py2-none-macosx_10_9_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_9_universal2, py3-none-macosx_10_9_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/39/0b/4f30facb8a1ecd7627b62c7922480dcc1a75f52f48f75f89cad5a286be68/ninja-1.10.2.4-py2.py3-none-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/65/8c/14a9f112a1d3c5b84fa4419f7f5621e35769b25d5dfabd16defd55180e79/ninja-1.10.2.4-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/62/dd/c04c3cfe78173a0986e477f3e94d9ba3f55c0dea1f63d7d73d1e96bae62f/ninja-1.10.2.4-py2.py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3d/4d/f5570fd31c2dc161bc7eb06a8692f88cbf34c627d0fa638a10f1d81d6021/ninja-1.10.2.4-py2.py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686, py2-none-manylinux_2_5_i686, py3-none-manylinux1_i686, py3-none-manylinux_2_5_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8d/14/61d0cafe08cfbf3c58b1eb5d25c9717d7641dc113de24fb2351fbf512ece/ninja-1.10.2.4-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Found link https://files.pythonhosted.org/packages/48/d2/5c106c854b0f2366679747b2a9c5377cc59e03e2b80d72e41588d143abbc/ninja-1.10.2.4-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/), version: 1.10.2.4\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/24/e4/7d9f4ee735d2bcd3ff94bc624b921f2e60bd2cfbae4d37397f4ab31a5399/ninja-1.10.2.4-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7c/f4/f1553e5e08c259ad37f9fde4ef88d4a6db541b65ff37fb75c70686a4e2c9/ninja-1.10.2.4-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/44/8c/2d621584dbb56db2fab2924ebdc3888439ca7761a6b06341c5bd11a2bc19/ninja-1.10.2.4-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e7/45/bd92ffea8f544896eeaa08035dd8a38ed12472cb542d2239a9a9387a6577/ninja-1.10.2.4-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b1/76/07f820a8a60e29c544cc4105c21ddae4a9d824284f7bb78015b914bc52fe/ninja-1.10.2.4-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/14/ff/0ac4fac070fbfd697fa81086de8fdd8c1bcac1b2fbb9cc802b46fb8201da/ninja-1.10.2.4-py2.py3-none-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/14/52/01484a9b00015c1772aeb79695f216e75991397aeac268df09c3797a41d3/ninja-1.10.2.4-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Found link https://files.pythonhosted.org/packages/c6/3e/f14cc8da437224acea3bdb9a82bc9c128638211ca08ac029ed5c8716b7e9/ninja-1.10.2.4.tar.gz (from https://pypi.org/simple/ninja/), version: 1.10.2.4\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_9_universal2, py2-none-macosx_10_9_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_9_universal2, py3-none-macosx_10_9_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7c/61/5b9cd921db9f5efdea05422cb45a48a9ad22199f0ae566e7eda2174f384d/ninja-1.11.1-py2.py3-none-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2010_i686, py2-none-manylinux_2_12_i686, py3-none-manylinux2010_i686, py3-none-manylinux_2_12_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d9/70/2fcf0d7dc3cdc890faf76000a9b9e15743d54e3d5481e9f3f106ad2905b8/ninja-1.11.1-py2.py3-none-manylinux_2_12_i686.manylinux2010_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Found link https://files.pythonhosted.org/packages/0f/58/854ce5aab0ff5c33d66e1341b0be42f0330797335011880f7fbd88449996/ninja-1.11.1-py2.py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (from https://pypi.org/simple/ninja/), version: 1.11.1\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e7/cc/758334e96fd614ff226490277eaae36db778b69c486b6c5df575f5ab74e4/ninja-1.11.1-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f8/3b/531618a3aac76a5e11265c438b8423f1cac10305795d45def0f23f0a4366/ninja-1.11.1-py2.py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6c/9b/c1774ec8c01c20c7f37c53bc474d416c93c84c98bbe6b3800ede3a1d61df/ninja-1.11.1-py2.py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686, py2-none-manylinux_2_5_i686, py3-none-manylinux1_i686, py3-none-manylinux_2_5_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/17/16/d310fe859dbc711c9a8f63c8463a506c43b649b853494cce48f2b9a6b62d/ninja-1.11.1-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Found link https://files.pythonhosted.org/packages/58/9a/929f2deeffca632f5e031306e4884e37a1766fe4fd098c68283408016ff0/ninja-1.11.1-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl (from https://pypi.org/simple/ninja/), version: 1.11.1\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d8/1b/896b9791dc50989ad9b5bc88b3cecb70e3f08dfc3fcf4d47e401851de3c7/ninja-1.11.1-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/09/69/01e9c013196f7d409b50c12f41a86fd3ca1c6dd79f5adbfd7c2223a818b1/ninja-1.11.1-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/90/1f/d0ff2fcbe5068db616030ba9cf56263f02b6a9a43b3c76227d2adec825e8/ninja-1.11.1-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a8/3e/1b6232aec969ea081d7728a9da8ed68494bc31286d82008cde7d0d17033b/ninja-1.11.1-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2c/03/fca8873bd20113382748ea78071a818801365583c19a400cdbbe6bdb55b8/ninja-1.11.1-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/41/b0/2adbcc6d4b356df7c639edefac3726fbdde30ea1d1e646ea909c36a7343d/ninja-1.11.1-py2.py3-none-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9d/74/71ef16dea18414acf7ca0da7a16e2fcb9f73d7a16d00879aed385840c720/ninja-1.11.1-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_arm64, py3-none-win_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e4/0e/eba822920ad76296d214bf959550a0aca3ed8b4644568e060291ce5850c9/ninja-1.11.1-py2.py3-none-win_arm64.whl (from https://pypi.org/simple/ninja/)\n", + " Found link https://files.pythonhosted.org/packages/f7/69/938374c8ebfeda683863b22e936f5d465ac9f5bf42be238504c018123190/ninja-1.11.1.tar.gz (from https://pypi.org/simple/ninja/), version: 1.11.1\n", + " Skipping link: none of the wheel's tags (py2-none-macosx_10_9_universal2, py2-none-macosx_10_9_x86_64, py2-none-macosx_11_0_arm64, py2-none-macosx_11_0_universal2, py3-none-macosx_10_9_universal2, py3-none-macosx_10_9_x86_64, py3-none-macosx_11_0_arm64, py3-none-macosx_11_0_universal2) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3d/6e/04ed11bb244039908f6f212cb5f3e97933e238655248e4ce307c1687ba1f/ninja-1.11.1.1-py2.py3-none-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux1_i686, py2-none-manylinux_2_5_i686, py3-none-manylinux1_i686, py3-none-manylinux_2_5_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2c/52/0e5423311eb9939b6f9354059a6d88a6211eb4fa1c7a4ef303ecee1c1fe0/ninja-1.11.1.1-py2.py3-none-manylinux1_i686.manylinux_2_5_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Found link https://files.pythonhosted.org/packages/6d/92/8d7aebd4430ab5ff65df2bfee6d5745f95c004284db2d8ca76dcbfd9de47/ninja-1.11.1.1-py2.py3-none-manylinux1_x86_64.manylinux_2_5_x86_64.whl (from https://pypi.org/simple/ninja/), version: 1.11.1.1\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_aarch64, py2-none-manylinux_2_17_aarch64, py3-none-manylinux2014_aarch64, py3-none-manylinux_2_17_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/01/c8/96424839fd127b4492229acf50763ed9940d864ca35d17d151934aef1f6f/ninja-1.11.1.1-py2.py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_ppc64le, py2-none-manylinux_2_17_ppc64le, py3-none-manylinux2014_ppc64le, py3-none-manylinux_2_17_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6b/fa/5ca8e65a98cdb9a71d4f1e38cac7bd757bbb9555a5aef5a4d293aa890e5c/ninja-1.11.1.1-py2.py3-none-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-manylinux2014_s390x, py2-none-manylinux_2_17_s390x, py3-none-manylinux2014_s390x, py3-none-manylinux_2_17_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/45/ef/60086f02cbc6882da00a02c81d645cefd8d2d65b01fade41b873d8dd85a2/ninja-1.11.1.1-py2.py3-none-manylinux2014_s390x.manylinux_2_17_s390x.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_aarch64, py3-none-musllinux_1_1_aarch64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1c/00/2fd13ac6aafdb566f00d6b541101fca54e58ae58bf96c00f9780df019607/ninja-1.11.1.1-py2.py3-none-musllinux_1_1_aarch64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_i686, py3-none-musllinux_1_1_i686) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ad/5d/6e97c8a25167d4867694c7fb0b9bdbc9b096d6479c8e56c5bd41b49613f6/ninja-1.11.1.1-py2.py3-none-musllinux_1_1_i686.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_ppc64le, py3-none-musllinux_1_1_ppc64le) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/43/78/34af88d753389a9412438d16142c77e587e0d69152faf0bbf99701063dd8/ninja-1.11.1.1-py2.py3-none-musllinux_1_1_ppc64le.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_s390x, py3-none-musllinux_1_1_s390x) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3b/74/de0633f8bced3b188942fca64a950e8f2206c60c10c97af465b356ae9b25/ninja-1.11.1.1-py2.py3-none-musllinux_1_1_s390x.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-musllinux_1_1_x86_64, py3-none-musllinux_1_1_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9a/f3/3e4a56ff77739d1582749b93497bdebf11e003fbc7a66363ef6c772ebd0a/ninja-1.11.1.1-py2.py3-none-musllinux_1_1_x86_64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-win32, py3-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c5/ee/53df34fcc9c0b1db62b2f2e2c848e28d9354e1c7f0dce029ee50b16ca157/ninja-1.11.1.1-py2.py3-none-win32.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_amd64, py3-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b6/2f/a3bc50fa63fc4fe9348e15b53dc8c87febfd4e0c660fcf250c4b19a3aa3b/ninja-1.11.1.1-py2.py3-none-win_amd64.whl (from https://pypi.org/simple/ninja/)\n", + " Skipping link: none of the wheel's tags (py2-none-win_arm64, py3-none-win_arm64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/73/2a/f5b7b3b7ecd5cf4e31375580bf5c6a01a328ed1ebdfff90fab463e3f4bc7/ninja-1.11.1.1-py2.py3-none-win_arm64.whl (from https://pypi.org/simple/ninja/)\n", + " Found link https://files.pythonhosted.org/packages/37/2c/d717d13a413d6f7579cdaa1e28e6e2c98de95461549b08d311c8a5bf4c51/ninja-1.11.1.1.tar.gz (from https://pypi.org/simple/ninja/), version: 1.11.1.1\n", + " Fetching project page and analyzing links: https://abetlen.github.io/llama-cpp-python/whl/12.1/ninja/\n", + " Getting page https://abetlen.github.io/llama-cpp-python/whl/12.1/ninja/\n", + " Found index url https://abetlen.github.io/llama-cpp-python/whl/12.1/\n", + " Looking up \"https://abetlen.github.io/llama-cpp-python/whl/12.1/ninja/\" in the cache\n", + " Request header has \"max_age\" as 0, cache bypassed\n", + " No cache entry available\n", + " https://abetlen.github.io:443 \"GET /llama-cpp-python/whl/12.1/ninja/ HTTP/1.1\" 404 5254\n", + " Status code 404 not in (200, 203, 300, 301, 308)\n", + " Could not fetch URL https://abetlen.github.io/llama-cpp-python/whl/12.1/ninja/: 404 Client Error: Not Found for url: https://abetlen.github.io/llama-cpp-python/whl/12.1/ninja/ - skipping\n", + " Skipping link: not a file: https://pypi.org/simple/ninja/\n", + " Skipping link: not a file: https://abetlen.github.io/llama-cpp-python/whl/12.1/ninja/\n", + " Given no hashes to check 33 links for project 'ninja': discarding no candidates\n", + " Collecting ninja>=1.5\n", + " Obtaining dependency information for ninja>=1.5 from https://files.pythonhosted.org/packages/6d/92/8d7aebd4430ab5ff65df2bfee6d5745f95c004284db2d8ca76dcbfd9de47/ninja-1.11.1.1-py2.py3-none-manylinux1_x86_64.manylinux_2_5_x86_64.whl.metadata\n", + " Created temporary directory: /tmp/pip-unpack-krl6wl7a\n", + " Looking up \"https://files.pythonhosted.org/packages/6d/92/8d7aebd4430ab5ff65df2bfee6d5745f95c004284db2d8ca76dcbfd9de47/ninja-1.11.1.1-py2.py3-none-manylinux1_x86_64.manylinux_2_5_x86_64.whl.metadata\" in the cache\n", + " Current age based on date: 2654\n", + " Ignoring unknown cache-control directive: immutable\n", + " Freshness lifetime from max-age: 365000000\n", + " The response is \"fresh\", returning cached response\n", + " 365000000 > 2654\n", + " Using cached ninja-1.11.1.1-py2.py3-none-manylinux1_x86_64.manylinux_2_5_x86_64.whl.metadata (5.3 kB)\n", + " Created temporary directory: /tmp/pip-unpack-fhlmucn0\n", + " Looking up \"https://files.pythonhosted.org/packages/e9/50/b23e70979e62e9633281448af22cd79deff3a7a7bf656c61399d1c8735ac/cmake-3.30.4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl\" in the cache\n", + " Current age based on date: 335418\n", + " Ignoring unknown cache-control directive: immutable\n", + " Freshness lifetime from max-age: 365000000\n", + " The response is \"fresh\", returning cached response\n", + " 365000000 > 335418\n", + " Using cached cmake-3.30.4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.9 MB)\n", + " Downloading link https://files.pythonhosted.org/packages/e9/50/b23e70979e62e9633281448af22cd79deff3a7a7bf656c61399d1c8735ac/cmake-3.30.4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/cmake/) (requires-python:>=3.7) to /tmp/pip-unpack-fhlmucn0/cmake-3.30.4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl\n", + " Looking up \"https://files.pythonhosted.org/packages/6d/92/8d7aebd4430ab5ff65df2bfee6d5745f95c004284db2d8ca76dcbfd9de47/ninja-1.11.1.1-py2.py3-none-manylinux1_x86_64.manylinux_2_5_x86_64.whl\" in the cache\n", + " Current age based on date: 2652\n", + " Ignoring unknown cache-control directive: immutable\n", + " Freshness lifetime from max-age: 365000000\n", + " The response is \"fresh\", returning cached response\n", + " 365000000 > 2652\n", + " Using cached ninja-1.11.1.1-py2.py3-none-manylinux1_x86_64.manylinux_2_5_x86_64.whl (307 kB)\n", + " Downloading link https://files.pythonhosted.org/packages/6d/92/8d7aebd4430ab5ff65df2bfee6d5745f95c004284db2d8ca76dcbfd9de47/ninja-1.11.1.1-py2.py3-none-manylinux1_x86_64.manylinux_2_5_x86_64.whl (from https://pypi.org/simple/ninja/) to /tmp/pip-unpack-fhlmucn0/ninja-1.11.1.1-py2.py3-none-manylinux1_x86_64.manylinux_2_5_x86_64.whl\n", + " Installing collected packages: ninja, cmake\n", + "\n", + " Creating /tmp/pip-build-env-2181v7rz/normal/local/bin\n", + " changing mode of /tmp/pip-build-env-2181v7rz/normal/local/bin/ninja to 755\n", + "\n", + " changing mode of /tmp/pip-build-env-2181v7rz/normal/local/bin/cmake to 755\n", + " changing mode of /tmp/pip-build-env-2181v7rz/normal/local/bin/cpack to 755\n", + " changing mode of /tmp/pip-build-env-2181v7rz/normal/local/bin/ctest to 755\n", + " Successfully installed cmake-3.30.4 ninja-1.11.1.1\n", + " Removed build tracker: '/tmp/pip-build-tracker-sbqaaasp'\n", + " Installing backend dependencies ... \u001b[?25l\u001b[?25hdone\n", + " Running command Preparing metadata (pyproject.toml)\n", + " *** scikit-build-core 0.10.7 using CMake 3.30.4 (metadata_wheel)\n", + " Preparing metadata (pyproject.toml) ... \u001b[?25l\u001b[?25hdone\n", + "Collecting typing-extensions>=4.5.0 (from llama-cpp-python)\n", + " Obtaining dependency information for typing-extensions>=4.5.0 from https://files.pythonhosted.org/packages/26/9f/ad63fc0248c5379346306f8668cda6e2e2e9c95e01216d2b8ffd9ff037d0/typing_extensions-4.12.2-py3-none-any.whl.metadata\n", + " Downloading typing_extensions-4.12.2-py3-none-any.whl.metadata (3.0 kB)\n", + "Collecting numpy>=1.20.0 (from llama-cpp-python)\n", + " Obtaining dependency information for numpy>=1.20.0 from https://files.pythonhosted.org/packages/fb/25/ba023652a39a2c127200e85aed975fc6119b421e2c348e5d0171e2046edb/numpy-2.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata\n", + " Downloading numpy-2.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (60 kB)\n", + "\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m60.9/60.9 kB\u001b[0m \u001b[31m294.1 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[?25hCollecting diskcache>=5.6.1 (from llama-cpp-python)\n", + " Obtaining dependency information for diskcache>=5.6.1 from https://files.pythonhosted.org/packages/3f/27/4570e78fc0bf5ea0ca45eb1de3818a23787af9b390c0b0a0033a1b8236f9/diskcache-5.6.3-py3-none-any.whl.metadata\n", + " Downloading diskcache-5.6.3-py3-none-any.whl.metadata (20 kB)\n", + "Collecting jinja2>=2.11.3 (from llama-cpp-python)\n", + " Obtaining dependency information for jinja2>=2.11.3 from https://files.pythonhosted.org/packages/31/80/3a54838c3fb461f6fec263ebf3a3a41771bd05190238de3486aae8540c36/jinja2-3.1.4-py3-none-any.whl.metadata\n", + " Downloading jinja2-3.1.4-py3-none-any.whl.metadata (2.6 kB)\n", + "Collecting MarkupSafe>=2.0 (from jinja2>=2.11.3->llama-cpp-python)\n", + " Obtaining dependency information for MarkupSafe>=2.0 from https://files.pythonhosted.org/packages/7c/52/2b1b570f6b8b803cef5ac28fdf78c0da318916c7d2fe9402a84d591b394c/MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata\n", + " Downloading MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.0 kB)\n", + "Downloading diskcache-5.6.3-py3-none-any.whl (45 kB)\n", + "\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m45.5/45.5 kB\u001b[0m \u001b[31m238.2 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[?25hDownloading jinja2-3.1.4-py3-none-any.whl (133 kB)\n", + "\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m133.3/133.3 kB\u001b[0m \u001b[31m353.8 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[?25hDownloading numpy-2.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.3 MB)\n", + "\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m16.3/16.3 MB\u001b[0m \u001b[31m285.4 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[?25hDownloading typing_extensions-4.12.2-py3-none-any.whl (37 kB)\n", + "Downloading MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (25 kB)\n", + "Building wheels for collected packages: llama-cpp-python\n", + " Running command Building wheel for llama-cpp-python (pyproject.toml)\n", + " *** scikit-build-core 0.10.7 using CMake 3.30.4 (wheel)\n", + " *** Configuring CMake...\n", + " loading initial cache file /tmp/tmpx3ei8gz8/build/CMakeInit.txt\n", + " -- The C compiler identification is GNU 11.4.0\n", + " -- The CXX compiler identification is GNU 11.4.0\n", + " -- Detecting C compiler ABI info\n", + " -- Detecting C compiler ABI info - done\n", + " -- Check for working C compiler: /usr/bin/x86_64-linux-gnu-gcc - skipped\n", + " -- Detecting C compile features\n", + " -- Detecting C compile features - done\n", + " -- Detecting CXX compiler ABI info\n", + " -- Detecting CXX compiler ABI info - done\n", + " -- Check for working CXX compiler: /usr/bin/x86_64-linux-gnu-g++ - skipped\n", + " -- Detecting CXX compile features\n", + " -- Detecting CXX compile features - done\n", + " -- Found Git: /usr/bin/git (found version \"2.34.1\")\n", + " -- Performing Test CMAKE_HAVE_LIBC_PTHREAD\n", + " -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success\n", + " -- Found Threads: TRUE\n", + " -- Found OpenMP_C: -fopenmp (found version \"4.5\")\n", + " -- Found OpenMP_CXX: -fopenmp (found version \"4.5\")\n", + " -- Found OpenMP: TRUE (found version \"4.5\")\n", + " -- OpenMP found\n", + " -- Using llamafile\n", + " -- Warning: ccache not found - consider installing it for faster compilation or disable this warning with GGML_CCACHE=OFF\n", + " -- CMAKE_SYSTEM_PROCESSOR: x86_64\n", + " -- x86 detected\n", + " CMake Warning (dev) at CMakeLists.txt:9 (install):\n", + " Target llama has PUBLIC_HEADER files but no PUBLIC_HEADER DESTINATION.\n", + " Call Stack (most recent call first):\n", + " CMakeLists.txt:73 (llama_cpp_python_install_target)\n", + " This warning is for project developers. Use -Wno-dev to suppress it.\n", + "\n", + " CMake Warning (dev) at CMakeLists.txt:17 (install):\n", + " Target llama has PUBLIC_HEADER files but no PUBLIC_HEADER DESTINATION.\n", + " Call Stack (most recent call first):\n", + " CMakeLists.txt:73 (llama_cpp_python_install_target)\n", + " This warning is for project developers. Use -Wno-dev to suppress it.\n", + "\n", + " CMake Warning (dev) at CMakeLists.txt:9 (install):\n", + " Target ggml has PUBLIC_HEADER files but no PUBLIC_HEADER DESTINATION.\n", + " Call Stack (most recent call first):\n", + " CMakeLists.txt:74 (llama_cpp_python_install_target)\n", + " This warning is for project developers. Use -Wno-dev to suppress it.\n", + "\n", + " CMake Warning (dev) at CMakeLists.txt:17 (install):\n", + " Target ggml has PUBLIC_HEADER files but no PUBLIC_HEADER DESTINATION.\n", + " Call Stack (most recent call first):\n", + " CMakeLists.txt:74 (llama_cpp_python_install_target)\n", + " This warning is for project developers. Use -Wno-dev to suppress it.\n", + "\n", + " -- Configuring done (0.8s)\n", + " -- Generating done (0.0s)\n", + " -- Build files have been written to: /tmp/tmpx3ei8gz8/build\n", + " *** Building project with Ninja...\n", + " Change Dir: '/tmp/tmpx3ei8gz8/build'\n", + "\n", + " Run Build Command(s): /tmp/pip-build-env-2181v7rz/normal/local/lib/python3.10/dist-packages/ninja/data/bin/ninja -v\n", + " [1/33] /usr/bin/x86_64-linux-gnu-gcc -DGGML_BUILD -DGGML_SCHED_MAX_COPIES=4 -DGGML_SHARED -DGGML_USE_LLAMAFILE -DGGML_USE_OPENMP -D_GNU_SOURCE -D_XOPEN_SOURCE=600 -Dggml_EXPORTS -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/ggml/src/../include -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/ggml/src/. -O3 -DNDEBUG -std=gnu11 -fPIC -Wshadow -Wstrict-prototypes -Wpointer-arith -Wmissing-prototypes -Werror=implicit-int -Werror=implicit-function-declaration -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wdouble-promotion -march=native -fopenmp -MD -MT vendor/llama.cpp/ggml/src/CMakeFiles/ggml.dir/ggml-alloc.c.o -MF vendor/llama.cpp/ggml/src/CMakeFiles/ggml.dir/ggml-alloc.c.o.d -o vendor/llama.cpp/ggml/src/CMakeFiles/ggml.dir/ggml-alloc.c.o -c /tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/ggml/src/ggml-alloc.c\n", + " [2/33] /usr/bin/x86_64-linux-gnu-gcc -DGGML_BUILD -DGGML_SCHED_MAX_COPIES=4 -DGGML_SHARED -DGGML_USE_LLAMAFILE -DGGML_USE_OPENMP -D_GNU_SOURCE -D_XOPEN_SOURCE=600 -Dggml_EXPORTS -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/ggml/src/../include -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/ggml/src/. -O3 -DNDEBUG -std=gnu11 -fPIC -Wshadow -Wstrict-prototypes -Wpointer-arith -Wmissing-prototypes -Werror=implicit-int -Werror=implicit-function-declaration -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wdouble-promotion -march=native -fopenmp -MD -MT vendor/llama.cpp/ggml/src/CMakeFiles/ggml.dir/ggml-backend.c.o -MF vendor/llama.cpp/ggml/src/CMakeFiles/ggml.dir/ggml-backend.c.o.d -o vendor/llama.cpp/ggml/src/CMakeFiles/ggml.dir/ggml-backend.c.o -c /tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/ggml/src/ggml-backend.c\n", + " [3/33] /usr/bin/x86_64-linux-gnu-g++ -DGGML_BUILD -DGGML_SCHED_MAX_COPIES=4 -DGGML_SHARED -DGGML_USE_LLAMAFILE -DGGML_USE_OPENMP -D_GNU_SOURCE -D_XOPEN_SOURCE=600 -Dggml_EXPORTS -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/ggml/src/../include -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/ggml/src/. -O3 -DNDEBUG -std=gnu++11 -fPIC -Wmissing-declarations -Wmissing-noreturn -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wno-array-bounds -Wno-format-truncation -Wextra-semi -march=native -fopenmp -MD -MT vendor/llama.cpp/ggml/src/CMakeFiles/ggml.dir/llamafile/sgemm.cpp.o -MF vendor/llama.cpp/ggml/src/CMakeFiles/ggml.dir/llamafile/sgemm.cpp.o.d -o vendor/llama.cpp/ggml/src/CMakeFiles/ggml.dir/llamafile/sgemm.cpp.o -c /tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/ggml/src/llamafile/sgemm.cpp\n", + " [4/33] /usr/bin/x86_64-linux-gnu-gcc -DGGML_BUILD -DGGML_SCHED_MAX_COPIES=4 -DGGML_SHARED -DGGML_USE_LLAMAFILE -DGGML_USE_OPENMP -D_GNU_SOURCE -D_XOPEN_SOURCE=600 -Dggml_EXPORTS -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/ggml/src/../include -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/ggml/src/. -O3 -DNDEBUG -std=gnu11 -fPIC -Wshadow -Wstrict-prototypes -Wpointer-arith -Wmissing-prototypes -Werror=implicit-int -Werror=implicit-function-declaration -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wdouble-promotion -march=native -fopenmp -MD -MT vendor/llama.cpp/ggml/src/CMakeFiles/ggml.dir/ggml-aarch64.c.o -MF vendor/llama.cpp/ggml/src/CMakeFiles/ggml.dir/ggml-aarch64.c.o.d -o vendor/llama.cpp/ggml/src/CMakeFiles/ggml.dir/ggml-aarch64.c.o -c /tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/ggml/src/ggml-aarch64.c\n", + " [5/33] /usr/bin/x86_64-linux-gnu-gcc -DGGML_BUILD -DGGML_SCHED_MAX_COPIES=4 -DGGML_SHARED -DGGML_USE_LLAMAFILE -DGGML_USE_OPENMP -D_GNU_SOURCE -D_XOPEN_SOURCE=600 -Dggml_EXPORTS -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/ggml/src/../include -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/ggml/src/. -O3 -DNDEBUG -std=gnu11 -fPIC -Wshadow -Wstrict-prototypes -Wpointer-arith -Wmissing-prototypes -Werror=implicit-int -Werror=implicit-function-declaration -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wdouble-promotion -march=native -fopenmp -MD -MT vendor/llama.cpp/ggml/src/CMakeFiles/ggml.dir/ggml-quants.c.o -MF vendor/llama.cpp/ggml/src/CMakeFiles/ggml.dir/ggml-quants.c.o.d -o vendor/llama.cpp/ggml/src/CMakeFiles/ggml.dir/ggml-quants.c.o -c /tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/ggml/src/ggml-quants.c\n", + " [6/33] /usr/bin/x86_64-linux-gnu-gcc -DGGML_BUILD -DGGML_SCHED_MAX_COPIES=4 -DGGML_SHARED -DGGML_USE_LLAMAFILE -DGGML_USE_OPENMP -D_GNU_SOURCE -D_XOPEN_SOURCE=600 -Dggml_EXPORTS -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/ggml/src/../include -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/ggml/src/. -O3 -DNDEBUG -std=gnu11 -fPIC -Wshadow -Wstrict-prototypes -Wpointer-arith -Wmissing-prototypes -Werror=implicit-int -Werror=implicit-function-declaration -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wdouble-promotion -march=native -fopenmp -MD -MT vendor/llama.cpp/ggml/src/CMakeFiles/ggml.dir/ggml.c.o -MF vendor/llama.cpp/ggml/src/CMakeFiles/ggml.dir/ggml.c.o.d -o vendor/llama.cpp/ggml/src/CMakeFiles/ggml.dir/ggml.c.o -c /tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/ggml/src/ggml.c\n", + " [7/33] : && /usr/bin/x86_64-linux-gnu-g++ -fPIC -O3 -DNDEBUG -shared -Wl,-soname,libggml.so -o vendor/llama.cpp/ggml/src/libggml.so vendor/llama.cpp/ggml/src/CMakeFiles/ggml.dir/ggml.c.o vendor/llama.cpp/ggml/src/CMakeFiles/ggml.dir/ggml-alloc.c.o vendor/llama.cpp/ggml/src/CMakeFiles/ggml.dir/ggml-backend.c.o vendor/llama.cpp/ggml/src/CMakeFiles/ggml.dir/ggml-quants.c.o vendor/llama.cpp/ggml/src/CMakeFiles/ggml.dir/llamafile/sgemm.cpp.o vendor/llama.cpp/ggml/src/CMakeFiles/ggml.dir/ggml-aarch64.c.o -Wl,-rpath,\"\\$ORIGIN\" -lm /usr/lib/gcc/x86_64-linux-gnu/11/libgomp.so /usr/lib/x86_64-linux-gnu/libpthread.a && :\n", + " [8/33] /usr/bin/x86_64-linux-gnu-g++ -DLLAMA_BUILD -DLLAMA_SHARED -Dllama_EXPORTS -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/. -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/../include -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/ggml/src/../include -O3 -DNDEBUG -fPIC -MD -MT vendor/llama.cpp/src/CMakeFiles/llama.dir/llama-vocab.cpp.o -MF vendor/llama.cpp/src/CMakeFiles/llama.dir/llama-vocab.cpp.o.d -o vendor/llama.cpp/src/CMakeFiles/llama.dir/llama-vocab.cpp.o -c /tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/llama-vocab.cpp\n", + " [9/33] /usr/bin/x86_64-linux-gnu-g++ -DLLAMA_BUILD -DLLAMA_SHARED -Dllama_EXPORTS -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/. -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/../include -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/ggml/src/../include -O3 -DNDEBUG -fPIC -MD -MT vendor/llama.cpp/src/CMakeFiles/llama.dir/llama-grammar.cpp.o -MF vendor/llama.cpp/src/CMakeFiles/llama.dir/llama-grammar.cpp.o.d -o vendor/llama.cpp/src/CMakeFiles/llama.dir/llama-grammar.cpp.o -c /tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/llama-grammar.cpp\n", + " [10/33] /usr/bin/x86_64-linux-gnu-g++ -DLLAMA_BUILD -DLLAMA_SHARED -Dllama_EXPORTS -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/. -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/../include -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/ggml/src/../include -O3 -DNDEBUG -fPIC -MD -MT vendor/llama.cpp/src/CMakeFiles/llama.dir/llama-sampling.cpp.o -MF vendor/llama.cpp/src/CMakeFiles/llama.dir/llama-sampling.cpp.o.d -o vendor/llama.cpp/src/CMakeFiles/llama.dir/llama-sampling.cpp.o -c /tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/llama-sampling.cpp\n", + " [11/33] /usr/bin/x86_64-linux-gnu-g++ -DLLAMA_BUILD -DLLAMA_SHARED -Dllama_EXPORTS -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/. -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/../include -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/ggml/src/../include -O3 -DNDEBUG -fPIC -MD -MT vendor/llama.cpp/src/CMakeFiles/llama.dir/unicode.cpp.o -MF vendor/llama.cpp/src/CMakeFiles/llama.dir/unicode.cpp.o.d -o vendor/llama.cpp/src/CMakeFiles/llama.dir/unicode.cpp.o -c /tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/unicode.cpp\n", + " [12/33] cd /tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp && /tmp/pip-build-env-2181v7rz/normal/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -DMSVC= -DCMAKE_C_COMPILER_VERSION=11.4.0 -DCMAKE_C_COMPILER_ID=GNU -DCMAKE_VS_PLATFORM_NAME= -DCMAKE_C_COMPILER=/usr/bin/x86_64-linux-gnu-gcc -P /tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/common/cmake/build-info-gen-cpp.cmake\n", + " -- Found Git: /usr/bin/git (found version \"2.34.1\")\n", + " [13/33] /usr/bin/x86_64-linux-gnu-g++ -O3 -DNDEBUG -fPIC -MD -MT vendor/llama.cpp/common/CMakeFiles/build_info.dir/build-info.cpp.o -MF vendor/llama.cpp/common/CMakeFiles/build_info.dir/build-info.cpp.o.d -o vendor/llama.cpp/common/CMakeFiles/build_info.dir/build-info.cpp.o -c /tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/common/build-info.cpp\n", + " [14/33] /usr/bin/x86_64-linux-gnu-g++ -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/common/. -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/. -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/../include -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/ggml/src/../include -O3 -DNDEBUG -fPIC -MD -MT vendor/llama.cpp/common/CMakeFiles/common.dir/arg.cpp.o -MF vendor/llama.cpp/common/CMakeFiles/common.dir/arg.cpp.o.d -o vendor/llama.cpp/common/CMakeFiles/common.dir/arg.cpp.o -c /tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/common/arg.cpp\n", + " [15/33] /usr/bin/x86_64-linux-gnu-g++ -DLLAMA_BUILD -DLLAMA_SHARED -Dllama_EXPORTS -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/. -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/../include -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/ggml/src/../include -O3 -DNDEBUG -fPIC -MD -MT vendor/llama.cpp/src/CMakeFiles/llama.dir/unicode-data.cpp.o -MF vendor/llama.cpp/src/CMakeFiles/llama.dir/unicode-data.cpp.o.d -o vendor/llama.cpp/src/CMakeFiles/llama.dir/unicode-data.cpp.o -c /tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/unicode-data.cpp\n", + " [16/33] /usr/bin/x86_64-linux-gnu-g++ -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/common/. -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/. -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/../include -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/ggml/src/../include -O3 -DNDEBUG -fPIC -MD -MT vendor/llama.cpp/common/CMakeFiles/common.dir/console.cpp.o -MF vendor/llama.cpp/common/CMakeFiles/common.dir/console.cpp.o.d -o vendor/llama.cpp/common/CMakeFiles/common.dir/console.cpp.o -c /tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/common/console.cpp\n", + " [17/33] /usr/bin/x86_64-linux-gnu-g++ -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/common/. -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/. -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/../include -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/ggml/src/../include -O3 -DNDEBUG -fPIC -MD -MT vendor/llama.cpp/common/CMakeFiles/common.dir/common.cpp.o -MF vendor/llama.cpp/common/CMakeFiles/common.dir/common.cpp.o.d -o vendor/llama.cpp/common/CMakeFiles/common.dir/common.cpp.o -c /tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/common/common.cpp\n", + " [18/33] /usr/bin/x86_64-linux-gnu-g++ -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/common/. -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/. -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/../include -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/ggml/src/../include -O3 -DNDEBUG -fPIC -MD -MT vendor/llama.cpp/common/CMakeFiles/common.dir/log.cpp.o -MF vendor/llama.cpp/common/CMakeFiles/common.dir/log.cpp.o.d -o vendor/llama.cpp/common/CMakeFiles/common.dir/log.cpp.o -c /tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/common/log.cpp\n", + " [19/33] /usr/bin/x86_64-linux-gnu-g++ -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/common/. -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/. -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/../include -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/ggml/src/../include -O3 -DNDEBUG -fPIC -MD -MT vendor/llama.cpp/common/CMakeFiles/common.dir/ngram-cache.cpp.o -MF vendor/llama.cpp/common/CMakeFiles/common.dir/ngram-cache.cpp.o.d -o vendor/llama.cpp/common/CMakeFiles/common.dir/ngram-cache.cpp.o -c /tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/common/ngram-cache.cpp\n", + " [20/33] /usr/bin/x86_64-linux-gnu-g++ -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/common/. -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/. -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/../include -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/ggml/src/../include -O3 -DNDEBUG -fPIC -MD -MT vendor/llama.cpp/common/CMakeFiles/common.dir/sampling.cpp.o -MF vendor/llama.cpp/common/CMakeFiles/common.dir/sampling.cpp.o.d -o vendor/llama.cpp/common/CMakeFiles/common.dir/sampling.cpp.o -c /tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/common/sampling.cpp\n", + " [21/33] /usr/bin/x86_64-linux-gnu-g++ -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/common/. -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/. -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/../include -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/ggml/src/../include -O3 -DNDEBUG -fPIC -MD -MT vendor/llama.cpp/common/CMakeFiles/common.dir/train.cpp.o -MF vendor/llama.cpp/common/CMakeFiles/common.dir/train.cpp.o.d -o vendor/llama.cpp/common/CMakeFiles/common.dir/train.cpp.o -c /tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/common/train.cpp\n", + " [22/33] /usr/bin/x86_64-linux-gnu-g++ -DLLAMA_BUILD -DLLAMA_SHARED -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/examples/llava/. -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/examples/llava/../.. -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/examples/llava/../../common -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/ggml/src/../include -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/. -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/../include -O3 -DNDEBUG -fPIC -Wno-cast-qual -MD -MT vendor/llama.cpp/examples/llava/CMakeFiles/llava.dir/llava.cpp.o -MF vendor/llama.cpp/examples/llava/CMakeFiles/llava.dir/llava.cpp.o.d -o vendor/llama.cpp/examples/llava/CMakeFiles/llava.dir/llava.cpp.o -c /tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/examples/llava/llava.cpp\n", + " [23/33] /usr/bin/x86_64-linux-gnu-g++ -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/common/. -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/. -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/../include -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/ggml/src/../include -O3 -DNDEBUG -fPIC -MD -MT vendor/llama.cpp/common/CMakeFiles/common.dir/json-schema-to-grammar.cpp.o -MF vendor/llama.cpp/common/CMakeFiles/common.dir/json-schema-to-grammar.cpp.o.d -o vendor/llama.cpp/common/CMakeFiles/common.dir/json-schema-to-grammar.cpp.o -c /tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/common/json-schema-to-grammar.cpp\n", + " [24/33] /usr/bin/x86_64-linux-gnu-g++ -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/common/. -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/. -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/../include -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/ggml/src/../include -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/examples/llava/. -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/examples/llava/../.. -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/examples/llava/../../common -O3 -DNDEBUG -MD -MT vendor/llama.cpp/examples/llava/CMakeFiles/llama-llava-cli.dir/llava-cli.cpp.o -MF vendor/llama.cpp/examples/llava/CMakeFiles/llama-llava-cli.dir/llava-cli.cpp.o.d -o vendor/llama.cpp/examples/llava/CMakeFiles/llama-llava-cli.dir/llava-cli.cpp.o -c /tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/examples/llava/llava-cli.cpp\n", + " [25/33] /usr/bin/x86_64-linux-gnu-g++ -DLLAMA_BUILD -DLLAMA_SHARED -Dllama_EXPORTS -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/. -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/../include -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/ggml/src/../include -O3 -DNDEBUG -fPIC -MD -MT vendor/llama.cpp/src/CMakeFiles/llama.dir/llama.cpp.o -MF vendor/llama.cpp/src/CMakeFiles/llama.dir/llama.cpp.o.d -o vendor/llama.cpp/src/CMakeFiles/llama.dir/llama.cpp.o -c /tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/llama.cpp\n", + " [26/33] : && /usr/bin/x86_64-linux-gnu-g++ -fPIC -O3 -DNDEBUG -shared -Wl,-soname,libllama.so -o vendor/llama.cpp/src/libllama.so vendor/llama.cpp/src/CMakeFiles/llama.dir/llama.cpp.o vendor/llama.cpp/src/CMakeFiles/llama.dir/llama-vocab.cpp.o vendor/llama.cpp/src/CMakeFiles/llama.dir/llama-grammar.cpp.o vendor/llama.cpp/src/CMakeFiles/llama.dir/llama-sampling.cpp.o vendor/llama.cpp/src/CMakeFiles/llama.dir/unicode.cpp.o vendor/llama.cpp/src/CMakeFiles/llama.dir/unicode-data.cpp.o -Wl,-rpath,\"\\$ORIGIN\" vendor/llama.cpp/ggml/src/libggml.so && :\n", + " [27/33] : && /tmp/pip-build-env-2181v7rz/normal/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E rm -f vendor/llama.cpp/common/libcommon.a && /usr/bin/x86_64-linux-gnu-ar qc vendor/llama.cpp/common/libcommon.a vendor/llama.cpp/common/CMakeFiles/build_info.dir/build-info.cpp.o vendor/llama.cpp/common/CMakeFiles/common.dir/arg.cpp.o vendor/llama.cpp/common/CMakeFiles/common.dir/common.cpp.o vendor/llama.cpp/common/CMakeFiles/common.dir/console.cpp.o vendor/llama.cpp/common/CMakeFiles/common.dir/json-schema-to-grammar.cpp.o vendor/llama.cpp/common/CMakeFiles/common.dir/log.cpp.o vendor/llama.cpp/common/CMakeFiles/common.dir/ngram-cache.cpp.o vendor/llama.cpp/common/CMakeFiles/common.dir/sampling.cpp.o vendor/llama.cpp/common/CMakeFiles/common.dir/train.cpp.o && /usr/bin/x86_64-linux-gnu-ranlib vendor/llama.cpp/common/libcommon.a && :\n", + " [28/33] /usr/bin/x86_64-linux-gnu-g++ -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/common/. -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/. -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/../include -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/ggml/src/../include -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/examples/llava/. -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/examples/llava/../.. -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/examples/llava/../../common -O3 -DNDEBUG -MD -MT vendor/llama.cpp/examples/llava/CMakeFiles/llama-minicpmv-cli.dir/minicpmv-cli.cpp.o -MF vendor/llama.cpp/examples/llava/CMakeFiles/llama-minicpmv-cli.dir/minicpmv-cli.cpp.o.d -o vendor/llama.cpp/examples/llava/CMakeFiles/llama-minicpmv-cli.dir/minicpmv-cli.cpp.o -c /tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/examples/llava/minicpmv-cli.cpp\n", + " [29/33] /usr/bin/x86_64-linux-gnu-g++ -DLLAMA_BUILD -DLLAMA_SHARED -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/examples/llava/. -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/examples/llava/../.. -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/examples/llava/../../common -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/ggml/src/../include -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/. -I/tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/src/../include -O3 -DNDEBUG -fPIC -Wno-cast-qual -MD -MT vendor/llama.cpp/examples/llava/CMakeFiles/llava.dir/clip.cpp.o -MF vendor/llama.cpp/examples/llava/CMakeFiles/llava.dir/clip.cpp.o.d -o vendor/llama.cpp/examples/llava/CMakeFiles/llava.dir/clip.cpp.o -c /tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/vendor/llama.cpp/examples/llava/clip.cpp\n", + " [30/33] : && /tmp/pip-build-env-2181v7rz/normal/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E rm -f vendor/llama.cpp/examples/llava/libllava_static.a && /usr/bin/x86_64-linux-gnu-ar qc vendor/llama.cpp/examples/llava/libllava_static.a vendor/llama.cpp/examples/llava/CMakeFiles/llava.dir/llava.cpp.o vendor/llama.cpp/examples/llava/CMakeFiles/llava.dir/clip.cpp.o && /usr/bin/x86_64-linux-gnu-ranlib vendor/llama.cpp/examples/llava/libllava_static.a && :\n", + " [31/33] : && /usr/bin/x86_64-linux-gnu-g++ -fPIC -O3 -DNDEBUG -shared -Wl,-soname,libllava.so -o vendor/llama.cpp/examples/llava/libllava.so vendor/llama.cpp/examples/llava/CMakeFiles/llava.dir/llava.cpp.o vendor/llama.cpp/examples/llava/CMakeFiles/llava.dir/clip.cpp.o -Wl,-rpath,\"\\$ORIGIN\" vendor/llama.cpp/src/libllama.so vendor/llama.cpp/ggml/src/libggml.so && :\n", + " [32/33] : && /usr/bin/x86_64-linux-gnu-g++ -O3 -DNDEBUG vendor/llama.cpp/examples/llava/CMakeFiles/llava.dir/llava.cpp.o vendor/llama.cpp/examples/llava/CMakeFiles/llava.dir/clip.cpp.o vendor/llama.cpp/examples/llava/CMakeFiles/llama-minicpmv-cli.dir/minicpmv-cli.cpp.o -o vendor/llama.cpp/examples/llava/llama-minicpmv-cli -Wl,-rpath,/tmp/tmpx3ei8gz8/build/vendor/llama.cpp/src:/tmp/tmpx3ei8gz8/build/vendor/llama.cpp/ggml/src: vendor/llama.cpp/common/libcommon.a vendor/llama.cpp/src/libllama.so vendor/llama.cpp/ggml/src/libggml.so && :\n", + " [33/33] : && /usr/bin/x86_64-linux-gnu-g++ -O3 -DNDEBUG vendor/llama.cpp/examples/llava/CMakeFiles/llava.dir/llava.cpp.o vendor/llama.cpp/examples/llava/CMakeFiles/llava.dir/clip.cpp.o vendor/llama.cpp/examples/llava/CMakeFiles/llama-llava-cli.dir/llava-cli.cpp.o -o vendor/llama.cpp/examples/llava/llama-llava-cli -Wl,-rpath,/tmp/tmpx3ei8gz8/build/vendor/llama.cpp/src:/tmp/tmpx3ei8gz8/build/vendor/llama.cpp/ggml/src: vendor/llama.cpp/common/libcommon.a vendor/llama.cpp/src/libllama.so vendor/llama.cpp/ggml/src/libggml.so && :\n", + "\n", + " *** Installing project into wheel...\n", + " -- Install configuration: \"Release\"\n", + " -- Installing: /tmp/tmpx3ei8gz8/wheel/platlib/lib/libggml.so\n", + " -- Installing: /tmp/tmpx3ei8gz8/wheel/platlib/include/ggml.h\n", + " -- Installing: /tmp/tmpx3ei8gz8/wheel/platlib/include/ggml-alloc.h\n", + " -- Installing: /tmp/tmpx3ei8gz8/wheel/platlib/include/ggml-backend.h\n", + " -- Installing: /tmp/tmpx3ei8gz8/wheel/platlib/include/ggml-blas.h\n", + " -- Installing: /tmp/tmpx3ei8gz8/wheel/platlib/include/ggml-cann.h\n", + " -- Installing: /tmp/tmpx3ei8gz8/wheel/platlib/include/ggml-cuda.h\n", + " -- Up-to-date: /tmp/tmpx3ei8gz8/wheel/platlib/include/ggml.h\n", + " -- Installing: /tmp/tmpx3ei8gz8/wheel/platlib/include/ggml-kompute.h\n", + " -- Installing: /tmp/tmpx3ei8gz8/wheel/platlib/include/ggml-metal.h\n", + " -- Installing: /tmp/tmpx3ei8gz8/wheel/platlib/include/ggml-rpc.h\n", + " -- Installing: /tmp/tmpx3ei8gz8/wheel/platlib/include/ggml-sycl.h\n", + " -- Installing: /tmp/tmpx3ei8gz8/wheel/platlib/include/ggml-vulkan.h\n", + " -- Installing: /tmp/tmpx3ei8gz8/wheel/platlib/lib/libggml.so\n", + " -- Up-to-date: /tmp/tmpx3ei8gz8/wheel/platlib/include/ggml.h\n", + " -- Up-to-date: /tmp/tmpx3ei8gz8/wheel/platlib/include/ggml-alloc.h\n", + " -- Up-to-date: /tmp/tmpx3ei8gz8/wheel/platlib/include/ggml-backend.h\n", + " -- Up-to-date: /tmp/tmpx3ei8gz8/wheel/platlib/include/ggml-blas.h\n", + " -- Up-to-date: /tmp/tmpx3ei8gz8/wheel/platlib/include/ggml-cann.h\n", + " -- Up-to-date: /tmp/tmpx3ei8gz8/wheel/platlib/include/ggml-cuda.h\n", + " -- Up-to-date: /tmp/tmpx3ei8gz8/wheel/platlib/include/ggml.h\n", + " -- Up-to-date: /tmp/tmpx3ei8gz8/wheel/platlib/include/ggml-kompute.h\n", + " -- Up-to-date: /tmp/tmpx3ei8gz8/wheel/platlib/include/ggml-metal.h\n", + " -- Up-to-date: /tmp/tmpx3ei8gz8/wheel/platlib/include/ggml-rpc.h\n", + " -- Up-to-date: /tmp/tmpx3ei8gz8/wheel/platlib/include/ggml-sycl.h\n", + " -- Up-to-date: /tmp/tmpx3ei8gz8/wheel/platlib/include/ggml-vulkan.h\n", + " -- Installing: /tmp/tmpx3ei8gz8/wheel/platlib/lib/libllama.so\n", + " -- Installing: /tmp/tmpx3ei8gz8/wheel/platlib/include/llama.h\n", + " -- Installing: /tmp/tmpx3ei8gz8/wheel/platlib/lib/cmake/llama/llama-config.cmake\n", + " -- Installing: /tmp/tmpx3ei8gz8/wheel/platlib/lib/cmake/llama/llama-version.cmake\n", + " -- Installing: /tmp/tmpx3ei8gz8/wheel/platlib/bin/convert_hf_to_gguf.py\n", + " -- Installing: /tmp/tmpx3ei8gz8/wheel/platlib/lib/pkgconfig/llama.pc\n", + " -- Installing: /tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/llama_cpp/lib/libllama.so\n", + " -- Installing: /tmp/tmpx3ei8gz8/wheel/platlib/llama_cpp/lib/libllama.so\n", + " -- Installing: /tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/llama_cpp/lib/libggml.so\n", + " -- Installing: /tmp/tmpx3ei8gz8/wheel/platlib/llama_cpp/lib/libggml.so\n", + " -- Installing: /tmp/tmpx3ei8gz8/wheel/platlib/lib/libllava.so\n", + " -- Installing: /tmp/tmpx3ei8gz8/wheel/platlib/bin/llama-llava-cli\n", + " -- Set non-toolchain portion of runtime path of \"/tmp/tmpx3ei8gz8/wheel/platlib/bin/llama-llava-cli\" to \"\"\n", + " -- Installing: /tmp/tmpx3ei8gz8/wheel/platlib/bin/llama-minicpmv-cli\n", + " -- Set non-toolchain portion of runtime path of \"/tmp/tmpx3ei8gz8/wheel/platlib/bin/llama-minicpmv-cli\" to \"\"\n", + " -- Installing: /tmp/pip-install-m3fo_a3q/llama-cpp-python_b8cc8d05dcfa4e808b24236e1fff6d11/llama_cpp/lib/libllava.so\n", + " -- Installing: /tmp/tmpx3ei8gz8/wheel/platlib/llama_cpp/lib/libllava.so\n", + " *** Making wheel...\n", + " *** Created llama_cpp_python-0.3.1-cp310-cp310-linux_x86_64.whl\n", + " Building wheel for llama-cpp-python (pyproject.toml) ... \u001b[?25l\u001b[?25hdone\n", + " Created wheel for llama-cpp-python: filename=llama_cpp_python-0.3.1-cp310-cp310-linux_x86_64.whl size=3510590 sha256=67d919e6cea529823ffa25c552340add3b5ebaed98f617ed43413fce9394b88e\n", + " Stored in directory: /tmp/pip-ephem-wheel-cache-iv9wx9jm/wheels/f8/b0/a2/f47d952aec7ab061b9e2a345e23a1e1e137beb7891259e3d0c\n", + "Successfully built llama-cpp-python\n", + "Installing collected packages: typing-extensions, numpy, MarkupSafe, diskcache, jinja2, llama-cpp-python\n", + " Attempting uninstall: typing-extensions\n", + " Found existing installation: typing_extensions 4.12.2\n", + " Uninstalling typing_extensions-4.12.2:\n", + " Removing file or directory /usr/local/lib/python3.10/dist-packages/__pycache__/typing_extensions.cpython-310.pyc\n", + " Removing file or directory /usr/local/lib/python3.10/dist-packages/typing_extensions-4.12.2.dist-info/\n", + " Removing file or directory /usr/local/lib/python3.10/dist-packages/typing_extensions.py\n", + " Successfully uninstalled typing_extensions-4.12.2\n", + " Attempting uninstall: numpy\n", + " Found existing installation: numpy 2.1.2\n", + " Uninstalling numpy-2.1.2:\n", + " Removing file or directory /usr/local/bin/f2py\n", + " Removing file or directory /usr/local/bin/numpy-config\n", + " Removing file or directory /usr/local/lib/python3.10/dist-packages/numpy-2.1.2.dist-info/\n", + " Removing file or directory /usr/local/lib/python3.10/dist-packages/numpy.libs/\n", + " Removing file or directory /usr/local/lib/python3.10/dist-packages/numpy/\n", + " Successfully uninstalled numpy-2.1.2\n", + " changing mode of /usr/local/bin/f2py to 755\n", + " changing mode of /usr/local/bin/numpy-config to 755\n", + " Attempting uninstall: MarkupSafe\n", + " Found existing installation: MarkupSafe 2.1.5\n", + " Uninstalling MarkupSafe-2.1.5:\n", + " Removing file or directory /usr/local/lib/python3.10/dist-packages/MarkupSafe-2.1.5.dist-info/\n", + " Removing file or directory /usr/local/lib/python3.10/dist-packages/markupsafe/\n", + " Successfully uninstalled MarkupSafe-2.1.5\n", + " Attempting uninstall: diskcache\n", + " Found existing installation: diskcache 5.6.3\n", + " Uninstalling diskcache-5.6.3:\n", + " Removing file or directory /usr/local/lib/python3.10/dist-packages/diskcache-5.6.3.dist-info/\n", + " Removing file or directory /usr/local/lib/python3.10/dist-packages/diskcache/\n", + " Successfully uninstalled diskcache-5.6.3\n", + " Attempting uninstall: jinja2\n", + " Found existing installation: Jinja2 3.1.4\n", + " Uninstalling Jinja2-3.1.4:\n", + " Removing file or directory /usr/local/lib/python3.10/dist-packages/jinja2-3.1.4.dist-info/\n", + " Removing file or directory /usr/local/lib/python3.10/dist-packages/jinja2/\n", + " Successfully uninstalled Jinja2-3.1.4\n", + " Attempting uninstall: llama-cpp-python\n", + " Found existing installation: llama_cpp_python 0.1.78\n", + " Uninstalling llama_cpp_python-0.1.78:\n", + " Removing file or directory /usr/local/bin/__pycache__/convert-lora-to-ggml.cpython-310.pyc\n", + " Removing file or directory /usr/local/bin/__pycache__/convert.cpython-310.pyc\n", + " Removing file or directory /usr/local/bin/convert-lora-to-ggml.py\n", + " Removing file or directory /usr/local/bin/convert.py\n", + " Removing file or directory /usr/local/lib/libggml_shared.so\n", + " Removing file or directory /usr/local/lib/libllama.so\n", + " Removing file or directory /usr/local/lib/python3.10/dist-packages/llama_cpp/\n", + " Removing file or directory /usr/local/lib/python3.10/dist-packages/llama_cpp_python-0.1.78.dist-info/\n", + " Successfully uninstalled llama_cpp_python-0.1.78\n", + "\u001b[31mERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.\n", + "cudf-cu12 24.6.1 requires numpy<2.0a0,>=1.23, but you have numpy 2.1.2 which is incompatible.\n", + "cupy-cuda12x 12.2.0 requires numpy<1.27,>=1.20, but you have numpy 2.1.2 which is incompatible.\n", + "gensim 4.3.3 requires numpy<2.0,>=1.18.5, but you have numpy 2.1.2 which is incompatible.\n", + "numba 0.60.0 requires numpy<2.1,>=1.22, but you have numpy 2.1.2 which is incompatible.\n", + "pytensor 2.25.4 requires numpy<2,>=1.17.0, but you have numpy 2.1.2 which is incompatible.\n", + "rmm-cu12 24.6.0 requires numpy<2.0a0,>=1.23, but you have numpy 2.1.2 which is incompatible.\n", + "tensorflow 2.17.0 requires numpy<2.0.0,>=1.23.5; python_version <= \"3.11\", but you have numpy 2.1.2 which is incompatible.\n", + "thinc 8.2.5 requires numpy<2.0.0,>=1.19.0; python_version >= \"3.9\", but you have numpy 2.1.2 which is incompatible.\u001b[0m\u001b[31m\n", + "\u001b[0mSuccessfully installed MarkupSafe-2.1.5 diskcache-5.6.3 jinja2-3.1.4 llama-cpp-python-0.3.1 numpy-2.1.2 typing-extensions-4.12.2\n" + ] + }, + { + "output_type": "display_data", + "data": { + "application/vnd.colab-display-data+json": { + "pip_warning": { + "packages": [ + "diskcache" + ] + }, + "id": "5021d6748a24454d8ff21678b14ced1b" + } + }, + "metadata": {} + } + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "b_nBHTYSoIWV", + "outputId": "bad6494d-4bf5-432c-f181-1dbea4fd28e6" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Requirement already satisfied: huggingface_hub in /usr/local/lib/python3.10/dist-packages (0.24.7)\n", + "Requirement already satisfied: filelock in /usr/local/lib/python3.10/dist-packages (from huggingface_hub) (3.16.1)\n", + "Requirement already satisfied: fsspec>=2023.5.0 in /usr/local/lib/python3.10/dist-packages (from huggingface_hub) (2024.6.1)\n", + "Requirement already satisfied: packaging>=20.9 in /usr/local/lib/python3.10/dist-packages (from huggingface_hub) (24.1)\n", + "Requirement already satisfied: pyyaml>=5.1 in /usr/local/lib/python3.10/dist-packages (from huggingface_hub) (6.0.2)\n", + "Requirement already satisfied: requests in /usr/local/lib/python3.10/dist-packages (from huggingface_hub) (2.32.3)\n", + "Requirement already satisfied: tqdm>=4.42.1 in /usr/local/lib/python3.10/dist-packages (from huggingface_hub) (4.66.5)\n", + "Requirement already satisfied: typing-extensions>=3.7.4.3 in /usr/local/lib/python3.10/dist-packages (from huggingface_hub) (4.12.2)\n", + "Requirement already satisfied: charset-normalizer<4,>=2 in /usr/local/lib/python3.10/dist-packages (from requests->huggingface_hub) (3.3.2)\n", + "Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.10/dist-packages (from requests->huggingface_hub) (3.10)\n", + "Requirement already satisfied: urllib3<3,>=1.21.1 in /usr/local/lib/python3.10/dist-packages (from requests->huggingface_hub) (2.2.3)\n", + "Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.10/dist-packages (from requests->huggingface_hub) (2024.8.30)\n" + ] + } + ], + "source": [ + "# For download the models\n", + "!pip install huggingface_hub" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "R11KqY7lW0yv" + }, + "source": [ + "# Select the model" + ] + }, + { + "cell_type": "code", + "source": [ + "pip install hf_transfer" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "hmjpDcjRcIUw", + "outputId": "1619fe94-5f87-4bc8-f50b-b1bfa6809e6c" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Collecting hf_transfer\n", + " Downloading hf_transfer-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.7 kB)\n", + "Downloading hf_transfer-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB)\n", + "\u001b[?25l \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m0.0/3.6 MB\u001b[0m \u001b[31m?\u001b[0m eta \u001b[36m-:--:--\u001b[0m\r\u001b[2K \u001b[91mโ”โ”\u001b[0m\u001b[91mโ•ธ\u001b[0m\u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m0.2/3.6 MB\u001b[0m \u001b[31m6.8 MB/s\u001b[0m eta \u001b[36m0:00:01\u001b[0m\r\u001b[2K \u001b[91mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m\u001b[91mโ•ธ\u001b[0m \u001b[32m3.6/3.6 MB\u001b[0m \u001b[31m53.9 MB/s\u001b[0m eta \u001b[36m0:00:01\u001b[0m\r\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m3.6/3.6 MB\u001b[0m \u001b[31m42.3 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[?25hInstalling collected packages: hf_transfer\n", + "Successfully installed hf_transfer-0.1.8\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "import os\n", + "os.environ[\"HF_HUB_ENABLE_HF_TRANSFER\"] = \"1\"\n", + "!huggingface-cli download \\\n", + " ruslanmv/Meta-Llama-3.1-8B-Text-to-SQL-GGUF-q4 \\\n", + " unsloth.Q4_K_M.gguf \\\n", + " --local-dir . \\\n", + " --local-dir-use-symlinks False\n", + "\n", + "MODEL_PATH=\"/content/unsloth.Q4_K_M.gguf\"\n" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "veWsgT5Dbx5B", + "outputId": "39a8b7c1-b8e9-4848-daf0-72277a68e64f" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "/usr/local/lib/python3.10/dist-packages/huggingface_hub/commands/download.py:132: FutureWarning: Ignoring --local-dir-use-symlinks. Downloading to a local directory does not use symlinks anymore.\n", + " warnings.warn(\n", + "Removing incomplete file '.cache/huggingface/download/unsloth.Q4_K_M.gguf.ba1a48de32b0de97847c6469480e722c14c6eee429d59557e64db5a2c213ce06.incomplete' (hf_transfer=True)\n", + "Downloading 'unsloth.Q4_K_M.gguf' to '.cache/huggingface/download/unsloth.Q4_K_M.gguf.ba1a48de32b0de97847c6469480e722c14c6eee429d59557e64db5a2c213ce06.incomplete'\n", + "unsloth.Q4_K_M.gguf: 100% 4.92G/4.92G [00:30<00:00, 160MB/s]\n", + "Download complete. Moving file to unsloth.Q4_K_M.gguf\n", + "unsloth.Q4_K_M.gguf\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "!ls" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "puI1KXSWcdMQ", + "outputId": "781ac5f0-1ed4-436d-9821-832e531756a4" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "sample_data unsloth.Q4_K_M.gguf\n" + ] + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "max1jwxvCSbm" + }, + "source": [ + "# Inference with llama-cpp-python" + ] + }, + { + "cell_type": "code", + "source": [ + "user_query = \"Seleziona tutte le colonne della tabella table1 dove la colonna anni รจ uguale a 2020\"" + ], + "metadata": { + "id": "Fl_GPauuddNM" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "# Define Alpaca-style prompt template\n", + "alpaca_prompt = \"\"\"Below is an instruction that describes a task, paired with an input that provides further context. Write a response that appropriately completes the request.\n", + "\n", + "### Instruction:\n", + "{}\n", + "\n", + "### Input:\n", + "{}\n", + "\n", + "### Response:\n", + "\"\"\"\n", + "\n", + "# Format the prompt without the response part\n", + "prompt = alpaca_prompt.format(\n", + " \"Provide the SQL query\",\n", + " user_query\n", + ")\n" + ], + "metadata": { + "id": "b-NoxAKdcx8q" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "prompt" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 88 + }, + "id": "GwzfQW9DdUbO", + "outputId": "c3dc7a19-8e2e-436c-aa6f-60cea59015e4" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "'Below is an instruction that describes a task, paired with an input that provides further context. Write a response that appropriately completes the request.\\n\\n### Instruction:\\nProvide the SQL query\\n\\n### Input:\\nSeleziona tutte le colonne della tabella table1 dove la colonna anni รจ uguale a 2020\\n\\n### Response:\\n'" + ], + "application/vnd.google.colaboratory.intrinsic+json": { + "type": "string" + } + }, + "metadata": {}, + "execution_count": 13 + } + ] + }, + { + "cell_type": "code", + "source": [ + "import os\n", + "os.environ[\"HF_HUB_ENABLE_HF_TRANSFER\"] = \"1\"\n", + "!huggingface-cli download \\\n", + " ruslanmv/Meta-Llama-3.1-8B-Text-to-SQL-GGUF-q4 \\\n", + " unsloth.Q4_K_M.gguf \\\n", + " --local-dir . \\\n", + " --local-dir-use-symlinks False" + ], + "metadata": { + "id": "dokYzZR-g3gH" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "!mv unsloth.Q4_K_M.gguf unsloth_Q4_K_M.gguf" + ], + "metadata": { + "id": "xOfphEbKhqT0" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "!ls -lth" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "SLgxfaTpg9GD", + "outputId": "f4b670c6-b58e-441b-f1dc-c3c5493f04aa" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "total 4.6G\n", + "-rw-r--r-- 1 root root 4.6G Oct 7 10:05 unsloth.Q4_K_M.gguf\n", + "drwxr-xr-x 1 root root 4.0K Oct 3 13:24 sample_data\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "from llama_cpp import Llama\n", + "import json\n", + "import os\n", + "\n", + "# Ensure the model path exists\n", + "MODEL_PATH = \"/content/unsloth_Q4_K_M.gguf\"\n", + "assert os.path.exists(MODEL_PATH), f\"Model path {MODEL_PATH} does not exist.\"\n", + "\n", + "B_INST, E_INST = \"[INST]\", \"[/INST]\"\n", + "B_SYS, E_SYS = \"<>\\n\", \"\\n<>\\n\\n\"\n", + "DEFAULT_SYSTEM_PROMPT = \"\"\"\\\n", + "Below is an instruction that describes a task, paired with an input that provides further context. Write a response that appropriately completes the request.\n", + "\"\"\"\n", + "SYSTEM_PROMPT = B_SYS + DEFAULT_SYSTEM_PROMPT + E_SYS\n", + "\n", + "def create_prompt(user_query):\n", + " instruction = f\"Provide the SQL query. User asks: {user_query}\\n\"\n", + " prompt = B_INST + SYSTEM_PROMPT + instruction + E_INST\n", + " return prompt.strip()\n", + "\n", + "# Define user query\n", + "user_query = \"Seleziona tutte le colonne della tabella table1 dove la colonna anni รจ uguale a 2020\"\n", + "prompt = create_prompt(user_query)\n", + "print(f\"Prompt created:\\n{prompt}\")\n", + "\n", + "# Try loading the model\n", + "try:\n", + " llm = Llama(model_path=MODEL_PATH, n_gpu_layers=1) # Ensure the correct layers are being used for your hardware\n", + "except AssertionError as e:\n", + " raise RuntimeError(f\"Failed to load the model. Check that the model is in the correct format: {e}\")\n", + "\n", + "# Perform inference\n", + "try:\n", + " result = llm(\n", + " prompt=prompt,\n", + " max_tokens=200,\n", + " echo=False\n", + " )\n", + " print(result['choices'][0]['text'])\n", + "except Exception as e:\n", + " print(f\"Error during inference: {e}\")\n" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "1DxB6Bgjhiu3", + "outputId": "2ceb052b-b3d3-476d-c659-04264c4f3a65" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "stream", + "name": "stderr", + "text": [ + "llama_model_loader: loaded meta data with 27 key-value pairs and 292 tensors from /content/unsloth_Q4_K_M.gguf (version GGUF V3 (latest))\n", + "llama_model_loader: Dumping metadata keys/values. Note: KV overrides do not apply in this output.\n", + "llama_model_loader: - kv 0: general.architecture str = llama\n", + "llama_model_loader: - kv 1: general.type str = model\n", + "llama_model_loader: - kv 2: general.name str = Meta Llama 3.1 8b Bnb 4bit\n", + "llama_model_loader: - kv 3: general.organization str = Unsloth\n", + "llama_model_loader: - kv 4: general.finetune str = bnb-4bit\n", + "llama_model_loader: - kv 5: general.basename str = meta-llama-3.1\n", + "llama_model_loader: - kv 6: general.size_label str = 8B\n", + "llama_model_loader: - kv 7: llama.block_count u32 = 32\n", + "llama_model_loader: - kv 8: llama.context_length u32 = 131072\n", + "llama_model_loader: - kv 9: llama.embedding_length u32 = 4096\n", + "llama_model_loader: - kv 10: llama.feed_forward_length u32 = 14336\n", + "llama_model_loader: - kv 11: llama.attention.head_count u32 = 32\n", + "llama_model_loader: - kv 12: llama.attention.head_count_kv u32 = 8\n", + "llama_model_loader: - kv 13: llama.rope.freq_base f32 = 500000.000000\n", + "llama_model_loader: - kv 14: llama.attention.layer_norm_rms_epsilon f32 = 0.000010\n", + "llama_model_loader: - kv 15: general.file_type u32 = 15\n", + "llama_model_loader: - kv 16: llama.vocab_size u32 = 128256\n", + "llama_model_loader: - kv 17: llama.rope.dimension_count u32 = 128\n", + "llama_model_loader: - kv 18: tokenizer.ggml.model str = gpt2\n", + "llama_model_loader: - kv 19: tokenizer.ggml.pre str = llama-bpe\n", + "llama_model_loader: - kv 20: tokenizer.ggml.tokens arr[str,128256] = [\"!\", \"\\\"\", \"#\", \"$\", \"%\", \"&\", \"'\", ...\n", + "llama_model_loader: - kv 21: tokenizer.ggml.token_type arr[i32,128256] = [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...\n", + "llama_model_loader: - kv 22: tokenizer.ggml.merges arr[str,280147] = [\"ฤ  ฤ \", \"ฤ  ฤ ฤ ฤ \", \"ฤ ฤ  ฤ ฤ \", \"...\n", + "llama_model_loader: - kv 23: tokenizer.ggml.bos_token_id u32 = 128000\n", + "llama_model_loader: - kv 24: tokenizer.ggml.eos_token_id u32 = 128001\n", + "llama_model_loader: - kv 25: tokenizer.ggml.padding_token_id u32 = 128004\n", + "llama_model_loader: - kv 26: general.quantization_version u32 = 2\n", + "llama_model_loader: - type f32: 66 tensors\n", + "llama_model_loader: - type q4_K: 193 tensors\n", + "llama_model_loader: - type q6_K: 33 tensors\n" + ] + }, + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Prompt created:\n", + "[INST]<>\n", + "Below is an instruction that describes a task, paired with an input that provides further context. Write a response that appropriately completes the request.\n", + "\n", + "<>\n", + "\n", + "Provide the SQL query. User asks: Seleziona tutte le colonne della tabella table1 dove la colonna anni รจ uguale a 2020\n", + "[/INST]\n" + ] + }, + { + "output_type": "stream", + "name": "stderr", + "text": [ + "llm_load_vocab: special_eos_id is not in special_eog_ids - the tokenizer config may be incorrect\n", + "llm_load_vocab: special tokens cache size = 256\n", + "llm_load_vocab: token to piece cache size = 0.7999 MB\n", + "llm_load_print_meta: format = GGUF V3 (latest)\n", + "llm_load_print_meta: arch = llama\n", + "llm_load_print_meta: vocab type = BPE\n", + "llm_load_print_meta: n_vocab = 128256\n", + "llm_load_print_meta: n_merges = 280147\n", + "llm_load_print_meta: vocab_only = 0\n", + "llm_load_print_meta: n_ctx_train = 131072\n", + "llm_load_print_meta: n_embd = 4096\n", + "llm_load_print_meta: n_layer = 32\n", + "llm_load_print_meta: n_head = 32\n", + "llm_load_print_meta: n_head_kv = 8\n", + "llm_load_print_meta: n_rot = 128\n", + "llm_load_print_meta: n_swa = 0\n", + "llm_load_print_meta: n_embd_head_k = 128\n", + "llm_load_print_meta: n_embd_head_v = 128\n", + "llm_load_print_meta: n_gqa = 4\n", + "llm_load_print_meta: n_embd_k_gqa = 1024\n", + "llm_load_print_meta: n_embd_v_gqa = 1024\n", + "llm_load_print_meta: f_norm_eps = 0.0e+00\n", + "llm_load_print_meta: f_norm_rms_eps = 1.0e-05\n", + "llm_load_print_meta: f_clamp_kqv = 0.0e+00\n", + "llm_load_print_meta: f_max_alibi_bias = 0.0e+00\n", + "llm_load_print_meta: f_logit_scale = 0.0e+00\n", + "llm_load_print_meta: n_ff = 14336\n", + "llm_load_print_meta: n_expert = 0\n", + "llm_load_print_meta: n_expert_used = 0\n", + "llm_load_print_meta: causal attn = 1\n", + "llm_load_print_meta: pooling type = 0\n", + "llm_load_print_meta: rope type = 0\n", + "llm_load_print_meta: rope scaling = linear\n", + "llm_load_print_meta: freq_base_train = 500000.0\n", + "llm_load_print_meta: freq_scale_train = 1\n", + "llm_load_print_meta: n_ctx_orig_yarn = 131072\n", + "llm_load_print_meta: rope_finetuned = unknown\n", + "llm_load_print_meta: ssm_d_conv = 0\n", + "llm_load_print_meta: ssm_d_inner = 0\n", + "llm_load_print_meta: ssm_d_state = 0\n", + "llm_load_print_meta: ssm_dt_rank = 0\n", + "llm_load_print_meta: ssm_dt_b_c_rms = 0\n", + "llm_load_print_meta: model type = 8B\n", + "llm_load_print_meta: model ftype = Q4_K - Medium\n", + "llm_load_print_meta: model params = 8.03 B\n", + "llm_load_print_meta: model size = 4.58 GiB (4.89 BPW) \n", + "llm_load_print_meta: general.name = Meta Llama 3.1 8b Bnb 4bit\n", + "llm_load_print_meta: BOS token = 128000 '<|begin_of_text|>'\n", + "llm_load_print_meta: EOS token = 128001 '<|end_of_text|>'\n", + "llm_load_print_meta: PAD token = 128004 '<|finetune_right_pad_id|>'\n", + "llm_load_print_meta: LF token = 128 'ร„'\n", + "llm_load_print_meta: EOT token = 128009 '<|eot_id|>'\n", + "llm_load_print_meta: EOM token = 128008 '<|eom_id|>'\n", + "llm_load_print_meta: EOG token = 128001 '<|end_of_text|>'\n", + "llm_load_print_meta: EOG token = 128008 '<|eom_id|>'\n", + "llm_load_print_meta: EOG token = 128009 '<|eot_id|>'\n", + "llm_load_print_meta: max token length = 256\n", + "llm_load_tensors: ggml ctx size = 0.14 MiB\n", + "llm_load_tensors: CPU buffer size = 4685.30 MiB\n", + "........................................................................................\n", + "llama_new_context_with_model: n_ctx = 512\n", + "llama_new_context_with_model: n_batch = 512\n", + "llama_new_context_with_model: n_ubatch = 512\n", + "llama_new_context_with_model: flash_attn = 0\n", + "llama_new_context_with_model: freq_base = 500000.0\n", + "llama_new_context_with_model: freq_scale = 1\n", + "llama_kv_cache_init: CPU KV buffer size = 64.00 MiB\n", + "llama_new_context_with_model: KV self size = 64.00 MiB, K (f16): 32.00 MiB, V (f16): 32.00 MiB\n", + "llama_new_context_with_model: CPU output buffer size = 0.49 MiB\n", + "llama_new_context_with_model: CPU compute buffer size = 258.50 MiB\n", + "llama_new_context_with_model: graph nodes = 1030\n", + "llama_new_context_with_model: graph splits = 1\n", + "AVX = 1 | AVX_VNNI = 0 | AVX2 = 1 | AVX512 = 1 | AVX512_VBMI = 0 | AVX512_VNNI = 0 | AVX512_BF16 = 0 | FMA = 1 | NEON = 0 | SVE = 0 | ARM_FMA = 0 | F16C = 1 | FP16_VA = 0 | RISCV_VECT = 0 | WASM_SIMD = 0 | BLAS = 0 | SSE3 = 1 | SSSE3 = 1 | VSX = 0 | MATMUL_INT8 = 0 | LLAMAFILE = 1 | \n", + "Model metadata: {'tokenizer.ggml.eos_token_id': '128001', 'general.quantization_version': '2', 'tokenizer.ggml.model': 'gpt2', 'llama.rope.dimension_count': '128', 'llama.vocab_size': '128256', 'general.file_type': '15', 'llama.attention.layer_norm_rms_epsilon': '0.000010', 'llama.rope.freq_base': '500000.000000', 'general.architecture': 'llama', 'tokenizer.ggml.padding_token_id': '128004', 'general.basename': 'meta-llama-3.1', 'tokenizer.ggml.bos_token_id': '128000', 'llama.attention.head_count': '32', 'tokenizer.ggml.pre': 'llama-bpe', 'llama.context_length': '131072', 'general.name': 'Meta Llama 3.1 8b Bnb 4bit', 'general.organization': 'Unsloth', 'general.finetune': 'bnb-4bit', 'general.type': 'model', 'general.size_label': '8B', 'llama.embedding_length': '4096', 'llama.feed_forward_length': '14336', 'llama.block_count': '32', 'llama.attention.head_count_kv': '8'}\n", + "Using fallback chat format: llama-2\n", + "llama_perf_context_print: load time = 28196.78 ms\n", + "llama_perf_context_print: prompt eval time = 0.00 ms / 75 tokens ( 0.00 ms per token, inf tokens per second)\n", + "llama_perf_context_print: eval time = 0.00 ms / 13 runs ( 0.00 ms per token, inf tokens per second)\n", + "llama_perf_context_print: total time = 36996.56 ms / 88 tokens\n" + ] + }, + { + "output_type": "stream", + "name": "stdout", + "text": [ + ">>SELECT * FROM table1 WHERE anni = 2020\n", + "\n" + ] + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "8TOfnZpj394g" + }, + "source": [ + "Loading the model" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "oY1bItJu4Zfv", + "outputId": "f65866b5-0db2-4450-9c16-3f1f1697ae44" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stderr", + "text": [ + "llama_model_loader: loaded meta data with 27 key-value pairs and 292 tensors from /content/unsloth_Q4_K_M.gguf (version GGUF V3 (latest))\n", + "llama_model_loader: Dumping metadata keys/values. Note: KV overrides do not apply in this output.\n", + "llama_model_loader: - kv 0: general.architecture str = llama\n", + "llama_model_loader: - kv 1: general.type str = model\n", + "llama_model_loader: - kv 2: general.name str = Meta Llama 3.1 8b Bnb 4bit\n", + "llama_model_loader: - kv 3: general.organization str = Unsloth\n", + "llama_model_loader: - kv 4: general.finetune str = bnb-4bit\n", + "llama_model_loader: - kv 5: general.basename str = meta-llama-3.1\n", + "llama_model_loader: - kv 6: general.size_label str = 8B\n", + "llama_model_loader: - kv 7: llama.block_count u32 = 32\n", + "llama_model_loader: - kv 8: llama.context_length u32 = 131072\n", + "llama_model_loader: - kv 9: llama.embedding_length u32 = 4096\n", + "llama_model_loader: - kv 10: llama.feed_forward_length u32 = 14336\n", + "llama_model_loader: - kv 11: llama.attention.head_count u32 = 32\n", + "llama_model_loader: - kv 12: llama.attention.head_count_kv u32 = 8\n", + "llama_model_loader: - kv 13: llama.rope.freq_base f32 = 500000.000000\n", + "llama_model_loader: - kv 14: llama.attention.layer_norm_rms_epsilon f32 = 0.000010\n", + "llama_model_loader: - kv 15: general.file_type u32 = 15\n", + "llama_model_loader: - kv 16: llama.vocab_size u32 = 128256\n", + "llama_model_loader: - kv 17: llama.rope.dimension_count u32 = 128\n", + "llama_model_loader: - kv 18: tokenizer.ggml.model str = gpt2\n", + "llama_model_loader: - kv 19: tokenizer.ggml.pre str = llama-bpe\n", + "llama_model_loader: - kv 20: tokenizer.ggml.tokens arr[str,128256] = [\"!\", \"\\\"\", \"#\", \"$\", \"%\", \"&\", \"'\", ...\n", + "llama_model_loader: - kv 21: tokenizer.ggml.token_type arr[i32,128256] = [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...\n", + "llama_model_loader: - kv 22: tokenizer.ggml.merges arr[str,280147] = [\"ฤ  ฤ \", \"ฤ  ฤ ฤ ฤ \", \"ฤ ฤ  ฤ ฤ \", \"...\n", + "llama_model_loader: - kv 23: tokenizer.ggml.bos_token_id u32 = 128000\n", + "llama_model_loader: - kv 24: tokenizer.ggml.eos_token_id u32 = 128001\n", + "llama_model_loader: - kv 25: tokenizer.ggml.padding_token_id u32 = 128004\n", + "llama_model_loader: - kv 26: general.quantization_version u32 = 2\n", + "llama_model_loader: - type f32: 66 tensors\n", + "llama_model_loader: - type q4_K: 193 tensors\n", + "llama_model_loader: - type q6_K: 33 tensors\n", + "llm_load_vocab: special_eos_id is not in special_eog_ids - the tokenizer config may be incorrect\n", + "llm_load_vocab: special tokens cache size = 256\n", + "llm_load_vocab: token to piece cache size = 0.7999 MB\n", + "llm_load_print_meta: format = GGUF V3 (latest)\n", + "llm_load_print_meta: arch = llama\n", + "llm_load_print_meta: vocab type = BPE\n", + "llm_load_print_meta: n_vocab = 128256\n", + "llm_load_print_meta: n_merges = 280147\n", + "llm_load_print_meta: vocab_only = 0\n", + "llm_load_print_meta: n_ctx_train = 131072\n", + "llm_load_print_meta: n_embd = 4096\n", + "llm_load_print_meta: n_layer = 32\n", + "llm_load_print_meta: n_head = 32\n", + "llm_load_print_meta: n_head_kv = 8\n", + "llm_load_print_meta: n_rot = 128\n", + "llm_load_print_meta: n_swa = 0\n", + "llm_load_print_meta: n_embd_head_k = 128\n", + "llm_load_print_meta: n_embd_head_v = 128\n", + "llm_load_print_meta: n_gqa = 4\n", + "llm_load_print_meta: n_embd_k_gqa = 1024\n", + "llm_load_print_meta: n_embd_v_gqa = 1024\n", + "llm_load_print_meta: f_norm_eps = 0.0e+00\n", + "llm_load_print_meta: f_norm_rms_eps = 1.0e-05\n", + "llm_load_print_meta: f_clamp_kqv = 0.0e+00\n", + "llm_load_print_meta: f_max_alibi_bias = 0.0e+00\n", + "llm_load_print_meta: f_logit_scale = 0.0e+00\n", + "llm_load_print_meta: n_ff = 14336\n", + "llm_load_print_meta: n_expert = 0\n", + "llm_load_print_meta: n_expert_used = 0\n", + "llm_load_print_meta: causal attn = 1\n", + "llm_load_print_meta: pooling type = 0\n", + "llm_load_print_meta: rope type = 0\n", + "llm_load_print_meta: rope scaling = linear\n", + "llm_load_print_meta: freq_base_train = 500000.0\n", + "llm_load_print_meta: freq_scale_train = 1\n", + "llm_load_print_meta: n_ctx_orig_yarn = 131072\n", + "llm_load_print_meta: rope_finetuned = unknown\n", + "llm_load_print_meta: ssm_d_conv = 0\n", + "llm_load_print_meta: ssm_d_inner = 0\n", + "llm_load_print_meta: ssm_d_state = 0\n", + "llm_load_print_meta: ssm_dt_rank = 0\n", + "llm_load_print_meta: ssm_dt_b_c_rms = 0\n", + "llm_load_print_meta: model type = 8B\n", + "llm_load_print_meta: model ftype = Q4_K - Medium\n", + "llm_load_print_meta: model params = 8.03 B\n", + "llm_load_print_meta: model size = 4.58 GiB (4.89 BPW) \n", + "llm_load_print_meta: general.name = Meta Llama 3.1 8b Bnb 4bit\n", + "llm_load_print_meta: BOS token = 128000 '<|begin_of_text|>'\n", + "llm_load_print_meta: EOS token = 128001 '<|end_of_text|>'\n", + "llm_load_print_meta: PAD token = 128004 '<|finetune_right_pad_id|>'\n", + "llm_load_print_meta: LF token = 128 'ร„'\n", + "llm_load_print_meta: EOT token = 128009 '<|eot_id|>'\n", + "llm_load_print_meta: EOM token = 128008 '<|eom_id|>'\n", + "llm_load_print_meta: EOG token = 128001 '<|end_of_text|>'\n", + "llm_load_print_meta: EOG token = 128008 '<|eom_id|>'\n", + "llm_load_print_meta: EOG token = 128009 '<|eot_id|>'\n", + "llm_load_print_meta: max token length = 256\n", + "llm_load_tensors: ggml ctx size = 0.14 MiB\n", + "llm_load_tensors: CPU buffer size = 4685.30 MiB\n", + "........................................................................................\n", + "llama_new_context_with_model: n_ctx = 4096\n", + "llama_new_context_with_model: n_batch = 512\n", + "llama_new_context_with_model: n_ubatch = 512\n", + "llama_new_context_with_model: flash_attn = 0\n", + "llama_new_context_with_model: freq_base = 500000.0\n", + "llama_new_context_with_model: freq_scale = 1\n", + "llama_kv_cache_init: CPU KV buffer size = 512.00 MiB\n", + "llama_new_context_with_model: KV self size = 512.00 MiB, K (f16): 256.00 MiB, V (f16): 256.00 MiB\n", + "llama_new_context_with_model: CPU output buffer size = 0.49 MiB\n", + "llama_new_context_with_model: CPU compute buffer size = 296.01 MiB\n", + "llama_new_context_with_model: graph nodes = 1030\n", + "llama_new_context_with_model: graph splits = 1\n", + "AVX = 1 | AVX_VNNI = 0 | AVX2 = 1 | AVX512 = 1 | AVX512_VBMI = 0 | AVX512_VNNI = 0 | AVX512_BF16 = 0 | FMA = 1 | NEON = 0 | SVE = 0 | ARM_FMA = 0 | F16C = 1 | FP16_VA = 0 | RISCV_VECT = 0 | WASM_SIMD = 0 | BLAS = 0 | SSE3 = 1 | SSSE3 = 1 | VSX = 0 | MATMUL_INT8 = 0 | LLAMAFILE = 1 | \n", + "Model metadata: {'tokenizer.ggml.eos_token_id': '128001', 'general.quantization_version': '2', 'tokenizer.ggml.model': 'gpt2', 'llama.rope.dimension_count': '128', 'llama.vocab_size': '128256', 'general.file_type': '15', 'llama.attention.layer_norm_rms_epsilon': '0.000010', 'llama.rope.freq_base': '500000.000000', 'general.architecture': 'llama', 'tokenizer.ggml.padding_token_id': '128004', 'general.basename': 'meta-llama-3.1', 'tokenizer.ggml.bos_token_id': '128000', 'llama.attention.head_count': '32', 'tokenizer.ggml.pre': 'llama-bpe', 'llama.context_length': '131072', 'general.name': 'Meta Llama 3.1 8b Bnb 4bit', 'general.organization': 'Unsloth', 'general.finetune': 'bnb-4bit', 'general.type': 'model', 'general.size_label': '8B', 'llama.embedding_length': '4096', 'llama.feed_forward_length': '14336', 'llama.block_count': '32', 'llama.attention.head_count_kv': '8'}\n", + "Using fallback chat format: llama-2\n" + ] + } + ], + "source": [ + "# GPU\n", + "from llama_cpp import Llama\n", + "lcpp_llm = None\n", + "lcpp_llm = Llama(\n", + " model_path=MODEL_PATH,\n", + " n_threads=2, # CPU cores\n", + " n_batch=512, # Should be between 1 and n_ctx, consider the amount of VRAM in your GPU.\n", + " n_gpu_layers=43, # Change this value based on your model and your GPU VRAM pool.\n", + " n_ctx=4096, # Context window\n", + ")" + ] + }, + { + "cell_type": "markdown", + "source": [ + "\n", + "For run in CPU\n", + "```\n", + "# CPU\n", + "from llama_cpp import Llama\n", + "\n", + "lcpp_llm = Llama(\n", + " model_path=model_path,\n", + " n_threads=2, # CPU cores\n", + " )\n", + "```\n", + "\n" + ], + "metadata": { + "id": "UdZnPtB8-Bhx" + } + }, + { + "cell_type": "markdown", + "metadata": { + "id": "qLEEOufGVlID" + }, + "source": [ + "We will use this prompt." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "id": "-NzVIlMCVoVD" + }, + "outputs": [], + "source": [ + "prompt = \"Seleziona tutte le colonne della tabella table1 dove la colonna anni รจ uguale a 2020\"\n", + "prompt_template=f'''SYSTEM: Below is an instruction that describes a task, paired with an input that provides further context. Write a response that appropriately completes the request.\n", + "\n", + "Provide the SQL query. USER: {prompt}\n", + "\n", + "ASSISTANT:\n", + "'''" + ] + }, + { + "cell_type": "code", + "source": [ + "prompt_template" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 88 + }, + "id": "pF-faTarmeFq", + "outputId": "4ae18dd7-6a36-4677-e78c-2a714aafa5c3" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "'SYSTEM: Below is an instruction that describes a task, paired with an input that provides further context. Write a response that appropriately completes the request.\\n\\nProvide the SQL query. USER: Seleziona tutte le colonne della tabella table1 dove la colonna anni รจ uguale a 2020\\n\\nASSISTANT:\\n'" + ], + "application/vnd.google.colaboratory.intrinsic+json": { + "type": "string" + } + }, + "metadata": {}, + "execution_count": 12 + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "qaFQjPhcFgfN" + }, + "source": [ + "Generating response\n", + "\n", + "If you only use CPU, the response can take a long time. You can reduce the max_tokens to get a faster response." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "R76uxL293jTc", + "outputId": "42cc8a7f-11ff-42e9-cd11-9d7c5d7457b9" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stderr", + "text": [ + "Llama.generate: 35 prefix-match hit, remaining 32 prompt tokens to eval\n", + "llama_perf_context_print: load time = 25304.99 ms\n", + "llama_perf_context_print: prompt eval time = 0.00 ms / 32 tokens ( 0.00 ms per token, inf tokens per second)\n", + "llama_perf_context_print: eval time = 0.00 ms / 14 runs ( 0.00 ms per token, inf tokens per second)\n", + "llama_perf_context_print: total time = 20285.56 ms / 46 tokens\n" + ] + }, + { + "output_type": "stream", + "name": "stdout", + "text": [ + "SYSTEM: Below is an instruction that describes a task, paired with an input that provides further context. Write a response that appropriately completes the request.\n", + "\n", + "Provide the SQL query. USER: Seleziona tutte le colonne della tabella table1 dove la colonna anni รจ uguale a 2020\n", + "\n", + "ASSISTANT:\n", + "```\n", + "SELECT * FROM table1 WHERE anni=2020\n", + "```\n" + ] + } + ], + "source": [ + "response = lcpp_llm(\n", + " prompt=prompt_template,\n", + " max_tokens=256,\n", + " temperature=0.5,\n", + " top_p=0.95,\n", + " repeat_penalty=1.2,\n", + " top_k=50,\n", + " stop = ['USER:'], # Dynamic stopping when such token is detected.\n", + " echo=True # return the prompt\n", + ")\n", + "print(response[\"choices\"][0][\"text\"])" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "no531n827gI9" + }, + "source": [ + "# Inference with langchain\n", + "\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "zG2uFQFl7jrq", + "outputId": "f6d17c62-f6dd-4d98-c60f-ffffd90a7e20" + }, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m50.4/50.4 kB\u001b[0m \u001b[31m3.4 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m1.0/1.0 MB\u001b[0m \u001b[31m26.5 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m401.8/401.8 kB\u001b[0m \u001b[31m29.3 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m294.6/294.6 kB\u001b[0m \u001b[31m19.1 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m76.4/76.4 kB\u001b[0m \u001b[31m6.7 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m78.0/78.0 kB\u001b[0m \u001b[31m7.4 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m141.9/141.9 kB\u001b[0m \u001b[31m12.0 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m54.5/54.5 kB\u001b[0m \u001b[31m5.1 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m58.3/58.3 kB\u001b[0m \u001b[31m5.3 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[?25h" + ] + } + ], + "source": [ + "!pip -q install langchain" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "-Kl8UYvXHYIt" + }, + "source": [ + "We can use the model that we loaded earlier. However, for illustrative purposes, we will load one from the 'langchain' library. Due to vRAM limitations, before running these cells, you need to delete the previous model from memory." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "id": "NWaQuYH0AT1z" + }, + "outputs": [], + "source": [ + "lcpp_llm.reset()\n", + "lcpp_llm.set_cache(None)\n", + "lcpp_llm = None\n", + "del lcpp_llm" + ] + }, + { + "cell_type": "markdown", + "source": [ + "\n", + "Prompt for the model." + ], + "metadata": { + "id": "scri08pVDp8U" + } + }, + { + "cell_type": "code", + "source": [ + "!pip install langchain_community" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "zJFDvwK1nX7r", + "outputId": "3fd5e762-8901-4ce5-e7be-7ef92d3f10fd" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Collecting langchain_community\n", + " Downloading langchain_community-0.3.1-py3-none-any.whl.metadata (2.8 kB)\n", + "Requirement already satisfied: PyYAML>=5.3 in /usr/local/lib/python3.10/dist-packages (from langchain_community) (6.0.2)\n", + "Requirement already satisfied: SQLAlchemy<3,>=1.4 in /usr/local/lib/python3.10/dist-packages (from langchain_community) (2.0.35)\n", + "Requirement already satisfied: aiohttp<4.0.0,>=3.8.3 in /usr/local/lib/python3.10/dist-packages (from langchain_community) (3.10.8)\n", + "Collecting dataclasses-json<0.7,>=0.5.7 (from langchain_community)\n", + " Downloading dataclasses_json-0.6.7-py3-none-any.whl.metadata (25 kB)\n", + "Requirement already satisfied: langchain<0.4.0,>=0.3.1 in /usr/local/lib/python3.10/dist-packages (from langchain_community) (0.3.2)\n", + "Requirement already satisfied: langchain-core<0.4.0,>=0.3.6 in /usr/local/lib/python3.10/dist-packages (from langchain_community) (0.3.9)\n", + "Requirement already satisfied: langsmith<0.2.0,>=0.1.125 in /usr/local/lib/python3.10/dist-packages (from langchain_community) (0.1.131)\n", + "Requirement already satisfied: numpy<2,>=1 in /usr/local/lib/python3.10/dist-packages (from langchain_community) (1.26.4)\n", + "Collecting pydantic-settings<3.0.0,>=2.4.0 (from langchain_community)\n", + " Downloading pydantic_settings-2.5.2-py3-none-any.whl.metadata (3.5 kB)\n", + "Requirement already satisfied: requests<3,>=2 in /usr/local/lib/python3.10/dist-packages (from langchain_community) (2.32.3)\n", + "Requirement already satisfied: tenacity!=8.4.0,<9.0.0,>=8.1.0 in /usr/local/lib/python3.10/dist-packages (from langchain_community) (8.5.0)\n", + "Requirement already satisfied: aiohappyeyeballs>=2.3.0 in /usr/local/lib/python3.10/dist-packages (from aiohttp<4.0.0,>=3.8.3->langchain_community) (2.4.3)\n", + "Requirement already satisfied: aiosignal>=1.1.2 in /usr/local/lib/python3.10/dist-packages (from aiohttp<4.0.0,>=3.8.3->langchain_community) (1.3.1)\n", + "Requirement already satisfied: attrs>=17.3.0 in /usr/local/lib/python3.10/dist-packages (from aiohttp<4.0.0,>=3.8.3->langchain_community) (24.2.0)\n", + "Requirement already satisfied: frozenlist>=1.1.1 in /usr/local/lib/python3.10/dist-packages (from aiohttp<4.0.0,>=3.8.3->langchain_community) (1.4.1)\n", + "Requirement already satisfied: multidict<7.0,>=4.5 in /usr/local/lib/python3.10/dist-packages (from aiohttp<4.0.0,>=3.8.3->langchain_community) (6.1.0)\n", + "Requirement already satisfied: yarl<2.0,>=1.12.0 in /usr/local/lib/python3.10/dist-packages (from aiohttp<4.0.0,>=3.8.3->langchain_community) (1.13.1)\n", + "Requirement already satisfied: async-timeout<5.0,>=4.0 in /usr/local/lib/python3.10/dist-packages (from aiohttp<4.0.0,>=3.8.3->langchain_community) (4.0.3)\n", + "Collecting marshmallow<4.0.0,>=3.18.0 (from dataclasses-json<0.7,>=0.5.7->langchain_community)\n", + " Downloading marshmallow-3.22.0-py3-none-any.whl.metadata (7.2 kB)\n", + "Collecting typing-inspect<1,>=0.4.0 (from dataclasses-json<0.7,>=0.5.7->langchain_community)\n", + " Downloading typing_inspect-0.9.0-py3-none-any.whl.metadata (1.5 kB)\n", + "Requirement already satisfied: langchain-text-splitters<0.4.0,>=0.3.0 in /usr/local/lib/python3.10/dist-packages (from langchain<0.4.0,>=0.3.1->langchain_community) (0.3.0)\n", + "Requirement already satisfied: pydantic<3.0.0,>=2.7.4 in /usr/local/lib/python3.10/dist-packages (from langchain<0.4.0,>=0.3.1->langchain_community) (2.9.2)\n", + "Requirement already satisfied: jsonpatch<2.0,>=1.33 in /usr/local/lib/python3.10/dist-packages (from langchain-core<0.4.0,>=0.3.6->langchain_community) (1.33)\n", + "Requirement already satisfied: packaging<25,>=23.2 in /usr/local/lib/python3.10/dist-packages (from langchain-core<0.4.0,>=0.3.6->langchain_community) (24.1)\n", + "Requirement already satisfied: typing-extensions>=4.7 in /usr/local/lib/python3.10/dist-packages (from langchain-core<0.4.0,>=0.3.6->langchain_community) (4.12.2)\n", + "Requirement already satisfied: httpx<1,>=0.23.0 in /usr/local/lib/python3.10/dist-packages (from langsmith<0.2.0,>=0.1.125->langchain_community) (0.27.2)\n", + "Requirement already satisfied: orjson<4.0.0,>=3.9.14 in /usr/local/lib/python3.10/dist-packages (from langsmith<0.2.0,>=0.1.125->langchain_community) (3.10.7)\n", + "Requirement already satisfied: requests-toolbelt<2.0.0,>=1.0.0 in /usr/local/lib/python3.10/dist-packages (from langsmith<0.2.0,>=0.1.125->langchain_community) (1.0.0)\n", + "Collecting python-dotenv>=0.21.0 (from pydantic-settings<3.0.0,>=2.4.0->langchain_community)\n", + " Downloading python_dotenv-1.0.1-py3-none-any.whl.metadata (23 kB)\n", + "Requirement already satisfied: charset-normalizer<4,>=2 in /usr/local/lib/python3.10/dist-packages (from requests<3,>=2->langchain_community) (3.3.2)\n", + "Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.10/dist-packages (from requests<3,>=2->langchain_community) (3.10)\n", + "Requirement already satisfied: urllib3<3,>=1.21.1 in /usr/local/lib/python3.10/dist-packages (from requests<3,>=2->langchain_community) (2.2.3)\n", + "Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.10/dist-packages (from requests<3,>=2->langchain_community) (2024.8.30)\n", + "Requirement already satisfied: greenlet!=0.4.17 in /usr/local/lib/python3.10/dist-packages (from SQLAlchemy<3,>=1.4->langchain_community) (3.1.1)\n", + "Requirement already satisfied: anyio in /usr/local/lib/python3.10/dist-packages (from httpx<1,>=0.23.0->langsmith<0.2.0,>=0.1.125->langchain_community) (3.7.1)\n", + "Requirement already satisfied: httpcore==1.* in /usr/local/lib/python3.10/dist-packages (from httpx<1,>=0.23.0->langsmith<0.2.0,>=0.1.125->langchain_community) (1.0.6)\n", + "Requirement already satisfied: sniffio in /usr/local/lib/python3.10/dist-packages (from httpx<1,>=0.23.0->langsmith<0.2.0,>=0.1.125->langchain_community) (1.3.1)\n", + "Requirement already satisfied: h11<0.15,>=0.13 in /usr/local/lib/python3.10/dist-packages (from httpcore==1.*->httpx<1,>=0.23.0->langsmith<0.2.0,>=0.1.125->langchain_community) (0.14.0)\n", + "Requirement already satisfied: jsonpointer>=1.9 in /usr/local/lib/python3.10/dist-packages (from jsonpatch<2.0,>=1.33->langchain-core<0.4.0,>=0.3.6->langchain_community) (3.0.0)\n", + "Requirement already satisfied: annotated-types>=0.6.0 in /usr/local/lib/python3.10/dist-packages (from pydantic<3.0.0,>=2.7.4->langchain<0.4.0,>=0.3.1->langchain_community) (0.7.0)\n", + "Requirement already satisfied: pydantic-core==2.23.4 in /usr/local/lib/python3.10/dist-packages (from pydantic<3.0.0,>=2.7.4->langchain<0.4.0,>=0.3.1->langchain_community) (2.23.4)\n", + "Collecting mypy-extensions>=0.3.0 (from typing-inspect<1,>=0.4.0->dataclasses-json<0.7,>=0.5.7->langchain_community)\n", + " Downloading mypy_extensions-1.0.0-py3-none-any.whl.metadata (1.1 kB)\n", + "Requirement already satisfied: exceptiongroup in /usr/local/lib/python3.10/dist-packages (from anyio->httpx<1,>=0.23.0->langsmith<0.2.0,>=0.1.125->langchain_community) (1.2.2)\n", + "Downloading langchain_community-0.3.1-py3-none-any.whl (2.4 MB)\n", + "\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m2.4/2.4 MB\u001b[0m \u001b[31m43.0 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[?25hDownloading dataclasses_json-0.6.7-py3-none-any.whl (28 kB)\n", + "Downloading pydantic_settings-2.5.2-py3-none-any.whl (26 kB)\n", + "Downloading marshmallow-3.22.0-py3-none-any.whl (49 kB)\n", + "\u001b[2K \u001b[90mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m \u001b[32m49.3/49.3 kB\u001b[0m \u001b[31m5.1 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[?25hDownloading python_dotenv-1.0.1-py3-none-any.whl (19 kB)\n", + "Downloading typing_inspect-0.9.0-py3-none-any.whl (8.8 kB)\n", + "Downloading mypy_extensions-1.0.0-py3-none-any.whl (4.7 kB)\n", + "Installing collected packages: python-dotenv, mypy-extensions, marshmallow, typing-inspect, pydantic-settings, dataclasses-json, langchain_community\n", + "Successfully installed dataclasses-json-0.6.7 langchain_community-0.3.1 marshmallow-3.22.0 mypy-extensions-1.0.0 pydantic-settings-2.5.2 python-dotenv-1.0.1 typing-inspect-0.9.0\n" + ] + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "G2DHWIr-IEDE" + }, + "source": [ + "Load the model" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "JZ8kbRz2F9vi" + }, + "source": [ + "Generating response" + ] + }, + { + "cell_type": "code", + "source": [ + "from langchain.llms import LlamaCpp\n", + "from langchain import PromptTemplate, LLMChain\n", + "\n", + "# Define the prompt template\n", + "template = '''SYSTEM: Below is an instruction that describes a task, paired with an input that provides further context. Write a response that appropriately completes the request.\n", + "\n", + "Provide the SQL query. USER: {question}\n", + "\n", + "ASSISTANT:\n", + "'''\n", + "\n", + "prompt = PromptTemplate(template=template, input_variables=[\"question\"])\n", + "\n", + "# Define the model\n", + "n_gpu_layers = 40 # Adjust based on your GPU VRAM.\n", + "n_batch = 512 # Depends on your GPU and model, set according to VRAM.\n", + "MODEL_PATH = \"/content/unsloth_Q4_K_M.gguf\"\n", + "\n", + "llm = LlamaCpp(\n", + " model_path=MODEL_PATH,\n", + " max_tokens=256,\n", + " temperature=0.5,\n", + " top_p=0.95,\n", + " repeat_penalty=1.2,\n", + " top_k=50,\n", + " n_gpu_layers=n_gpu_layers,\n", + " n_batch=n_batch,\n", + " n_ctx=4096, # Context window size\n", + " stop=['USER:', 'ASSISTANT:'], # Dynamic stopping when such tokens are detected\n", + ")\n", + "\n", + "# Create the LLMChain\n", + "llm_chain = LLMChain(prompt=prompt, llm=llm)\n", + "\n", + "# Define the question (SQL task)\n", + "question = \"Seleziona tutte le colonne della tabella table1 dove la colonna anni รจ uguale a 2020\"\n", + "\n", + "# Run the chain\n", + "response = llm_chain.run(question)\n", + "\n", + "# Print the response (SQL query)\n", + "print(response)\n" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "04VYkA2xt7hq", + "outputId": "894f84f1-9ee4-447d-8343-761c76194b2b" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "stream", + "name": "stderr", + "text": [ + "llama_model_loader: loaded meta data with 27 key-value pairs and 292 tensors from /content/unsloth_Q4_K_M.gguf (version GGUF V3 (latest))\n", + "llama_model_loader: Dumping metadata keys/values. Note: KV overrides do not apply in this output.\n", + "llama_model_loader: - kv 0: general.architecture str = llama\n", + "llama_model_loader: - kv 1: general.type str = model\n", + "llama_model_loader: - kv 2: general.name str = Meta Llama 3.1 8b Bnb 4bit\n", + "llama_model_loader: - kv 3: general.organization str = Unsloth\n", + "llama_model_loader: - kv 4: general.finetune str = bnb-4bit\n", + "llama_model_loader: - kv 5: general.basename str = meta-llama-3.1\n", + "llama_model_loader: - kv 6: general.size_label str = 8B\n", + "llama_model_loader: - kv 7: llama.block_count u32 = 32\n", + "llama_model_loader: - kv 8: llama.context_length u32 = 131072\n", + "llama_model_loader: - kv 9: llama.embedding_length u32 = 4096\n", + "llama_model_loader: - kv 10: llama.feed_forward_length u32 = 14336\n", + "llama_model_loader: - kv 11: llama.attention.head_count u32 = 32\n", + "llama_model_loader: - kv 12: llama.attention.head_count_kv u32 = 8\n", + "llama_model_loader: - kv 13: llama.rope.freq_base f32 = 500000.000000\n", + "llama_model_loader: - kv 14: llama.attention.layer_norm_rms_epsilon f32 = 0.000010\n", + "llama_model_loader: - kv 15: general.file_type u32 = 15\n", + "llama_model_loader: - kv 16: llama.vocab_size u32 = 128256\n", + "llama_model_loader: - kv 17: llama.rope.dimension_count u32 = 128\n", + "llama_model_loader: - kv 18: tokenizer.ggml.model str = gpt2\n", + "llama_model_loader: - kv 19: tokenizer.ggml.pre str = llama-bpe\n", + "llama_model_loader: - kv 20: tokenizer.ggml.tokens arr[str,128256] = [\"!\", \"\\\"\", \"#\", \"$\", \"%\", \"&\", \"'\", ...\n", + "llama_model_loader: - kv 21: tokenizer.ggml.token_type arr[i32,128256] = [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...\n", + "llama_model_loader: - kv 22: tokenizer.ggml.merges arr[str,280147] = [\"ฤ  ฤ \", \"ฤ  ฤ ฤ ฤ \", \"ฤ ฤ  ฤ ฤ \", \"...\n", + "llama_model_loader: - kv 23: tokenizer.ggml.bos_token_id u32 = 128000\n", + "llama_model_loader: - kv 24: tokenizer.ggml.eos_token_id u32 = 128001\n", + "llama_model_loader: - kv 25: tokenizer.ggml.padding_token_id u32 = 128004\n", + "llama_model_loader: - kv 26: general.quantization_version u32 = 2\n", + "llama_model_loader: - type f32: 66 tensors\n", + "llama_model_loader: - type q4_K: 193 tensors\n", + "llama_model_loader: - type q6_K: 33 tensors\n", + "llm_load_vocab: special_eos_id is not in special_eog_ids - the tokenizer config may be incorrect\n", + "llm_load_vocab: special tokens cache size = 256\n", + "llm_load_vocab: token to piece cache size = 0.7999 MB\n", + "llm_load_print_meta: format = GGUF V3 (latest)\n", + "llm_load_print_meta: arch = llama\n", + "llm_load_print_meta: vocab type = BPE\n", + "llm_load_print_meta: n_vocab = 128256\n", + "llm_load_print_meta: n_merges = 280147\n", + "llm_load_print_meta: vocab_only = 0\n", + "llm_load_print_meta: n_ctx_train = 131072\n", + "llm_load_print_meta: n_embd = 4096\n", + "llm_load_print_meta: n_layer = 32\n", + "llm_load_print_meta: n_head = 32\n", + "llm_load_print_meta: n_head_kv = 8\n", + "llm_load_print_meta: n_rot = 128\n", + "llm_load_print_meta: n_swa = 0\n", + "llm_load_print_meta: n_embd_head_k = 128\n", + "llm_load_print_meta: n_embd_head_v = 128\n", + "llm_load_print_meta: n_gqa = 4\n", + "llm_load_print_meta: n_embd_k_gqa = 1024\n", + "llm_load_print_meta: n_embd_v_gqa = 1024\n", + "llm_load_print_meta: f_norm_eps = 0.0e+00\n", + "llm_load_print_meta: f_norm_rms_eps = 1.0e-05\n", + "llm_load_print_meta: f_clamp_kqv = 0.0e+00\n", + "llm_load_print_meta: f_max_alibi_bias = 0.0e+00\n", + "llm_load_print_meta: f_logit_scale = 0.0e+00\n", + "llm_load_print_meta: n_ff = 14336\n", + "llm_load_print_meta: n_expert = 0\n", + "llm_load_print_meta: n_expert_used = 0\n", + "llm_load_print_meta: causal attn = 1\n", + "llm_load_print_meta: pooling type = 0\n", + "llm_load_print_meta: rope type = 0\n", + "llm_load_print_meta: rope scaling = linear\n", + "llm_load_print_meta: freq_base_train = 500000.0\n", + "llm_load_print_meta: freq_scale_train = 1\n", + "llm_load_print_meta: n_ctx_orig_yarn = 131072\n", + "llm_load_print_meta: rope_finetuned = unknown\n", + "llm_load_print_meta: ssm_d_conv = 0\n", + "llm_load_print_meta: ssm_d_inner = 0\n", + "llm_load_print_meta: ssm_d_state = 0\n", + "llm_load_print_meta: ssm_dt_rank = 0\n", + "llm_load_print_meta: ssm_dt_b_c_rms = 0\n", + "llm_load_print_meta: model type = 8B\n", + "llm_load_print_meta: model ftype = Q4_K - Medium\n", + "llm_load_print_meta: model params = 8.03 B\n", + "llm_load_print_meta: model size = 4.58 GiB (4.89 BPW) \n", + "llm_load_print_meta: general.name = Meta Llama 3.1 8b Bnb 4bit\n", + "llm_load_print_meta: BOS token = 128000 '<|begin_of_text|>'\n", + "llm_load_print_meta: EOS token = 128001 '<|end_of_text|>'\n", + "llm_load_print_meta: PAD token = 128004 '<|finetune_right_pad_id|>'\n", + "llm_load_print_meta: LF token = 128 'ร„'\n", + "llm_load_print_meta: EOT token = 128009 '<|eot_id|>'\n", + "llm_load_print_meta: EOM token = 128008 '<|eom_id|>'\n", + "llm_load_print_meta: EOG token = 128001 '<|end_of_text|>'\n", + "llm_load_print_meta: EOG token = 128008 '<|eom_id|>'\n", + "llm_load_print_meta: EOG token = 128009 '<|eot_id|>'\n", + "llm_load_print_meta: max token length = 256\n", + "llm_load_tensors: ggml ctx size = 0.14 MiB\n", + "llm_load_tensors: CPU buffer size = 4685.30 MiB\n", + "........................................................................................\n", + "llama_new_context_with_model: n_ctx = 4096\n", + "llama_new_context_with_model: n_batch = 512\n", + "llama_new_context_with_model: n_ubatch = 512\n", + "llama_new_context_with_model: flash_attn = 0\n", + "llama_new_context_with_model: freq_base = 10000.0\n", + "llama_new_context_with_model: freq_scale = 1\n", + "llama_kv_cache_init: CPU KV buffer size = 512.00 MiB\n", + "llama_new_context_with_model: KV self size = 512.00 MiB, K (f16): 256.00 MiB, V (f16): 256.00 MiB\n", + "llama_new_context_with_model: CPU output buffer size = 0.49 MiB\n", + "llama_new_context_with_model: CPU compute buffer size = 296.01 MiB\n", + "llama_new_context_with_model: graph nodes = 1030\n", + "llama_new_context_with_model: graph splits = 1\n", + "AVX = 1 | AVX_VNNI = 0 | AVX2 = 1 | AVX512 = 1 | AVX512_VBMI = 0 | AVX512_VNNI = 0 | AVX512_BF16 = 0 | FMA = 1 | NEON = 0 | SVE = 0 | ARM_FMA = 0 | F16C = 1 | FP16_VA = 0 | RISCV_VECT = 0 | WASM_SIMD = 0 | BLAS = 0 | SSE3 = 1 | SSSE3 = 1 | VSX = 0 | MATMUL_INT8 = 0 | LLAMAFILE = 1 | \n", + "Model metadata: {'tokenizer.ggml.eos_token_id': '128001', 'general.quantization_version': '2', 'tokenizer.ggml.model': 'gpt2', 'llama.rope.dimension_count': '128', 'llama.vocab_size': '128256', 'general.file_type': '15', 'llama.attention.layer_norm_rms_epsilon': '0.000010', 'llama.rope.freq_base': '500000.000000', 'general.architecture': 'llama', 'tokenizer.ggml.padding_token_id': '128004', 'general.basename': 'meta-llama-3.1', 'tokenizer.ggml.bos_token_id': '128000', 'llama.attention.head_count': '32', 'tokenizer.ggml.pre': 'llama-bpe', 'llama.context_length': '131072', 'general.name': 'Meta Llama 3.1 8b Bnb 4bit', 'general.organization': 'Unsloth', 'general.finetune': 'bnb-4bit', 'general.type': 'model', 'general.size_label': '8B', 'llama.embedding_length': '4096', 'llama.feed_forward_length': '14336', 'llama.block_count': '32', 'llama.attention.head_count_kv': '8'}\n", + "Using fallback chat format: llama-2\n", + ":33: LangChainDeprecationWarning: The class `LLMChain` was deprecated in LangChain 0.1.17 and will be removed in 1.0. Use :meth:`~RunnableSequence, e.g., `prompt | llm`` instead.\n", + " llm_chain = LLMChain(prompt=prompt, llm=llm)\n", + ":39: LangChainDeprecationWarning: The method `Chain.run` was deprecated in langchain 0.1.0 and will be removed in 1.0. Use :meth:`~invoke` instead.\n", + " response = llm_chain.run(question)\n", + "llama_perf_context_print: load time = 26178.79 ms\n", + "llama_perf_context_print: prompt eval time = 0.00 ms / 67 tokens ( 0.00 ms per token, inf tokens per second)\n", + "llama_perf_context_print: eval time = 0.00 ms / 16 runs ( 0.00 ms per token, inf tokens per second)\n", + "llama_perf_context_print: total time = 37371.09 ms / 83 tokens\n" + ] + }, + { + "output_type": "stream", + "name": "stdout", + "text": [ + "```\n", + "SELECT *\n", + "FROM table1\n", + "WHERE anni = 2020;\n", + "```\n" + ] + } + ] + }, + { + "cell_type": "markdown", + "source": [ + " # Adding Stream tokens" + ], + "metadata": { + "id": "RGdlf_hdwla2" + } + }, + { + "cell_type": "code", + "source": [ + "from langchain.llms import LlamaCpp\n", + "from langchain import PromptTemplate\n", + "from langchain_core.runnables import RunnableSequence\n", + "from langchain.callbacks.manager import CallbackManager\n", + "from langchain.callbacks.streaming_stdout import StreamingStdOutCallbackHandler\n", + "\n", + "# Define the prompt template\n", + "template = '''SYSTEM: Below is an instruction that describes a task, paired with an input that provides further context. Write a response that appropriately completes the request.\n", + "\n", + "Provide the SQL query. USER: {question}\n", + "\n", + "ASSISTANT:\n", + "'''\n", + "\n", + "prompt = PromptTemplate(template=template, input_variables=[\"question\"])\n", + "\n", + "# Callbacks support token-wise streaming\n", + "callback_manager = CallbackManager([StreamingStdOutCallbackHandler()])\n", + "\n", + "# Define the model\n", + "n_gpu_layers = 40 # Adjust based on your GPU VRAM.\n", + "n_batch = 512 # Depends on your GPU and model, set according to VRAM.\n", + "MODEL_PATH = \"/content/unsloth_Q4_K_M.gguf\"\n", + "\n", + "llm = LlamaCpp(\n", + " model_path=MODEL_PATH,\n", + " max_tokens=256,\n", + " temperature=0.5,\n", + " top_p=0.95,\n", + " repeat_penalty=1.2,\n", + " top_k=50,\n", + " n_gpu_layers=n_gpu_layers,\n", + " n_batch=n_batch,\n", + " n_ctx=4096, # Context window size\n", + " stop=['USER:', 'ASSISTANT:'], # Dynamic stopping when such tokens are detected\n", + " callback_manager=callback_manager,\n", + " verbose=True, # Required for callback manager to pass token streaming info\n", + ")\n", + "\n", + "# Create the RunnableSequence with positional arguments\n", + "sequence = RunnableSequence(prompt, llm)\n", + "\n", + "# Define the question (SQL task)\n", + "question = \"Seleziona tutte le colonne della tabella table1 dove la colonna anni รจ uguale a 2020\"\n", + "\n", + "# Run the sequence and use `invoke` to avoid deprecation warnings\n", + "response = sequence.invoke({\"question\": question})\n", + "\n", + "# Print the response (SQL query)\n", + "print(response)\n" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "7CS-rTXhuta-", + "outputId": "5abfb5f6-9704-4c25-ee67-cbc103728153" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "stream", + "name": "stderr", + "text": [ + "llama_model_loader: loaded meta data with 27 key-value pairs and 292 tensors from /content/unsloth_Q4_K_M.gguf (version GGUF V3 (latest))\n", + "llama_model_loader: Dumping metadata keys/values. Note: KV overrides do not apply in this output.\n", + "llama_model_loader: - kv 0: general.architecture str = llama\n", + "llama_model_loader: - kv 1: general.type str = model\n", + "llama_model_loader: - kv 2: general.name str = Meta Llama 3.1 8b Bnb 4bit\n", + "llama_model_loader: - kv 3: general.organization str = Unsloth\n", + "llama_model_loader: - kv 4: general.finetune str = bnb-4bit\n", + "llama_model_loader: - kv 5: general.basename str = meta-llama-3.1\n", + "llama_model_loader: - kv 6: general.size_label str = 8B\n", + "llama_model_loader: - kv 7: llama.block_count u32 = 32\n", + "llama_model_loader: - kv 8: llama.context_length u32 = 131072\n", + "llama_model_loader: - kv 9: llama.embedding_length u32 = 4096\n", + "llama_model_loader: - kv 10: llama.feed_forward_length u32 = 14336\n", + "llama_model_loader: - kv 11: llama.attention.head_count u32 = 32\n", + "llama_model_loader: - kv 12: llama.attention.head_count_kv u32 = 8\n", + "llama_model_loader: - kv 13: llama.rope.freq_base f32 = 500000.000000\n", + "llama_model_loader: - kv 14: llama.attention.layer_norm_rms_epsilon f32 = 0.000010\n", + "llama_model_loader: - kv 15: general.file_type u32 = 15\n", + "llama_model_loader: - kv 16: llama.vocab_size u32 = 128256\n", + "llama_model_loader: - kv 17: llama.rope.dimension_count u32 = 128\n", + "llama_model_loader: - kv 18: tokenizer.ggml.model str = gpt2\n", + "llama_model_loader: - kv 19: tokenizer.ggml.pre str = llama-bpe\n", + "llama_model_loader: - kv 20: tokenizer.ggml.tokens arr[str,128256] = [\"!\", \"\\\"\", \"#\", \"$\", \"%\", \"&\", \"'\", ...\n", + "llama_model_loader: - kv 21: tokenizer.ggml.token_type arr[i32,128256] = [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...\n", + "llama_model_loader: - kv 22: tokenizer.ggml.merges arr[str,280147] = [\"ฤ  ฤ \", \"ฤ  ฤ ฤ ฤ \", \"ฤ ฤ  ฤ ฤ \", \"...\n", + "llama_model_loader: - kv 23: tokenizer.ggml.bos_token_id u32 = 128000\n", + "llama_model_loader: - kv 24: tokenizer.ggml.eos_token_id u32 = 128001\n", + "llama_model_loader: - kv 25: tokenizer.ggml.padding_token_id u32 = 128004\n", + "llama_model_loader: - kv 26: general.quantization_version u32 = 2\n", + "llama_model_loader: - type f32: 66 tensors\n", + "llama_model_loader: - type q4_K: 193 tensors\n", + "llama_model_loader: - type q6_K: 33 tensors\n", + "llm_load_vocab: special_eos_id is not in special_eog_ids - the tokenizer config may be incorrect\n", + "llm_load_vocab: special tokens cache size = 256\n", + "llm_load_vocab: token to piece cache size = 0.7999 MB\n", + "llm_load_print_meta: format = GGUF V3 (latest)\n", + "llm_load_print_meta: arch = llama\n", + "llm_load_print_meta: vocab type = BPE\n", + "llm_load_print_meta: n_vocab = 128256\n", + "llm_load_print_meta: n_merges = 280147\n", + "llm_load_print_meta: vocab_only = 0\n", + "llm_load_print_meta: n_ctx_train = 131072\n", + "llm_load_print_meta: n_embd = 4096\n", + "llm_load_print_meta: n_layer = 32\n", + "llm_load_print_meta: n_head = 32\n", + "llm_load_print_meta: n_head_kv = 8\n", + "llm_load_print_meta: n_rot = 128\n", + "llm_load_print_meta: n_swa = 0\n", + "llm_load_print_meta: n_embd_head_k = 128\n", + "llm_load_print_meta: n_embd_head_v = 128\n", + "llm_load_print_meta: n_gqa = 4\n", + "llm_load_print_meta: n_embd_k_gqa = 1024\n", + "llm_load_print_meta: n_embd_v_gqa = 1024\n", + "llm_load_print_meta: f_norm_eps = 0.0e+00\n", + "llm_load_print_meta: f_norm_rms_eps = 1.0e-05\n", + "llm_load_print_meta: f_clamp_kqv = 0.0e+00\n", + "llm_load_print_meta: f_max_alibi_bias = 0.0e+00\n", + "llm_load_print_meta: f_logit_scale = 0.0e+00\n", + "llm_load_print_meta: n_ff = 14336\n", + "llm_load_print_meta: n_expert = 0\n", + "llm_load_print_meta: n_expert_used = 0\n", + "llm_load_print_meta: causal attn = 1\n", + "llm_load_print_meta: pooling type = 0\n", + "llm_load_print_meta: rope type = 0\n", + "llm_load_print_meta: rope scaling = linear\n", + "llm_load_print_meta: freq_base_train = 500000.0\n", + "llm_load_print_meta: freq_scale_train = 1\n", + "llm_load_print_meta: n_ctx_orig_yarn = 131072\n", + "llm_load_print_meta: rope_finetuned = unknown\n", + "llm_load_print_meta: ssm_d_conv = 0\n", + "llm_load_print_meta: ssm_d_inner = 0\n", + "llm_load_print_meta: ssm_d_state = 0\n", + "llm_load_print_meta: ssm_dt_rank = 0\n", + "llm_load_print_meta: ssm_dt_b_c_rms = 0\n", + "llm_load_print_meta: model type = 8B\n", + "llm_load_print_meta: model ftype = Q4_K - Medium\n", + "llm_load_print_meta: model params = 8.03 B\n", + "llm_load_print_meta: model size = 4.58 GiB (4.89 BPW) \n", + "llm_load_print_meta: general.name = Meta Llama 3.1 8b Bnb 4bit\n", + "llm_load_print_meta: BOS token = 128000 '<|begin_of_text|>'\n", + "llm_load_print_meta: EOS token = 128001 '<|end_of_text|>'\n", + "llm_load_print_meta: PAD token = 128004 '<|finetune_right_pad_id|>'\n", + "llm_load_print_meta: LF token = 128 'ร„'\n", + "llm_load_print_meta: EOT token = 128009 '<|eot_id|>'\n", + "llm_load_print_meta: EOM token = 128008 '<|eom_id|>'\n", + "llm_load_print_meta: EOG token = 128001 '<|end_of_text|>'\n", + "llm_load_print_meta: EOG token = 128008 '<|eom_id|>'\n", + "llm_load_print_meta: EOG token = 128009 '<|eot_id|>'\n", + "llm_load_print_meta: max token length = 256\n", + "llm_load_tensors: ggml ctx size = 0.14 MiB\n", + "llm_load_tensors: CPU buffer size = 4685.30 MiB\n", + "........................................................................................\n", + "llama_new_context_with_model: n_ctx = 4096\n", + "llama_new_context_with_model: n_batch = 512\n", + "llama_new_context_with_model: n_ubatch = 512\n", + "llama_new_context_with_model: flash_attn = 0\n", + "llama_new_context_with_model: freq_base = 10000.0\n", + "llama_new_context_with_model: freq_scale = 1\n", + "llama_kv_cache_init: CPU KV buffer size = 512.00 MiB\n", + "llama_new_context_with_model: KV self size = 512.00 MiB, K (f16): 256.00 MiB, V (f16): 256.00 MiB\n", + "llama_new_context_with_model: CPU output buffer size = 0.49 MiB\n", + "llama_new_context_with_model: CPU compute buffer size = 296.01 MiB\n", + "llama_new_context_with_model: graph nodes = 1030\n", + "llama_new_context_with_model: graph splits = 1\n", + "AVX = 1 | AVX_VNNI = 0 | AVX2 = 1 | AVX512 = 1 | AVX512_VBMI = 0 | AVX512_VNNI = 0 | AVX512_BF16 = 0 | FMA = 1 | NEON = 0 | SVE = 0 | ARM_FMA = 0 | F16C = 1 | FP16_VA = 0 | RISCV_VECT = 0 | WASM_SIMD = 0 | BLAS = 0 | SSE3 = 1 | SSSE3 = 1 | VSX = 0 | MATMUL_INT8 = 0 | LLAMAFILE = 1 | \n", + "Model metadata: {'tokenizer.ggml.eos_token_id': '128001', 'general.quantization_version': '2', 'tokenizer.ggml.model': 'gpt2', 'llama.rope.dimension_count': '128', 'llama.vocab_size': '128256', 'general.file_type': '15', 'llama.attention.layer_norm_rms_epsilon': '0.000010', 'llama.rope.freq_base': '500000.000000', 'general.architecture': 'llama', 'tokenizer.ggml.padding_token_id': '128004', 'general.basename': 'meta-llama-3.1', 'tokenizer.ggml.bos_token_id': '128000', 'llama.attention.head_count': '32', 'tokenizer.ggml.pre': 'llama-bpe', 'llama.context_length': '131072', 'general.name': 'Meta Llama 3.1 8b Bnb 4bit', 'general.organization': 'Unsloth', 'general.finetune': 'bnb-4bit', 'general.type': 'model', 'general.size_label': '8B', 'llama.embedding_length': '4096', 'llama.feed_forward_length': '14336', 'llama.block_count': '32', 'llama.attention.head_count_kv': '8'}\n", + "Using fallback chat format: llama-2\n" + ] + }, + { + "output_type": "stream", + "name": "stdout", + "text": [ + "```\n", + "SELECT *\n", + "FROM table1\n", + "WHERE anni = 2020;\n", + "```" + ] + }, + { + "output_type": "stream", + "name": "stderr", + "text": [ + "llama_perf_context_print: load time = 26633.54 ms\n", + "llama_perf_context_print: prompt eval time = 0.00 ms / 67 tokens ( 0.00 ms per token, inf tokens per second)\n", + "llama_perf_context_print: eval time = 0.00 ms / 16 runs ( 0.00 ms per token, inf tokens per second)\n", + "llama_perf_context_print: total time = 37864.45 ms / 83 tokens\n" + ] + }, + { + "output_type": "stream", + "name": "stdout", + "text": [ + "```\n", + "SELECT *\n", + "FROM table1\n", + "WHERE anni = 2020;\n", + "```\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "response" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 35 + }, + "id": "oYwMS-lqvzIZ", + "outputId": "5e42c6b7-c7b1-440b-ee9b-bfb1d277dc9f" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "'```\\nSELECT *\\nFROM table1\\nWHERE anni = 2020;\\n```'" + ], + "application/vnd.google.colaboratory.intrinsic+json": { + "type": "string" + } + }, + "metadata": {}, + "execution_count": 7 + } + ] + }, + { + "cell_type": "markdown", + "source": [ + "# Inference with llama.cpp" + ], + "metadata": { + "id": "IdTSFrMqF-yu" + } + }, + { + "cell_type": "markdown", + "source": [ + "To use llama.cpp directly, we must clone the repository. In this example, we will use only the CPU." + ], + "metadata": { + "id": "AjwqmnwYZlyR" + } + }, + { + "cell_type": "code", + "source": [ + "!git clone https://github.com/ggerganov/llama.cpp\n", + "%cd llama.cpp\n" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "Xwt3kdw4Rnmt", + "outputId": "598779bb-891e-43b1-e359-b8b23ee7cce5" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Cloning into 'llama.cpp'...\n", + "remote: Enumerating objects: 35480, done.\u001b[K\n", + "remote: Counting objects: 100% (87/87), done.\u001b[K\n", + "remote: Compressing objects: 100% (68/68), done.\u001b[K\n", + "remote: Total 35480 (delta 43), reused 44 (delta 19), pack-reused 35393 (from 1)\u001b[K\n", + "Receiving objects: 100% (35480/35480), 59.29 MiB | 16.97 MiB/s, done.\n", + "Resolving deltas: 100% (25729/25729), done.\n", + "/content/llama.cpp\n", + "Note: switching to 'd5cb868'.\n", + "\n", + "You are in 'detached HEAD' state. You can look around, make experimental\n", + "changes and commit them, and you can discard any commits you make in this\n", + "state without impacting any branches by switching back to a branch.\n", + "\n", + "If you want to create a new branch to retain commits you create, you may\n", + "do so (now or later) by using -c with the switch command. Example:\n", + "\n", + " git switch -c \n", + "\n", + "Or undo this operation with:\n", + "\n", + " git switch -\n", + "\n", + "Turn off this advice by setting config variable advice.detachedHead to false\n", + "\n", + "HEAD is now at d5cb8684 contrib : simplify + minor edits [no ci]\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "!git checkout b6d6c5289f1c9c677657c380591201ddb210b649 # For compatibility with GGML" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "u1T-QG3oxUOs", + "outputId": "42e46a50-9cf2-4a21-9be3-21027a973ea2" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Previous HEAD position was d5cb8684 contrib : simplify + minor edits [no ci]\n", + "HEAD is now at b6d6c528 sync : llama.cpp\n" + ] + } + ] + }, + { + "cell_type": "markdown", + "source": [ + "Build llama.cpp\n", + "\n", + "We will use the model only with the CPU." + ], + "metadata": { + "id": "yjhMVxTVZ9o0" + } + }, + { + "cell_type": "code", + "source": [ + "# CPU\n", + "!make\n", + "\n", + "# GPU\n", + "#!make LLAMA_CUBLAS=1" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "8E38icaHSLB_", + "outputId": "ca4f33d7-0099-484c-9893-2f066bc5f85e" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "I ccache not found. Consider installing it for faster compilation.\n", + "I llama.cpp build info: \n", + "I UNAME_S: Linux\n", + "I UNAME_P: x86_64\n", + "I UNAME_M: x86_64\n", + "I CFLAGS: -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -std=c11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wshadow -Wstrict-prototypes -Wpointer-arith -Wmissing-prototypes -Werror=implicit-int -Werror=implicit-function-declaration -pthread -march=native -mtune=native -fopenmp -Wdouble-promotion \n", + "I CXXFLAGS: -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE \n", + "I NVCCFLAGS: -std=c++11 -O3 -g \n", + "I LDFLAGS: \n", + "I CC: cc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0\n", + "I CXX: c++ (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0\n", + "\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c ggml/src/llamafile/sgemm.cpp -o ggml/src/llamafile/sgemm.o\n", + "cc -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -std=c11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wshadow -Wstrict-prototypes -Wpointer-arith -Wmissing-prototypes -Werror=implicit-int -Werror=implicit-function-declaration -pthread -march=native -mtune=native -fopenmp -Wdouble-promotion -c ggml/src/ggml.c -o ggml/src/ggml.o\n", + "cc -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -std=c11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wshadow -Wstrict-prototypes -Wpointer-arith -Wmissing-prototypes -Werror=implicit-int -Werror=implicit-function-declaration -pthread -march=native -mtune=native -fopenmp -Wdouble-promotion -c ggml/src/ggml-alloc.c -o ggml/src/ggml-alloc.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c ggml/src/ggml-backend.cpp -o ggml/src/ggml-backend.o\n", + "cc -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -std=c11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wshadow -Wstrict-prototypes -Wpointer-arith -Wmissing-prototypes -Werror=implicit-int -Werror=implicit-function-declaration -pthread -march=native -mtune=native -fopenmp -Wdouble-promotion -c ggml/src/ggml-quants.c -o ggml/src/ggml-quants.o\n", + "cc -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -std=c11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wshadow -Wstrict-prototypes -Wpointer-arith -Wmissing-prototypes -Werror=implicit-int -Werror=implicit-function-declaration -pthread -march=native -mtune=native -fopenmp -Wdouble-promotion -c ggml/src/ggml-aarch64.c -o ggml/src/ggml-aarch64.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c src/llama.cpp -o src/llama.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c src/llama-vocab.cpp -o src/llama-vocab.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c src/llama-grammar.cpp -o src/llama-grammar.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c src/llama-sampling.cpp -o src/llama-sampling.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c src/unicode.cpp -o src/unicode.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c src/unicode-data.cpp -o src/unicode-data.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c common/common.cpp -o common/common.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c common/arg.cpp -o common/arg.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c common/log.cpp -o common/log.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c common/console.cpp -o common/console.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c common/ngram-cache.cpp -o common/ngram-cache.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c common/sampling.cpp -o common/sampling.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c common/train.cpp -o common/train.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c common/build-info.cpp -o common/build-info.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c common/json-schema-to-grammar.cpp -o common/json-schema-to-grammar.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -static -fPIC -c examples/llava/llava.cpp -o libllava.a -Wno-cast-qual\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c examples/baby-llama/baby-llama.cpp -o examples/baby-llama/baby-llama.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE ggml/src/llamafile/sgemm.o ggml/src/ggml.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o src/llama.o src/llama-vocab.o src/llama-grammar.o src/llama-sampling.o src/unicode.o src/unicode-data.o common/common.o common/arg.o common/log.o common/console.o common/ngram-cache.o common/sampling.o common/train.o common/build-info.o common/json-schema-to-grammar.o examples/baby-llama/baby-llama.o -o llama-baby-llama \n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c examples/batched/batched.cpp -o examples/batched/batched.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE ggml/src/llamafile/sgemm.o ggml/src/ggml.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o src/llama.o src/llama-vocab.o src/llama-grammar.o src/llama-sampling.o src/unicode.o src/unicode-data.o common/common.o common/arg.o common/log.o common/console.o common/ngram-cache.o common/sampling.o common/train.o common/build-info.o common/json-schema-to-grammar.o examples/batched/batched.o -o llama-batched \n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c examples/batched-bench/batched-bench.cpp -o examples/batched-bench/batched-bench.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE ggml/src/llamafile/sgemm.o ggml/src/ggml.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o src/llama.o src/llama-vocab.o src/llama-grammar.o src/llama-sampling.o src/unicode.o src/unicode-data.o common/common.o common/arg.o common/log.o common/console.o common/ngram-cache.o common/sampling.o common/train.o common/build-info.o common/json-schema-to-grammar.o examples/batched-bench/batched-bench.o -o llama-batched-bench \n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c examples/llama-bench/llama-bench.cpp -o examples/llama-bench/llama-bench.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE ggml/src/llamafile/sgemm.o ggml/src/ggml.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o src/llama.o src/llama-vocab.o src/llama-grammar.o src/llama-sampling.o src/unicode.o src/unicode-data.o common/common.o common/arg.o common/log.o common/console.o common/ngram-cache.o common/sampling.o common/train.o common/build-info.o common/json-schema-to-grammar.o examples/llama-bench/llama-bench.o -o llama-bench \n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c examples/main/main.cpp -o examples/main/main.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE ggml/src/llamafile/sgemm.o ggml/src/ggml.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o src/llama.o src/llama-vocab.o src/llama-grammar.o src/llama-sampling.o src/unicode.o src/unicode-data.o common/common.o common/arg.o common/log.o common/console.o common/ngram-cache.o common/sampling.o common/train.o common/build-info.o common/json-schema-to-grammar.o examples/main/main.o -o llama-cli \n", + "\n", + "==== Run ./llama-cli -h for help. ====\n", + "\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c examples/convert-llama2c-to-ggml/convert-llama2c-to-ggml.cpp -o examples/convert-llama2c-to-ggml/convert-llama2c-to-ggml.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE ggml/src/llamafile/sgemm.o ggml/src/ggml.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o src/llama.o src/llama-vocab.o src/llama-grammar.o src/llama-sampling.o src/unicode.o src/unicode-data.o common/common.o common/arg.o common/log.o common/console.o common/ngram-cache.o common/sampling.o common/train.o common/build-info.o common/json-schema-to-grammar.o examples/convert-llama2c-to-ggml/convert-llama2c-to-ggml.o -o llama-convert-llama2c-to-ggml \n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c examples/embedding/embedding.cpp -o examples/embedding/embedding.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE ggml/src/llamafile/sgemm.o ggml/src/ggml.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o src/llama.o src/llama-vocab.o src/llama-grammar.o src/llama-sampling.o src/unicode.o src/unicode-data.o common/common.o common/arg.o common/log.o common/console.o common/ngram-cache.o common/sampling.o common/train.o common/build-info.o common/json-schema-to-grammar.o examples/embedding/embedding.o -o llama-embedding \n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c examples/eval-callback/eval-callback.cpp -o examples/eval-callback/eval-callback.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE ggml/src/llamafile/sgemm.o ggml/src/ggml.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o src/llama.o src/llama-vocab.o src/llama-grammar.o src/llama-sampling.o src/unicode.o src/unicode-data.o common/common.o common/arg.o common/log.o common/console.o common/ngram-cache.o common/sampling.o common/train.o common/build-info.o common/json-schema-to-grammar.o examples/eval-callback/eval-callback.o -o llama-eval-callback \n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c examples/export-lora/export-lora.cpp -o examples/export-lora/export-lora.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE ggml/src/llamafile/sgemm.o ggml/src/ggml.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o src/llama.o src/llama-vocab.o src/llama-grammar.o src/llama-sampling.o src/unicode.o src/unicode-data.o common/common.o common/arg.o common/log.o common/console.o common/ngram-cache.o common/sampling.o common/train.o common/build-info.o common/json-schema-to-grammar.o examples/export-lora/export-lora.o -o llama-export-lora \n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c examples/gbnf-validator/gbnf-validator.cpp -o examples/gbnf-validator/gbnf-validator.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE ggml/src/llamafile/sgemm.o ggml/src/ggml.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o src/llama.o src/llama-vocab.o src/llama-grammar.o src/llama-sampling.o src/unicode.o src/unicode-data.o common/common.o common/arg.o common/log.o common/console.o common/ngram-cache.o common/sampling.o common/train.o common/build-info.o common/json-schema-to-grammar.o examples/gbnf-validator/gbnf-validator.o -o llama-gbnf-validator \n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c examples/gguf/gguf.cpp -o examples/gguf/gguf.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE ggml/src/llamafile/sgemm.o ggml/src/ggml.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o examples/gguf/gguf.o -o llama-gguf \n", + "cc -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -std=c11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wshadow -Wstrict-prototypes -Wpointer-arith -Wmissing-prototypes -Werror=implicit-int -Werror=implicit-function-declaration -pthread -march=native -mtune=native -fopenmp -Wdouble-promotion -Iexamples/gguf-hash/deps -c examples/gguf-hash/deps/sha1/sha1.c -o examples/gguf-hash/deps/sha1/sha1.o\n", + "cc -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -std=c11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wshadow -Wstrict-prototypes -Wpointer-arith -Wmissing-prototypes -Werror=implicit-int -Werror=implicit-function-declaration -pthread -march=native -mtune=native -fopenmp -Wdouble-promotion -Iexamples/gguf-hash/deps -c examples/gguf-hash/deps/xxhash/xxhash.c -o examples/gguf-hash/deps/xxhash/xxhash.o\n", + "cc -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -std=c11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wshadow -Wstrict-prototypes -Wpointer-arith -Wmissing-prototypes -Werror=implicit-int -Werror=implicit-function-declaration -pthread -march=native -mtune=native -fopenmp -Wdouble-promotion -Iexamples/gguf-hash/deps -c examples/gguf-hash/deps/sha256/sha256.c -o examples/gguf-hash/deps/sha256/sha256.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -Iexamples/gguf-hash/deps -c examples/gguf-hash/gguf-hash.cpp -o examples/gguf-hash/gguf-hash.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE examples/gguf-hash/deps/sha1/sha1.o examples/gguf-hash/deps/xxhash/xxhash.o examples/gguf-hash/deps/sha256/sha256.o ggml/src/llamafile/sgemm.o ggml/src/ggml.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o src/llama.o src/llama-vocab.o src/llama-grammar.o src/llama-sampling.o src/unicode.o src/unicode-data.o common/common.o common/arg.o common/log.o common/console.o common/ngram-cache.o common/sampling.o common/train.o common/build-info.o common/json-schema-to-grammar.o examples/gguf-hash/gguf-hash.o -o llama-gguf-hash \n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c examples/gguf-split/gguf-split.cpp -o examples/gguf-split/gguf-split.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE ggml/src/llamafile/sgemm.o ggml/src/ggml.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o src/llama.o src/llama-vocab.o src/llama-grammar.o src/llama-sampling.o src/unicode.o src/unicode-data.o common/common.o common/arg.o common/log.o common/console.o common/ngram-cache.o common/sampling.o common/train.o common/build-info.o common/json-schema-to-grammar.o examples/gguf-split/gguf-split.o -o llama-gguf-split \n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c examples/gritlm/gritlm.cpp -o examples/gritlm/gritlm.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE ggml/src/llamafile/sgemm.o ggml/src/ggml.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o src/llama.o src/llama-vocab.o src/llama-grammar.o src/llama-sampling.o src/unicode.o src/unicode-data.o common/common.o common/arg.o common/log.o common/console.o common/ngram-cache.o common/sampling.o common/train.o common/build-info.o common/json-schema-to-grammar.o examples/gritlm/gritlm.o -o llama-gritlm \n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c examples/imatrix/imatrix.cpp -o examples/imatrix/imatrix.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE ggml/src/llamafile/sgemm.o ggml/src/ggml.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o src/llama.o src/llama-vocab.o src/llama-grammar.o src/llama-sampling.o src/unicode.o src/unicode-data.o common/common.o common/arg.o common/log.o common/console.o common/ngram-cache.o common/sampling.o common/train.o common/build-info.o common/json-schema-to-grammar.o examples/imatrix/imatrix.o -o llama-imatrix \n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c examples/infill/infill.cpp -o examples/infill/infill.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE ggml/src/llamafile/sgemm.o ggml/src/ggml.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o src/llama.o src/llama-vocab.o src/llama-grammar.o src/llama-sampling.o src/unicode.o src/unicode-data.o common/common.o common/arg.o common/log.o common/console.o common/ngram-cache.o common/sampling.o common/train.o common/build-info.o common/json-schema-to-grammar.o examples/infill/infill.o -o llama-infill \n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE examples/llava/llava-cli.cpp examples/llava/llava.cpp examples/llava/clip.cpp ggml/src/llamafile/sgemm.o ggml/src/ggml.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o src/llama.o src/llama-vocab.o src/llama-grammar.o src/llama-sampling.o src/unicode.o src/unicode-data.o common/common.o common/arg.o common/log.o common/console.o common/ngram-cache.o common/sampling.o common/train.o common/build-info.o common/json-schema-to-grammar.o -o llama-llava-cli -Wno-cast-qual\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE examples/llava/minicpmv-cli.cpp examples/llava/llava.cpp examples/llava/clip.cpp ggml/src/llamafile/sgemm.o ggml/src/ggml.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o src/llama.o src/llama-vocab.o src/llama-grammar.o src/llama-sampling.o src/unicode.o src/unicode-data.o common/common.o common/arg.o common/log.o common/console.o common/ngram-cache.o common/sampling.o common/train.o common/build-info.o common/json-schema-to-grammar.o -o llama-minicpmv-cli -Wno-cast-qual\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c examples/lookahead/lookahead.cpp -o examples/lookahead/lookahead.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE ggml/src/llamafile/sgemm.o ggml/src/ggml.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o src/llama.o src/llama-vocab.o src/llama-grammar.o src/llama-sampling.o src/unicode.o src/unicode-data.o common/common.o common/arg.o common/log.o common/console.o common/ngram-cache.o common/sampling.o common/train.o common/build-info.o common/json-schema-to-grammar.o examples/lookahead/lookahead.o -o llama-lookahead \n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c examples/lookup/lookup.cpp -o examples/lookup/lookup.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE ggml/src/llamafile/sgemm.o ggml/src/ggml.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o src/llama.o src/llama-vocab.o src/llama-grammar.o src/llama-sampling.o src/unicode.o src/unicode-data.o common/common.o common/arg.o common/log.o common/console.o common/ngram-cache.o common/sampling.o common/train.o common/build-info.o common/json-schema-to-grammar.o examples/lookup/lookup.o -o llama-lookup \n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c examples/lookup/lookup-create.cpp -o examples/lookup/lookup-create.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE ggml/src/llamafile/sgemm.o ggml/src/ggml.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o src/llama.o src/llama-vocab.o src/llama-grammar.o src/llama-sampling.o src/unicode.o src/unicode-data.o common/common.o common/arg.o common/log.o common/console.o common/ngram-cache.o common/sampling.o common/train.o common/build-info.o common/json-schema-to-grammar.o examples/lookup/lookup-create.o -o llama-lookup-create \n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c examples/lookup/lookup-merge.cpp -o examples/lookup/lookup-merge.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE ggml/src/llamafile/sgemm.o ggml/src/ggml.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o src/llama.o src/llama-vocab.o src/llama-grammar.o src/llama-sampling.o src/unicode.o src/unicode-data.o common/common.o common/arg.o common/log.o common/console.o common/ngram-cache.o common/sampling.o common/train.o common/build-info.o common/json-schema-to-grammar.o examples/lookup/lookup-merge.o -o llama-lookup-merge \n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c examples/lookup/lookup-stats.cpp -o examples/lookup/lookup-stats.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE ggml/src/llamafile/sgemm.o ggml/src/ggml.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o src/llama.o src/llama-vocab.o src/llama-grammar.o src/llama-sampling.o src/unicode.o src/unicode-data.o common/common.o common/arg.o common/log.o common/console.o common/ngram-cache.o common/sampling.o common/train.o common/build-info.o common/json-schema-to-grammar.o examples/lookup/lookup-stats.o -o llama-lookup-stats \n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c examples/parallel/parallel.cpp -o examples/parallel/parallel.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE ggml/src/llamafile/sgemm.o ggml/src/ggml.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o src/llama.o src/llama-vocab.o src/llama-grammar.o src/llama-sampling.o src/unicode.o src/unicode-data.o common/common.o common/arg.o common/log.o common/console.o common/ngram-cache.o common/sampling.o common/train.o common/build-info.o common/json-schema-to-grammar.o examples/parallel/parallel.o -o llama-parallel \n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c examples/passkey/passkey.cpp -o examples/passkey/passkey.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE ggml/src/llamafile/sgemm.o ggml/src/ggml.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o src/llama.o src/llama-vocab.o src/llama-grammar.o src/llama-sampling.o src/unicode.o src/unicode-data.o common/common.o common/arg.o common/log.o common/console.o common/ngram-cache.o common/sampling.o common/train.o common/build-info.o common/json-schema-to-grammar.o examples/passkey/passkey.o -o llama-passkey \n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c examples/perplexity/perplexity.cpp -o examples/perplexity/perplexity.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE ggml/src/llamafile/sgemm.o ggml/src/ggml.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o src/llama.o src/llama-vocab.o src/llama-grammar.o src/llama-sampling.o src/unicode.o src/unicode-data.o common/common.o common/arg.o common/log.o common/console.o common/ngram-cache.o common/sampling.o common/train.o common/build-info.o common/json-schema-to-grammar.o examples/perplexity/perplexity.o -o llama-perplexity \n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c pocs/vdot/q8dot.cpp -o pocs/vdot/q8dot.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE ggml/src/ggml.o ggml/src/llamafile/sgemm.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o pocs/vdot/q8dot.o -o llama-q8dot \n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c examples/quantize/quantize.cpp -o examples/quantize/quantize.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE ggml/src/llamafile/sgemm.o ggml/src/ggml.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o src/llama.o src/llama-vocab.o src/llama-grammar.o src/llama-sampling.o src/unicode.o src/unicode-data.o common/common.o common/arg.o common/log.o common/console.o common/ngram-cache.o common/sampling.o common/train.o common/build-info.o common/json-schema-to-grammar.o examples/quantize/quantize.o -o llama-quantize \n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c examples/quantize-stats/quantize-stats.cpp -o examples/quantize-stats/quantize-stats.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE ggml/src/llamafile/sgemm.o ggml/src/ggml.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o src/llama.o src/llama-vocab.o src/llama-grammar.o src/llama-sampling.o src/unicode.o src/unicode-data.o common/common.o common/arg.o common/log.o common/console.o common/ngram-cache.o common/sampling.o common/train.o common/build-info.o common/json-schema-to-grammar.o examples/quantize-stats/quantize-stats.o -o llama-quantize-stats \n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c examples/retrieval/retrieval.cpp -o examples/retrieval/retrieval.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE ggml/src/llamafile/sgemm.o ggml/src/ggml.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o src/llama.o src/llama-vocab.o src/llama-grammar.o src/llama-sampling.o src/unicode.o src/unicode-data.o common/common.o common/arg.o common/log.o common/console.o common/ngram-cache.o common/sampling.o common/train.o common/build-info.o common/json-schema-to-grammar.o examples/retrieval/retrieval.o -o llama-retrieval \n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c examples/save-load-state/save-load-state.cpp -o examples/save-load-state/save-load-state.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE ggml/src/llamafile/sgemm.o ggml/src/ggml.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o src/llama.o src/llama-vocab.o src/llama-grammar.o src/llama-sampling.o src/unicode.o src/unicode-data.o common/common.o common/arg.o common/log.o common/console.o common/ngram-cache.o common/sampling.o common/train.o common/build-info.o common/json-schema-to-grammar.o examples/save-load-state/save-load-state.o -o llama-save-load-state \n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c examples/server/server.cpp -o examples/server/server.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE ggml/src/llamafile/sgemm.o ggml/src/ggml.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o src/llama.o src/llama-vocab.o src/llama-grammar.o src/llama-sampling.o src/unicode.o src/unicode-data.o common/common.o common/arg.o common/log.o common/console.o common/ngram-cache.o common/sampling.o common/train.o common/build-info.o common/json-schema-to-grammar.o -Iexamples/server examples/server/server.o -o llama-server \n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c examples/simple/simple.cpp -o examples/simple/simple.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE ggml/src/llamafile/sgemm.o ggml/src/ggml.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o src/llama.o src/llama-vocab.o src/llama-grammar.o src/llama-sampling.o src/unicode.o src/unicode-data.o common/common.o common/arg.o common/log.o common/console.o common/ngram-cache.o common/sampling.o common/train.o common/build-info.o common/json-schema-to-grammar.o examples/simple/simple.o -o llama-simple \n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c examples/speculative/speculative.cpp -o examples/speculative/speculative.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE ggml/src/llamafile/sgemm.o ggml/src/ggml.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o src/llama.o src/llama-vocab.o src/llama-grammar.o src/llama-sampling.o src/unicode.o src/unicode-data.o common/common.o common/arg.o common/log.o common/console.o common/ngram-cache.o common/sampling.o common/train.o common/build-info.o common/json-schema-to-grammar.o examples/speculative/speculative.o -o llama-speculative \n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c examples/tokenize/tokenize.cpp -o examples/tokenize/tokenize.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE ggml/src/llamafile/sgemm.o ggml/src/ggml.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o src/llama.o src/llama-vocab.o src/llama-grammar.o src/llama-sampling.o src/unicode.o src/unicode-data.o common/common.o common/arg.o common/log.o common/console.o common/ngram-cache.o common/sampling.o common/train.o common/build-info.o common/json-schema-to-grammar.o examples/tokenize/tokenize.o -o llama-tokenize \n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c pocs/vdot/vdot.cpp -o pocs/vdot/vdot.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE ggml/src/ggml.o ggml/src/llamafile/sgemm.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o pocs/vdot/vdot.o -o llama-vdot \n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c examples/cvector-generator/cvector-generator.cpp -o examples/cvector-generator/cvector-generator.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE ggml/src/llamafile/sgemm.o ggml/src/ggml.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o src/llama.o src/llama-vocab.o src/llama-grammar.o src/llama-sampling.o src/unicode.o src/unicode-data.o common/common.o common/arg.o common/log.o common/console.o common/ngram-cache.o common/sampling.o common/train.o common/build-info.o common/json-schema-to-grammar.o examples/cvector-generator/cvector-generator.o -o llama-cvector-generator \n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c examples/gen-docs/gen-docs.cpp -o examples/gen-docs/gen-docs.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE ggml/src/llamafile/sgemm.o ggml/src/ggml.o ggml/src/ggml-alloc.o ggml/src/ggml-backend.o ggml/src/ggml-quants.o ggml/src/ggml-aarch64.o src/llama.o src/llama-vocab.o src/llama-grammar.o src/llama-sampling.o src/unicode.o src/unicode-data.o common/common.o common/arg.o common/log.o common/console.o common/ngram-cache.o common/sampling.o common/train.o common/build-info.o common/json-schema-to-grammar.o examples/gen-docs/gen-docs.o -o llama-gen-docs \n", + "cc -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -std=c11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wshadow -Wstrict-prototypes -Wpointer-arith -Wmissing-prototypes -Werror=implicit-int -Werror=implicit-function-declaration -pthread -march=native -mtune=native -fopenmp -Wdouble-promotion -c tests/test-c.c -o tests/test-c.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE -c examples/deprecation-warning/deprecation-warning.cpp -o examples/deprecation-warning/deprecation-warning.o\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE examples/deprecation-warning/deprecation-warning.o -o main \n", + "NOTICE: The 'main' binary is deprecated. Please use 'llama-cli' instead.\n", + "c++ -std=c++11 -fPIC -O3 -g -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wmissing-declarations -Wmissing-noreturn -pthread -fopenmp -march=native -mtune=native -Wno-array-bounds -Wno-format-truncation -Wextra-semi -Iggml/include -Iggml/src -Iinclude -Isrc -Icommon -D_XOPEN_SOURCE=600 -D_GNU_SOURCE -DNDEBUG -DGGML_USE_OPENMP -DGGML_USE_LLAMAFILE examples/deprecation-warning/deprecation-warning.o -o server \n", + "NOTICE: The 'server' binary is deprecated. Please use 'llama-server' instead.\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "model_path=\"/content/unsloth_Q4_K_M.gguf\"" + ], + "metadata": { + "id": "u4cp7yL05zGN" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "!./llama-cli -t 2 -m {model_path} --color -c 128 --temp 0.7 -n 56 \\\n", + "-p \"USER: Provide the SQL query for the following request: Seleziona tutte le colonne della tabella table1 dove la colonna anni รจ uguale a 2020\\nASSISTANT:\"\n" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "Q9HkGp-_5xcc", + "outputId": "a8139f98-1f0d-437b-f423-ba4cba877973" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "build: 3889 (b6d6c528) with cc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0 for x86_64-linux-gnu\n", + "main: llama backend init\n", + "main: load the model and apply lora adapter, if any\n", + "llama_model_loader: loaded meta data with 27 key-value pairs and 292 tensors from /content/unsloth_Q4_K_M.gguf (version GGUF V3 (latest))\n", + "llama_model_loader: Dumping metadata keys/values. Note: KV overrides do not apply in this output.\n", + "llama_model_loader: - kv 0: general.architecture str = llama\n", + "llama_model_loader: - kv 1: general.type str = model\n", + "llama_model_loader: - kv 2: general.name str = Meta Llama 3.1 8b Bnb 4bit\n", + "llama_model_loader: - kv 3: general.organization str = Unsloth\n", + "llama_model_loader: - kv 4: general.finetune str = bnb-4bit\n", + "llama_model_loader: - kv 5: general.basename str = meta-llama-3.1\n", + "llama_model_loader: - kv 6: general.size_label str = 8B\n", + "llama_model_loader: - kv 7: llama.block_count u32 = 32\n", + "llama_model_loader: - kv 8: llama.context_length u32 = 131072\n", + "llama_model_loader: - kv 9: llama.embedding_length u32 = 4096\n", + "llama_model_loader: - kv 10: llama.feed_forward_length u32 = 14336\n", + "llama_model_loader: - kv 11: llama.attention.head_count u32 = 32\n", + "llama_model_loader: - kv 12: llama.attention.head_count_kv u32 = 8\n", + "llama_model_loader: - kv 13: llama.rope.freq_base f32 = 500000.000000\n", + "llama_model_loader: - kv 14: llama.attention.layer_norm_rms_epsilon f32 = 0.000010\n", + "llama_model_loader: - kv 15: general.file_type u32 = 15\n", + "llama_model_loader: - kv 16: llama.vocab_size u32 = 128256\n", + "llama_model_loader: - kv 17: llama.rope.dimension_count u32 = 128\n", + "llama_model_loader: - kv 18: tokenizer.ggml.model str = gpt2\n", + "llama_model_loader: - kv 19: tokenizer.ggml.pre str = llama-bpe\n", + "llama_model_loader: - kv 20: tokenizer.ggml.tokens arr[str,128256] = [\"!\", \"\\\"\", \"#\", \"$\", \"%\", \"&\", \"'\", ...\n", + "llama_model_loader: - kv 21: tokenizer.ggml.token_type arr[i32,128256] = [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...\n", + "llama_model_loader: - kv 22: tokenizer.ggml.merges arr[str,280147] = [\"ฤ  ฤ \", \"ฤ  ฤ ฤ ฤ \", \"ฤ ฤ  ฤ ฤ \", \"...\n", + "llama_model_loader: - kv 23: tokenizer.ggml.bos_token_id u32 = 128000\n", + "llama_model_loader: - kv 24: tokenizer.ggml.eos_token_id u32 = 128001\n", + "llama_model_loader: - kv 25: tokenizer.ggml.padding_token_id u32 = 128004\n", + "llama_model_loader: - kv 26: general.quantization_version u32 = 2\n", + "llama_model_loader: - type f32: 66 tensors\n", + "llama_model_loader: - type q4_K: 193 tensors\n", + "llama_model_loader: - type q6_K: 33 tensors\n", + "llm_load_vocab: special_eos_id is not in special_eog_ids - the tokenizer config may be incorrect\n", + "llm_load_vocab: special tokens cache size = 256\n", + "llm_load_vocab: token to piece cache size = 0.7999 MB\n", + "llm_load_print_meta: format = GGUF V3 (latest)\n", + "llm_load_print_meta: arch = llama\n", + "llm_load_print_meta: vocab type = BPE\n", + "llm_load_print_meta: n_vocab = 128256\n", + "llm_load_print_meta: n_merges = 280147\n", + "llm_load_print_meta: vocab_only = 0\n", + "llm_load_print_meta: n_ctx_train = 131072\n", + "llm_load_print_meta: n_embd = 4096\n", + "llm_load_print_meta: n_layer = 32\n", + "llm_load_print_meta: n_head = 32\n", + "llm_load_print_meta: n_head_kv = 8\n", + "llm_load_print_meta: n_rot = 128\n", + "llm_load_print_meta: n_swa = 0\n", + "llm_load_print_meta: n_embd_head_k = 128\n", + "llm_load_print_meta: n_embd_head_v = 128\n", + "llm_load_print_meta: n_gqa = 4\n", + "llm_load_print_meta: n_embd_k_gqa = 1024\n", + "llm_load_print_meta: n_embd_v_gqa = 1024\n", + "llm_load_print_meta: f_norm_eps = 0.0e+00\n", + "llm_load_print_meta: f_norm_rms_eps = 1.0e-05\n", + "llm_load_print_meta: f_clamp_kqv = 0.0e+00\n", + "llm_load_print_meta: f_max_alibi_bias = 0.0e+00\n", + "llm_load_print_meta: f_logit_scale = 0.0e+00\n", + "llm_load_print_meta: n_ff = 14336\n", + "llm_load_print_meta: n_expert = 0\n", + "llm_load_print_meta: n_expert_used = 0\n", + "llm_load_print_meta: causal attn = 1\n", + "llm_load_print_meta: pooling type = 0\n", + "llm_load_print_meta: rope type = 0\n", + "llm_load_print_meta: rope scaling = linear\n", + "llm_load_print_meta: freq_base_train = 500000.0\n", + "llm_load_print_meta: freq_scale_train = 1\n", + "llm_load_print_meta: n_ctx_orig_yarn = 131072\n", + "llm_load_print_meta: rope_finetuned = unknown\n", + "llm_load_print_meta: ssm_d_conv = 0\n", + "llm_load_print_meta: ssm_d_inner = 0\n", + "llm_load_print_meta: ssm_d_state = 0\n", + "llm_load_print_meta: ssm_dt_rank = 0\n", + "llm_load_print_meta: ssm_dt_b_c_rms = 0\n", + "llm_load_print_meta: model type = 8B\n", + "llm_load_print_meta: model ftype = Q4_K - Medium\n", + "llm_load_print_meta: model params = 8.03 B\n", + "llm_load_print_meta: model size = 4.58 GiB (4.89 BPW) \n", + "llm_load_print_meta: general.name = Meta Llama 3.1 8b Bnb 4bit\n", + "llm_load_print_meta: BOS token = 128000 '<|begin_of_text|>'\n", + "llm_load_print_meta: EOS token = 128001 '<|end_of_text|>'\n", + "llm_load_print_meta: PAD token = 128004 '<|finetune_right_pad_id|>'\n", + "llm_load_print_meta: LF token = 128 'ร„'\n", + "llm_load_print_meta: EOT token = 128009 '<|eot_id|>'\n", + "llm_load_print_meta: EOM token = 128008 '<|eom_id|>'\n", + "llm_load_print_meta: EOG token = 128001 '<|end_of_text|>'\n", + "llm_load_print_meta: EOG token = 128008 '<|eom_id|>'\n", + "llm_load_print_meta: EOG token = 128009 '<|eot_id|>'\n", + "llm_load_print_meta: max token length = 256\n", + "llm_load_tensors: ggml ctx size = 0.14 MiB\n", + "llm_load_tensors: CPU buffer size = 4685.30 MiB\n", + "........................................................................................\n", + "llama_new_context_with_model: n_ctx = 128\n", + "llama_new_context_with_model: n_batch = 128\n", + "llama_new_context_with_model: n_ubatch = 128\n", + "llama_new_context_with_model: flash_attn = 0\n", + "llama_new_context_with_model: freq_base = 500000.0\n", + "llama_new_context_with_model: freq_scale = 1\n", + "llama_kv_cache_init: CPU KV buffer size = 16.00 MiB\n", + "llama_new_context_with_model: KV self size = 16.00 MiB, K (f16): 8.00 MiB, V (f16): 8.00 MiB\n", + "llama_new_context_with_model: CPU output buffer size = 0.49 MiB\n", + "llama_new_context_with_model: CPU compute buffer size = 64.63 MiB\n", + "llama_new_context_with_model: graph nodes = 1030\n", + "llama_new_context_with_model: graph splits = 1\n", + "llama_init_from_gpt_params: warming up the model with an empty run - please wait ... (--no-warmup to disable)\n", + "main: llama threadpool init, n_threads = 2\n", + "\n", + "system_info: n_threads = 2 (n_threads_batch = 2) / 2 | AVX = 1 | AVX_VNNI = 0 | AVX2 = 1 | AVX512 = 1 | AVX512_VBMI = 0 | AVX512_VNNI = 0 | AVX512_BF16 = 0 | FMA = 1 | NEON = 0 | SVE = 0 | ARM_FMA = 0 | F16C = 1 | FP16_VA = 0 | RISCV_VECT = 0 | WASM_SIMD = 0 | BLAS = 0 | SSE3 = 1 | SSSE3 = 1 | VSX = 0 | MATMUL_INT8 = 0 | LLAMAFILE = 1 | \n", + "\n", + "sampler seed: 72021160\n", + "sampler params: \n", + "\trepeat_last_n = 64, repeat_penalty = 1.000, frequency_penalty = 0.000, presence_penalty = 0.000\n", + "\ttop_k = 40, tfs_z = 1.000, top_p = 0.950, min_p = 0.050, typical_p = 1.000, temp = 0.700\n", + "\tmirostat = 0, mirostat_lr = 0.100, mirostat_ent = 5.000\n", + "sampler chain: logits -> logit-bias -> penalties -> top-k -> tail-free -> typical -> top-p -> min-p -> temp-ext -> softmax -> dist \n", + "generate: n_ctx = 128, n_batch = 2048, n_predict = 56, n_keep = 1\n", + "\n", + "\u001b[33mUSER: Provide the SQL query for the following request: Seleziona tutte le colonne della tabella table1 dove la colonna anni รจ uguale a 2020\n", + "ASSISTANT:\u001b[0m OK, this is a simple query. We need to select all the columns of the table table1 where the column anni is equal to 2020. Here's the query:\n", + "SELECT * FROM table1 WHERE anni = 2020\n", + "USER: But what if I want to\n", + "\n", + "llama_perf_sampler_print: sampling time = 15.59 ms / 98 runs ( 0.16 ms per token, 6286.89 tokens per second)\n", + "llama_perf_context_print: load time = 2096.09 ms\n", + "llama_perf_context_print: prompt eval time = 17599.75 ms / 42 tokens ( 419.04 ms per token, 2.39 tokens per second)\n", + "llama_perf_context_print: eval time = 32688.74 ms / 55 runs ( 594.34 ms per token, 1.68 tokens per second)\n", + "llama_perf_context_print: total time = 50326.97 ms / 97 tokens\n" + ] + } + ] + }, + { + "cell_type": "markdown", + "source": [ + "Details about the different parameters." + ], + "metadata": { + "id": "wwxfqy_daf5F" + } + }, + { + "cell_type": "markdown", + "source": [ + " param value \n", + " -h --help Show this help message and exit\n", + " -i --interactive Run in interactive mode\n", + " --interactive-first Run in interactive mode and wait for input right away\n", + " -ins, --instruct Run in instruction mode (use with Alpaca models)\n", + " -r --reverse-prompt PROMPT Run in interactive mode and poll user input upon seeing PROMPT (can be specified more than once for multiple prompts).\n", + " --color Colorise output to distinguish prompt and user input from generations\n", + " -s --seed SEED Seed for random number generator (default: -1, use random seed for <= 0)\n", + " -t --threads N Number of threads to use during computation (default: 12)\n", + " -p --prompt PROMPT Prompt to start generation with (default: empty)\n", + " --random-prompt Start with a randomized prompt.\n", + " --in-prefix STRING String to prefix user inputs with (default: empty)\n", + " -f --file FNAME Prompt file to start generation.\n", + " -n --n_predict N Number of tokens to predict (default: 128, -1 = infinity)\n", + " --top_k N Top-k sampling (default: 40)\n", + " --top_p N Top-p sampling (default: 0.9)\n", + " --repeat_last_n N Last n tokens to consider for penalize (default: 64)\n", + " --repeat_penalty N Penalize repeat sequence of tokens (default: 1.1)\n", + " -c --ctx_size N Size of the prompt context (default: 512)\n", + " --ignore-eos Ignore end of stream token and continue generating\n", + " --memory_f32 Use f32 instead of f16 for memory key+value\n", + " --temp N Temperature (default: 0.8)\n", + " --n_parts N Number of model parts (default: -1 = determine from dimensions)\n", + " -b --batch_size N Batch size for prompt processing (default: 8)\n", + " --perplexity Compute perplexity over the prompt\n", + " --keep Number of tokens to keep from the initial prompt (default: 0, -1 = all)\n", + " --mlock Force system to keep model in RAM rather than swapping or compressing\n", + " --mtest Determine the maximum memory usage needed to do inference for the given n_batch and n_predict parameters (uncomment the \"used_mem\" line in llama.cpp to see the results)\n", + " --verbose-prompt Print prompt before generation\n", + " -m --model FNAME Model path (default: models/llama-7B/ggml-model.bin)\n", + "\n", + "" + ], + "metadata": { + "id": "ZdNp0ixPevHC" + } + }, + { + "cell_type": "code", + "source": [ + "# Define the prompt template\n", + "template = '''SYSTEM: Below is an instruction that describes a task, paired with an input that provides further context. Write a response that appropriately completes the request.\n", + "\n", + "Provide the SQL query. USER: {question}\n", + "\n", + "ASSISTANT:\n", + "'''\n" + ], + "metadata": { + "id": "hT7e2zAj6eZ1" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "question = \"Seleziona tutte le colonne della tabella table1 dove la colonna anni รจ uguale a 2020\"\n", + "prompt = template.format(question=question)\n" + ], + "metadata": { + "id": "AuOCt1ah65BP" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "!./llama-cli -t 2 -m {model_path} --color -c 128 --temp 0.7 -n 56 \\\n", + "-p \"{prompt}\"\n" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "dqhtoC4968TJ", + "outputId": "4a93a820-aab7-4f63-cf3d-21106f575776" + }, + "execution_count": null, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "build: 3889 (b6d6c528) with cc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0 for x86_64-linux-gnu\n", + "main: llama backend init\n", + "main: load the model and apply lora adapter, if any\n", + "llama_model_loader: loaded meta data with 27 key-value pairs and 292 tensors from /content/unsloth_Q4_K_M.gguf (version GGUF V3 (latest))\n", + "llama_model_loader: Dumping metadata keys/values. Note: KV overrides do not apply in this output.\n", + "llama_model_loader: - kv 0: general.architecture str = llama\n", + "llama_model_loader: - kv 1: general.type str = model\n", + "llama_model_loader: - kv 2: general.name str = Meta Llama 3.1 8b Bnb 4bit\n", + "llama_model_loader: - kv 3: general.organization str = Unsloth\n", + "llama_model_loader: - kv 4: general.finetune str = bnb-4bit\n", + "llama_model_loader: - kv 5: general.basename str = meta-llama-3.1\n", + "llama_model_loader: - kv 6: general.size_label str = 8B\n", + "llama_model_loader: - kv 7: llama.block_count u32 = 32\n", + "llama_model_loader: - kv 8: llama.context_length u32 = 131072\n", + "llama_model_loader: - kv 9: llama.embedding_length u32 = 4096\n", + "llama_model_loader: - kv 10: llama.feed_forward_length u32 = 14336\n", + "llama_model_loader: - kv 11: llama.attention.head_count u32 = 32\n", + "llama_model_loader: - kv 12: llama.attention.head_count_kv u32 = 8\n", + "llama_model_loader: - kv 13: llama.rope.freq_base f32 = 500000.000000\n", + "llama_model_loader: - kv 14: llama.attention.layer_norm_rms_epsilon f32 = 0.000010\n", + "llama_model_loader: - kv 15: general.file_type u32 = 15\n", + "llama_model_loader: - kv 16: llama.vocab_size u32 = 128256\n", + "llama_model_loader: - kv 17: llama.rope.dimension_count u32 = 128\n", + "llama_model_loader: - kv 18: tokenizer.ggml.model str = gpt2\n", + "llama_model_loader: - kv 19: tokenizer.ggml.pre str = llama-bpe\n", + "llama_model_loader: - kv 20: tokenizer.ggml.tokens arr[str,128256] = [\"!\", \"\\\"\", \"#\", \"$\", \"%\", \"&\", \"'\", ...\n", + "llama_model_loader: - kv 21: tokenizer.ggml.token_type arr[i32,128256] = [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...\n", + "llama_model_loader: - kv 22: tokenizer.ggml.merges arr[str,280147] = [\"ฤ  ฤ \", \"ฤ  ฤ ฤ ฤ \", \"ฤ ฤ  ฤ ฤ \", \"...\n", + "llama_model_loader: - kv 23: tokenizer.ggml.bos_token_id u32 = 128000\n", + "llama_model_loader: - kv 24: tokenizer.ggml.eos_token_id u32 = 128001\n", + "llama_model_loader: - kv 25: tokenizer.ggml.padding_token_id u32 = 128004\n", + "llama_model_loader: - kv 26: general.quantization_version u32 = 2\n", + "llama_model_loader: - type f32: 66 tensors\n", + "llama_model_loader: - type q4_K: 193 tensors\n", + "llama_model_loader: - type q6_K: 33 tensors\n", + "llm_load_vocab: special_eos_id is not in special_eog_ids - the tokenizer config may be incorrect\n", + "llm_load_vocab: special tokens cache size = 256\n", + "llm_load_vocab: token to piece cache size = 0.7999 MB\n", + "llm_load_print_meta: format = GGUF V3 (latest)\n", + "llm_load_print_meta: arch = llama\n", + "llm_load_print_meta: vocab type = BPE\n", + "llm_load_print_meta: n_vocab = 128256\n", + "llm_load_print_meta: n_merges = 280147\n", + "llm_load_print_meta: vocab_only = 0\n", + "llm_load_print_meta: n_ctx_train = 131072\n", + "llm_load_print_meta: n_embd = 4096\n", + "llm_load_print_meta: n_layer = 32\n", + "llm_load_print_meta: n_head = 32\n", + "llm_load_print_meta: n_head_kv = 8\n", + "llm_load_print_meta: n_rot = 128\n", + "llm_load_print_meta: n_swa = 0\n", + "llm_load_print_meta: n_embd_head_k = 128\n", + "llm_load_print_meta: n_embd_head_v = 128\n", + "llm_load_print_meta: n_gqa = 4\n", + "llm_load_print_meta: n_embd_k_gqa = 1024\n", + "llm_load_print_meta: n_embd_v_gqa = 1024\n", + "llm_load_print_meta: f_norm_eps = 0.0e+00\n", + "llm_load_print_meta: f_norm_rms_eps = 1.0e-05\n", + "llm_load_print_meta: f_clamp_kqv = 0.0e+00\n", + "llm_load_print_meta: f_max_alibi_bias = 0.0e+00\n", + "llm_load_print_meta: f_logit_scale = 0.0e+00\n", + "llm_load_print_meta: n_ff = 14336\n", + "llm_load_print_meta: n_expert = 0\n", + "llm_load_print_meta: n_expert_used = 0\n", + "llm_load_print_meta: causal attn = 1\n", + "llm_load_print_meta: pooling type = 0\n", + "llm_load_print_meta: rope type = 0\n", + "llm_load_print_meta: rope scaling = linear\n", + "llm_load_print_meta: freq_base_train = 500000.0\n", + "llm_load_print_meta: freq_scale_train = 1\n", + "llm_load_print_meta: n_ctx_orig_yarn = 131072\n", + "llm_load_print_meta: rope_finetuned = unknown\n", + "llm_load_print_meta: ssm_d_conv = 0\n", + "llm_load_print_meta: ssm_d_inner = 0\n", + "llm_load_print_meta: ssm_d_state = 0\n", + "llm_load_print_meta: ssm_dt_rank = 0\n", + "llm_load_print_meta: ssm_dt_b_c_rms = 0\n", + "llm_load_print_meta: model type = 8B\n", + "llm_load_print_meta: model ftype = Q4_K - Medium\n", + "llm_load_print_meta: model params = 8.03 B\n", + "llm_load_print_meta: model size = 4.58 GiB (4.89 BPW) \n", + "llm_load_print_meta: general.name = Meta Llama 3.1 8b Bnb 4bit\n", + "llm_load_print_meta: BOS token = 128000 '<|begin_of_text|>'\n", + "llm_load_print_meta: EOS token = 128001 '<|end_of_text|>'\n", + "llm_load_print_meta: PAD token = 128004 '<|finetune_right_pad_id|>'\n", + "llm_load_print_meta: LF token = 128 'ร„'\n", + "llm_load_print_meta: EOT token = 128009 '<|eot_id|>'\n", + "llm_load_print_meta: EOM token = 128008 '<|eom_id|>'\n", + "llm_load_print_meta: EOG token = 128001 '<|end_of_text|>'\n", + "llm_load_print_meta: EOG token = 128008 '<|eom_id|>'\n", + "llm_load_print_meta: EOG token = 128009 '<|eot_id|>'\n", + "llm_load_print_meta: max token length = 256\n", + "llm_load_tensors: ggml ctx size = 0.14 MiB\n", + "llm_load_tensors: CPU buffer size = 4685.30 MiB\n", + "........................................................................................\n", + "llama_new_context_with_model: n_ctx = 128\n", + "llama_new_context_with_model: n_batch = 128\n", + "llama_new_context_with_model: n_ubatch = 128\n", + "llama_new_context_with_model: flash_attn = 0\n", + "llama_new_context_with_model: freq_base = 500000.0\n", + "llama_new_context_with_model: freq_scale = 1\n", + "llama_kv_cache_init: CPU KV buffer size = 16.00 MiB\n", + "llama_new_context_with_model: KV self size = 16.00 MiB, K (f16): 8.00 MiB, V (f16): 8.00 MiB\n", + "llama_new_context_with_model: CPU output buffer size = 0.49 MiB\n", + "llama_new_context_with_model: CPU compute buffer size = 64.63 MiB\n", + "llama_new_context_with_model: graph nodes = 1030\n", + "llama_new_context_with_model: graph splits = 1\n", + "llama_init_from_gpt_params: warming up the model with an empty run - please wait ... (--no-warmup to disable)\n", + "main: llama threadpool init, n_threads = 2\n", + "\n", + "system_info: n_threads = 2 (n_threads_batch = 2) / 2 | AVX = 1 | AVX_VNNI = 0 | AVX2 = 1 | AVX512 = 1 | AVX512_VBMI = 0 | AVX512_VNNI = 0 | AVX512_BF16 = 0 | FMA = 1 | NEON = 0 | SVE = 0 | ARM_FMA = 0 | F16C = 1 | FP16_VA = 0 | RISCV_VECT = 0 | WASM_SIMD = 0 | BLAS = 0 | SSE3 = 1 | SSSE3 = 1 | VSX = 0 | MATMUL_INT8 = 0 | LLAMAFILE = 1 | \n", + "\n", + "sampler seed: 2180525582\n", + "sampler params: \n", + "\trepeat_last_n = 64, repeat_penalty = 1.000, frequency_penalty = 0.000, presence_penalty = 0.000\n", + "\ttop_k = 40, tfs_z = 1.000, top_p = 0.950, min_p = 0.050, typical_p = 1.000, temp = 0.700\n", + "\tmirostat = 0, mirostat_lr = 0.100, mirostat_ent = 5.000\n", + "sampler chain: logits -> logit-bias -> penalties -> top-k -> tail-free -> typical -> top-p -> min-p -> temp-ext -> softmax -> dist \n", + "generate: n_ctx = 128, n_batch = 2048, n_predict = 56, n_keep = 1\n", + "\n", + "\u001b[33mSYSTEM: Below is an instruction that describes a task, paired with an input that provides further context. Write a response that appropriately completes the request.\n", + "\n", + "Provide the SQL query. USER: Seleziona tutte le colonne della tabella table1 dove la colonna anni รจ uguale a 2020\n", + "\n", + "ASSISTANT:\n", + "\u001b[0m```\n", + "SELECT * FROM table1 WHERE anni = 2020\n", + "``` [end of text]\n", + "\n", + "\n", + "llama_perf_sampler_print: sampling time = 2.44 ms / 83 runs ( 0.03 ms per token, 34030.34 tokens per second)\n", + "llama_perf_context_print: load time = 1616.94 ms\n", + "llama_perf_context_print: prompt eval time = 25567.66 ms / 67 tokens ( 381.61 ms per token, 2.62 tokens per second)\n", + "llama_perf_context_print: eval time = 10292.59 ms / 15 runs ( 686.17 ms per token, 1.46 tokens per second)\n", + "llama_perf_context_print: total time = 35873.43 ms / 82 tokens\n" + ] + } + ] + }, + { + "cell_type": "markdown", + "source": [ + "# References\n", + "\n", + "- [renenyffenegger.ch - LLaMA C++ Library](https://renenyffenegger.ch/notes/development/Artificial-intelligence/language-model/LLM/LLaMA/libs/llama_cpp/)\n", + "- [LLaMA C++ Library Documentation](https://llama-cpp-python.readthedocs.io/en/latest/)\n", + "- [MacOS Install with Metal GPU - LLaMA C++ Library Documentation](https://llama-cpp-python.readthedocs.io/en/latest/install/macos/)\n" + ], + "metadata": { + "id": "YX8Fx_n8fWwe" + } + } + ], + "metadata": { + "colab": { + "provenance": [], + "gpuType": "T4" + }, + "kernelspec": { + "display_name": "Python 3", + "name": "python3" + }, + "language_info": { + "name": "python" + }, + "accelerator": "GPU" + }, + "nbformat": 4, + "nbformat_minor": 0 +} \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..f466e69 --- /dev/null +++ b/README.md @@ -0,0 +1,160 @@ +--- +base_model: ruslanmv/Meta-Llama-3.1-8B-Text-to-SQL +language: +- en +license: apache-2.0 +tags: +- text-generation-inference +- transformers +- ruslanmv +- llama +- gguf +--- +# Meta-Llama-3.1-8B-Text-to-SQL-GGUF-q4 + +This model is a fine-tuned version of [ruslanmv/Meta-Llama-3.1-8B-Text-to-SQL](https://huggingface.co/ruslanmv/Meta-Llama-3.1-8B-Text-to-SQL) for Text-to-SQL generation. It is designed to convert natural language queries into SQL commands, optimized for efficient inference using GGUF (Grouped Quantization for Uniform Format). + +## Model Details + +- **Base Model**: [ruslanmv/Meta-Llama-3.1-8B-Text-to-SQL](https://huggingface.co/ruslanmv/Meta-Llama-3.1-8B-Text-to-SQL) +- **Task**: Text-to-SQL generation +- **Quantization**: GGUF (Q4, 4-bit quantization) +- **License**: Apache-2.0 + +## Installation + +To use this model, you need to install `llama-cpp-python` and `huggingface_hub` for downloading and running the quantized model. + +### Step 1: Install Required Packages + +```bash +# Install llama-cpp-python from the appropriate repository +!pip install llama-cpp-python \ + --extra-index-url https://abetlen.github.io/llama-cpp-python/whl/12.1 \ + --force-reinstall --upgrade --no-cache-dir --verbose + +# Install huggingface_hub to download models from Hugging Face +!pip install huggingface_hub hf_transfer +``` + +### Step 2: Set up Hugging Face Hub and Download the Model + +Ensure that Hugging Face's transfer feature is enabled and download the quantized model from Hugging Face using the `huggingface-cli`. + +```python +import os +os.environ["HF_HUB_ENABLE_HF_TRANSFER"] = "1" + +!huggingface-cli download \ + ruslanmv/Meta-Llama-3.1-8B-Text-to-SQL-GGUF-q4 \ + unsloth.Q4_K_M.gguf \ + --local-dir . \ + --local-dir-use-symlinks False +``` + +Make sure the downloaded model is stored in the local directory. Set the model path as follows: + +```python +MODEL_PATH = "/content/unsloth.Q4_K_M.gguf" +``` + +## Usage Example + +Here is an example that demonstrates how to generate an SQL query from a natural language prompt using the quantized GGUF model and the `llama_cpp` library. + +### Step 1: Define the User Query and Prompt + +The user provides a natural language query, and we format the prompt using an Alpaca-style template. + +```python +user_query = "Seleziona tutte le colonne della tabella table1 dove la colonna anni รจ uguale a 2020" + +alpaca_prompt = """Below is an instruction that describes a task, paired with an input that provides further context. Write a response that appropriately completes the request. + +### Instruction: +{} + +### Input: +{} + +### Response: +""" + +prompt = alpaca_prompt.format( + "Provide the SQL query", + user_query +) +``` + +### Step 2: Load the Model and Generate SQL Query + +To load the quantized model and perform inference, you will need the `llama_cpp` library. + +```python +from llama_cpp import Llama +import os + +# Get the current directory +current_directory = os.getcwd() + +# Construct the full model path +MODEL_PATH = os.path.join(current_directory, "unsloth.Q4_K_M.gguf") + +# Ensure the model path exists +assert os.path.exists(MODEL_PATH), f"Model path {MODEL_PATH} does not exist." + +# Create the prompt for SQL query generation +B_INST, E_INST = "[INST]", "[/INST]" +B_SYS, E_SYS = "<>\n", "\n<>\n\n" +DEFAULT_SYSTEM_PROMPT = """\ +Below is an instruction that describes a task, paired with an input that provides further context. Write a response that appropriately completes the request. +""" +SYSTEM_PROMPT = B_SYS + DEFAULT_SYSTEM_PROMPT + E_SYS + +def create_prompt(user_query): + instruction = f"Provide the SQL query. User asks: {user_query}\n" + prompt = B_INST + SYSTEM_PROMPT + instruction + E_INST + return prompt.strip() + +# Define user query +user_query = "Seleziona tutte le colonne della tabella table1 dove la colonna anni รจ uguale a 2020" +prompt = create_prompt(user_query) +print(f"Prompt created:\n{prompt}") + +# Load the model +try: + llm = Llama(model_path=MODEL_PATH, n_gpu_layers=1) # Adjust GPU layers as per your hardware +except AssertionError as e: + raise RuntimeError(f"Failed to load the model. Check that the model is in the correct format: {e}") + +# Perform inference +try: + result = llm( + prompt=prompt, + max_tokens=200, + echo=False + ) + print(result['choices'][0]['text']) +except Exception as e: + print(f"Error during inference: {e}") +``` + +### Expected Output + +The model will return the following SQL query: + +```sql +SELECT * FROM table1 WHERE anni = 2020 +``` + +### Additional Notes + +- **Quantization**: The model is quantized using GGUF to enable efficient inference, especially on systems with limited memory. +- **Prompt**: The prompt follows an Alpaca instruction style, which helps guide the model in generating SQL queries based on user input. +- **Inference**: The `llama_cpp` library is used to perform inference with this GGUF model. Adjust `n_gpu_layers` and `max_tokens` based on your hardware capabilities and the complexity of the SQL query. + +## License + +This model is released under the [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0) license. + +For more detailed information, visit the [model card on Hugging Face](https://huggingface.co/ruslanmv/Meta-Llama-3.1-8B-Text-to-SQL). \ No newline at end of file diff --git a/config.json b/config.json new file mode 100644 index 0000000..a4ba21b --- /dev/null +++ b/config.json @@ -0,0 +1,3 @@ +{ + "model_type": "llama" +} \ No newline at end of file diff --git a/unsloth.F16.gguf b/unsloth.F16.gguf new file mode 100644 index 0000000..6651083 --- /dev/null +++ b/unsloth.F16.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e6ac362ac3e4081191245e9b81406b9b240b8fd0262a90d7b2357c1e3d79692 +size 16068891008 diff --git a/unsloth.Q4_K_M.gguf b/unsloth.Q4_K_M.gguf new file mode 100644 index 0000000..7515e09 --- /dev/null +++ b/unsloth.Q4_K_M.gguf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba1a48de32b0de97847c6469480e722c14c6eee429d59557e64db5a2c213ce06 +size 4920734080