pypa / pipenv

Python Development Workflow for Humans.
https://pipenv.pypa.io
MIT License
24.87k stars 1.87k forks source link

Locking fails when adding module as dev dependency. #4977

Closed pklapperich closed 2 years ago

pklapperich commented 2 years ago

Issue description

I have a Pipfile to which I added a 2nd [[Sources]] section in order to pull in some of Intel's MKL packages. Even when explicitly marking all packages in the Pipfile as index="pypi", locking runs for hours and eventually fails when I try to include tensorflow as a [dev-package]. But it does work just fine when tensorflow is included in [packages]

Steps to Reproduce

  1. Use the Pipfile
    Pipfile

[[source]] url = "https://pypi.org/simple" verify_ssl = true name = "pypi"

[[source]]
url = "https://pypi.anaconda.org/intel/simple" verify_ssl = true name = "intel"

[packages] numpy = {version="", index="pypi"} scipy = {version="", index="pypi"} scikit-learn = {version="", index="pypi"} scikit-learn-intelex = {version="", index="pypi"}

dpcpp_cpp_rt = {version="*", index="pypi"}

pywavelets = {version="*", index="pypi"}

tensorpac = {version="*", index="pypi"}

matplotlib = {version="*", index="pypi"}

onnxruntime = {version="", index="pypi"} neurokit2 = {version="", index="pypi"}

[dev-packages] keras = {version="<2.5.0", index="pypi"} onnxmltools = {version="", index="pypi"} skl2onnx = {version="", index="pypi"} tf2onnx = {version="", index="pypi"} pyserial = {version="", index="pypi"}

[requires] python_version = "3.8"

  1. pipenv lock --clear && pipenv sync --dev
  2. pipenv install -i pypi --dev tensorflow Spins for hours on "Locking..." and eventually fails.

Workarounds

Expected result

I would expect that anything which can be installed to [packages] successfully should also install succesfully to [dev_packages]

I think my steps might be reproducing #4926 but I don't see anything on that issue about different behavior when installing with --dev.

Actual result

Eventually the lock fails (after 8h20m), but when using verbose it writes gigabytes (8.7) of log messages to the screen.

pipenv install -i pypi --dev tensorflow --verbose > pipenv.log; tail -n 500 pipenv.log ``` INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('numpy>=1.16'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy>=1.16'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.ending_round(1999967, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(1999967, state) Reporter.starting_round(1999968) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(1999968) Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.ending_round(1999968, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(1999968, state) Reporter.starting_round(1999969) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(1999969) Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/4c/a0/01a55415e1d85e10ce46f1a90887fe97e5ccfb7340c0c4023b43d683b542/mkl-2021.1.1-py2.py3-none-manylinux1_x86_64.whl#sha256=9b59d5a78e9d4c9da6c8ef053549c0a44966b8fc318c0f4886c11e3ffed6f769 (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/4c/a0/01a55415e1d85e10ce46f1a90887fe97e5ccfb7340c0c4023b43d683b542/mkl-2021.1.1-py2.py3-none-manylinux1_x86_64.whl#sha256=9b59d5a78e9d4c9da6c8ef053549c0a44966b8fc318c0f4886c11e3ffed6f769 (from https://pypi.org/simple/mkl/)')) Reporter.ending_round(1999969, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(1999969, state) Reporter.starting_round(1999970) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(1999970) Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/77/99/655f03109d3fbc6aa70da25e2d824ada9c26d9d64762bb65dc03cf63a3f7/mkl-2022.0.2-py2.py3-none-manylinux1_x86_64.whl#sha256=c5c79d9287cdcfb650986e3123fdb81e9dc110af90c7eef38afafc11b4224678 (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/77/99/655f03109d3fbc6aa70da25e2d824ada9c26d9d64762bb65dc03cf63a3f7/mkl-2022.0.2-py2.py3-none-manylinux1_x86_64.whl#sha256=c5c79d9287cdcfb650986e3123fdb81e9dc110af90c7eef38afafc11b4224678 (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2022.*'), LinkCandidate('https://files.pythonhosted.org/packages/77/99/655f03109d3fbc6aa70da25e2d824ada9c26d9d64762bb65dc03cf63a3f7/mkl-2022.0.2-py2.py3-none-manylinux1_x86_64.whl#sha256=c5c79d9287cdcfb650986e3123fdb81e9dc110af90c7eef38afafc11b4224678 (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2022.*'), LinkCandidate('https://files.pythonhosted.org/packages/77/99/655f03109d3fbc6aa70da25e2d824ada9c26d9d64762bb65dc03cf63a3f7/mkl-2022.0.2-py2.py3-none-manylinux1_x86_64.whl#sha256=c5c79d9287cdcfb650986e3123fdb81e9dc110af90c7eef38afafc11b4224678 (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/36/4a/8d6a6de4d280c99e9d84a1bf806cc4198d30bcf017a61015df1e74fe4102/mkl-2022.0.1-py2.py3-none-manylinux1_x86_64.whl#sha256=194571f0cff3b068573c22516b27621a926ee633742f6b3225460facf166cf2f (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/36/4a/8d6a6de4d280c99e9d84a1bf806cc4198d30bcf017a61015df1e74fe4102/mkl-2022.0.1-py2.py3-none-manylinux1_x86_64.whl#sha256=194571f0cff3b068573c22516b27621a926ee633742f6b3225460facf166cf2f (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2022.*'), LinkCandidate('https://files.pythonhosted.org/packages/36/4a/8d6a6de4d280c99e9d84a1bf806cc4198d30bcf017a61015df1e74fe4102/mkl-2022.0.1-py2.py3-none-manylinux1_x86_64.whl#sha256=194571f0cff3b068573c22516b27621a926ee633742f6b3225460facf166cf2f (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2022.*'), LinkCandidate('https://files.pythonhosted.org/packages/36/4a/8d6a6de4d280c99e9d84a1bf806cc4198d30bcf017a61015df1e74fe4102/mkl-2022.0.1-py2.py3-none-manylinux1_x86_64.whl#sha256=194571f0cff3b068573c22516b27621a926ee633742f6b3225460facf166cf2f (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('intel-openmp'), LinkCandidate('https://files.pythonhosted.org/packages/9b/98/c892b77b755cb0c53491eabc88c49451a92e36fa5c5baf578e77b91ee31d/mkl-2019.0-py2.py3-none-manylinux1_x86_64.whl#sha256=065e3c415029da2b2cdf2097cecb05f67e834354b358448aca683da7f4e3d344 (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('intel-openmp'), LinkCandidate('https://files.pythonhosted.org/packages/9b/98/c892b77b755cb0c53491eabc88c49451a92e36fa5c5baf578e77b91ee31d/mkl-2019.0-py2.py3-none-manylinux1_x86_64.whl#sha256=065e3c415029da2b2cdf2097cecb05f67e834354b358448aca683da7f4e3d344 (from https://pypi.org/simple/mkl/)')) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/9b/98/c892b77b755cb0c53491eabc88c49451a92e36fa5c5baf578e77b91ee31d/mkl-2019.0-py2.py3-none-manylinux1_x86_64.whl#sha256=065e3c415029da2b2cdf2097cecb05f67e834354b358448aca683da7f4e3d344 (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/9b/98/c892b77b755cb0c53491eabc88c49451a92e36fa5c5baf578e77b91ee31d/mkl-2019.0-py2.py3-none-manylinux1_x86_64.whl#sha256=065e3c415029da2b2cdf2097cecb05f67e834354b358448aca683da7f4e3d344 (from https://pypi.org/simple/mkl/)')) Reporter.ending_round(1999970, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(1999970, state) Reporter.starting_round(1999971) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(1999971) Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('numpy>=1.16'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy>=1.16'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.ending_round(1999971, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(1999971, state) Reporter.starting_round(1999972) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(1999972) Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.ending_round(1999972, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(1999972, state) Reporter.starting_round(1999973) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(1999973) Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/9b/98/c892b77b755cb0c53491eabc88c49451a92e36fa5c5baf578e77b91ee31d/mkl-2019.0-py2.py3-none-manylinux1_x86_64.whl#sha256=065e3c415029da2b2cdf2097cecb05f67e834354b358448aca683da7f4e3d344 (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/9b/98/c892b77b755cb0c53491eabc88c49451a92e36fa5c5baf578e77b91ee31d/mkl-2019.0-py2.py3-none-manylinux1_x86_64.whl#sha256=065e3c415029da2b2cdf2097cecb05f67e834354b358448aca683da7f4e3d344 (from https://pypi.org/simple/mkl/)')) Reporter.ending_round(1999973, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(1999973, state) Reporter.starting_round(1999974) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(1999974) Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/77/99/655f03109d3fbc6aa70da25e2d824ada9c26d9d64762bb65dc03cf63a3f7/mkl-2022.0.2-py2.py3-none-manylinux1_x86_64.whl#sha256=c5c79d9287cdcfb650986e3123fdb81e9dc110af90c7eef38afafc11b4224678 (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/77/99/655f03109d3fbc6aa70da25e2d824ada9c26d9d64762bb65dc03cf63a3f7/mkl-2022.0.2-py2.py3-none-manylinux1_x86_64.whl#sha256=c5c79d9287cdcfb650986e3123fdb81e9dc110af90c7eef38afafc11b4224678 (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2022.*'), LinkCandidate('https://files.pythonhosted.org/packages/77/99/655f03109d3fbc6aa70da25e2d824ada9c26d9d64762bb65dc03cf63a3f7/mkl-2022.0.2-py2.py3-none-manylinux1_x86_64.whl#sha256=c5c79d9287cdcfb650986e3123fdb81e9dc110af90c7eef38afafc11b4224678 (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2022.*'), LinkCandidate('https://files.pythonhosted.org/packages/77/99/655f03109d3fbc6aa70da25e2d824ada9c26d9d64762bb65dc03cf63a3f7/mkl-2022.0.2-py2.py3-none-manylinux1_x86_64.whl#sha256=c5c79d9287cdcfb650986e3123fdb81e9dc110af90c7eef38afafc11b4224678 (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/36/4a/8d6a6de4d280c99e9d84a1bf806cc4198d30bcf017a61015df1e74fe4102/mkl-2022.0.1-py2.py3-none-manylinux1_x86_64.whl#sha256=194571f0cff3b068573c22516b27621a926ee633742f6b3225460facf166cf2f (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/36/4a/8d6a6de4d280c99e9d84a1bf806cc4198d30bcf017a61015df1e74fe4102/mkl-2022.0.1-py2.py3-none-manylinux1_x86_64.whl#sha256=194571f0cff3b068573c22516b27621a926ee633742f6b3225460facf166cf2f (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2022.*'), LinkCandidate('https://files.pythonhosted.org/packages/36/4a/8d6a6de4d280c99e9d84a1bf806cc4198d30bcf017a61015df1e74fe4102/mkl-2022.0.1-py2.py3-none-manylinux1_x86_64.whl#sha256=194571f0cff3b068573c22516b27621a926ee633742f6b3225460facf166cf2f (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2022.*'), LinkCandidate('https://files.pythonhosted.org/packages/36/4a/8d6a6de4d280c99e9d84a1bf806cc4198d30bcf017a61015df1e74fe4102/mkl-2022.0.1-py2.py3-none-manylinux1_x86_64.whl#sha256=194571f0cff3b068573c22516b27621a926ee633742f6b3225460facf166cf2f (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2018.0.3'), LinkCandidate('https://files.pythonhosted.org/packages/42/65/a761991d954021ce8dbf70fcb7dd52bc8e0c2cd330b6a8c7de5580582483/mkl-2018.0.3-py2.py3-none-manylinux1_x86_64.whl#sha256=e569d9d1c53f1ee1d02cfb7dc68bac98480bb8fdb27703729d93e21a4c4462ae (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2018.0.3'), LinkCandidate('https://files.pythonhosted.org/packages/42/65/a761991d954021ce8dbf70fcb7dd52bc8e0c2cd330b6a8c7de5580582483/mkl-2018.0.3-py2.py3-none-manylinux1_x86_64.whl#sha256=e569d9d1c53f1ee1d02cfb7dc68bac98480bb8fdb27703729d93e21a4c4462ae (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2018.0.0'), LinkCandidate('https://files.pythonhosted.org/packages/67/0c/57e1874f682b16990b62f446385b2ea8e402fabc6b51ba837a8a96834131/mkl-2018.0.0-py2.py3-none-manylinux1_x86_64.whl#sha256=168a0aff44d3ae0314d658149d23f20dc533604f7f2df741d7695c052679b6cb (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2018.0.0'), LinkCandidate('https://files.pythonhosted.org/packages/67/0c/57e1874f682b16990b62f446385b2ea8e402fabc6b51ba837a8a96834131/mkl-2018.0.0-py2.py3-none-manylinux1_x86_64.whl#sha256=168a0aff44d3ae0314d658149d23f20dc533604f7f2df741d7695c052679b6cb (from https://pypi.org/simple/mkl/)')) Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/b6/30/7dc21641c3d5d30ccf7d2025bfe495014c5d58d4802d84b987e15f15354e/tbb-2021.4.0-py2.py3-none-manylinux1_x86_64.whl#sha256=eb573be447cf878c3540d181a1187e49849ec460b9c4be9a92fea1978841485d (from https://pypi.org/simple/tbb/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/b6/30/7dc21641c3d5d30ccf7d2025bfe495014c5d58d4802d84b987e15f15354e/tbb-2021.4.0-py2.py3-none-manylinux1_x86_64.whl#sha256=eb573be447cf878c3540d181a1187e49849ec460b9c4be9a92fea1978841485d (from https://pypi.org/simple/tbb/)')) Reporter.ending_round(1999974, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(1999974, state) Reporter.starting_round(1999975) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(1999975) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/d9/d2/405b466a345dddba90db0f0241fbaf0580665a82bad5a712aee31a0d7d94/tbb-2021.3.0-py2.py3-none-manylinux1_x86_64.whl#sha256=4ac221b0a7ab02a41fdf3d6d973d920cf6d34263a50be09b602dcf73c043de6a (from https://pypi.org/simple/tbb/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/d9/d2/405b466a345dddba90db0f0241fbaf0580665a82bad5a712aee31a0d7d94/tbb-2021.3.0-py2.py3-none-manylinux1_x86_64.whl#sha256=4ac221b0a7ab02a41fdf3d6d973d920cf6d34263a50be09b602dcf73c043de6a (from https://pypi.org/simple/tbb/)')) Reporter.ending_round(1999975, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(1999975, state) Reporter.starting_round(1999976) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(1999976) Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/77/99/655f03109d3fbc6aa70da25e2d824ada9c26d9d64762bb65dc03cf63a3f7/mkl-2022.0.2-py2.py3-none-manylinux1_x86_64.whl#sha256=c5c79d9287cdcfb650986e3123fdb81e9dc110af90c7eef38afafc11b4224678 (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/77/99/655f03109d3fbc6aa70da25e2d824ada9c26d9d64762bb65dc03cf63a3f7/mkl-2022.0.2-py2.py3-none-manylinux1_x86_64.whl#sha256=c5c79d9287cdcfb650986e3123fdb81e9dc110af90c7eef38afafc11b4224678 (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2022.*'), LinkCandidate('https://files.pythonhosted.org/packages/77/99/655f03109d3fbc6aa70da25e2d824ada9c26d9d64762bb65dc03cf63a3f7/mkl-2022.0.2-py2.py3-none-manylinux1_x86_64.whl#sha256=c5c79d9287cdcfb650986e3123fdb81e9dc110af90c7eef38afafc11b4224678 (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2022.*'), LinkCandidate('https://files.pythonhosted.org/packages/77/99/655f03109d3fbc6aa70da25e2d824ada9c26d9d64762bb65dc03cf63a3f7/mkl-2022.0.2-py2.py3-none-manylinux1_x86_64.whl#sha256=c5c79d9287cdcfb650986e3123fdb81e9dc110af90c7eef38afafc11b4224678 (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/36/4a/8d6a6de4d280c99e9d84a1bf806cc4198d30bcf017a61015df1e74fe4102/mkl-2022.0.1-py2.py3-none-manylinux1_x86_64.whl#sha256=194571f0cff3b068573c22516b27621a926ee633742f6b3225460facf166cf2f (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/36/4a/8d6a6de4d280c99e9d84a1bf806cc4198d30bcf017a61015df1e74fe4102/mkl-2022.0.1-py2.py3-none-manylinux1_x86_64.whl#sha256=194571f0cff3b068573c22516b27621a926ee633742f6b3225460facf166cf2f (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2022.*'), LinkCandidate('https://files.pythonhosted.org/packages/36/4a/8d6a6de4d280c99e9d84a1bf806cc4198d30bcf017a61015df1e74fe4102/mkl-2022.0.1-py2.py3-none-manylinux1_x86_64.whl#sha256=194571f0cff3b068573c22516b27621a926ee633742f6b3225460facf166cf2f (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2022.*'), LinkCandidate('https://files.pythonhosted.org/packages/36/4a/8d6a6de4d280c99e9d84a1bf806cc4198d30bcf017a61015df1e74fe4102/mkl-2022.0.1-py2.py3-none-manylinux1_x86_64.whl#sha256=194571f0cff3b068573c22516b27621a926ee633742f6b3225460facf166cf2f (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/68/08/e5fe13998ed4c08300cea8cd14e249bf17340b1dd6f5b859ed00d3914125/mkl-2021.4.0-py2.py3-none-manylinux1_x86_64.whl#sha256=398dbf2b0d12acaf54117a5210e8f191827f373d362d796091d161f610c1ebfb (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/68/08/e5fe13998ed4c08300cea8cd14e249bf17340b1dd6f5b859ed00d3914125/mkl-2021.4.0-py2.py3-none-manylinux1_x86_64.whl#sha256=398dbf2b0d12acaf54117a5210e8f191827f373d362d796091d161f610c1ebfb (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/68/08/e5fe13998ed4c08300cea8cd14e249bf17340b1dd6f5b859ed00d3914125/mkl-2021.4.0-py2.py3-none-manylinux1_x86_64.whl#sha256=398dbf2b0d12acaf54117a5210e8f191827f373d362d796091d161f610c1ebfb (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/68/08/e5fe13998ed4c08300cea8cd14e249bf17340b1dd6f5b859ed00d3914125/mkl-2021.4.0-py2.py3-none-manylinux1_x86_64.whl#sha256=398dbf2b0d12acaf54117a5210e8f191827f373d362d796091d161f610c1ebfb (from https://pypi.org/simple/mkl/)')) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/68/08/e5fe13998ed4c08300cea8cd14e249bf17340b1dd6f5b859ed00d3914125/mkl-2021.4.0-py2.py3-none-manylinux1_x86_64.whl#sha256=398dbf2b0d12acaf54117a5210e8f191827f373d362d796091d161f610c1ebfb (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/68/08/e5fe13998ed4c08300cea8cd14e249bf17340b1dd6f5b859ed00d3914125/mkl-2021.4.0-py2.py3-none-manylinux1_x86_64.whl#sha256=398dbf2b0d12acaf54117a5210e8f191827f373d362d796091d161f610c1ebfb (from https://pypi.org/simple/mkl/)')) Reporter.ending_round(1999976, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(1999976, state) Reporter.starting_round(1999977) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(1999977) Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('numpy>=1.16'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy>=1.16'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.ending_round(1999977, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(1999977, state) Reporter.starting_round(1999978) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(1999978) Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.ending_round(1999978, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(1999978, state) Reporter.starting_round(1999979) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(1999979) Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/68/08/e5fe13998ed4c08300cea8cd14e249bf17340b1dd6f5b859ed00d3914125/mkl-2021.4.0-py2.py3-none-manylinux1_x86_64.whl#sha256=398dbf2b0d12acaf54117a5210e8f191827f373d362d796091d161f610c1ebfb (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/68/08/e5fe13998ed4c08300cea8cd14e249bf17340b1dd6f5b859ed00d3914125/mkl-2021.4.0-py2.py3-none-manylinux1_x86_64.whl#sha256=398dbf2b0d12acaf54117a5210e8f191827f373d362d796091d161f610c1ebfb (from https://pypi.org/simple/mkl/)')) Reporter.ending_round(1999979, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(1999979, state) Reporter.starting_round(1999980) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(1999980) Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/77/99/655f03109d3fbc6aa70da25e2d824ada9c26d9d64762bb65dc03cf63a3f7/mkl-2022.0.2-py2.py3-none-manylinux1_x86_64.whl#sha256=c5c79d9287cdcfb650986e3123fdb81e9dc110af90c7eef38afafc11b4224678 (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/77/99/655f03109d3fbc6aa70da25e2d824ada9c26d9d64762bb65dc03cf63a3f7/mkl-2022.0.2-py2.py3-none-manylinux1_x86_64.whl#sha256=c5c79d9287cdcfb650986e3123fdb81e9dc110af90c7eef38afafc11b4224678 (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2022.*'), LinkCandidate('https://files.pythonhosted.org/packages/77/99/655f03109d3fbc6aa70da25e2d824ada9c26d9d64762bb65dc03cf63a3f7/mkl-2022.0.2-py2.py3-none-manylinux1_x86_64.whl#sha256=c5c79d9287cdcfb650986e3123fdb81e9dc110af90c7eef38afafc11b4224678 (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2022.*'), LinkCandidate('https://files.pythonhosted.org/packages/77/99/655f03109d3fbc6aa70da25e2d824ada9c26d9d64762bb65dc03cf63a3f7/mkl-2022.0.2-py2.py3-none-manylinux1_x86_64.whl#sha256=c5c79d9287cdcfb650986e3123fdb81e9dc110af90c7eef38afafc11b4224678 (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/36/4a/8d6a6de4d280c99e9d84a1bf806cc4198d30bcf017a61015df1e74fe4102/mkl-2022.0.1-py2.py3-none-manylinux1_x86_64.whl#sha256=194571f0cff3b068573c22516b27621a926ee633742f6b3225460facf166cf2f (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/36/4a/8d6a6de4d280c99e9d84a1bf806cc4198d30bcf017a61015df1e74fe4102/mkl-2022.0.1-py2.py3-none-manylinux1_x86_64.whl#sha256=194571f0cff3b068573c22516b27621a926ee633742f6b3225460facf166cf2f (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2022.*'), LinkCandidate('https://files.pythonhosted.org/packages/36/4a/8d6a6de4d280c99e9d84a1bf806cc4198d30bcf017a61015df1e74fe4102/mkl-2022.0.1-py2.py3-none-manylinux1_x86_64.whl#sha256=194571f0cff3b068573c22516b27621a926ee633742f6b3225460facf166cf2f (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2022.*'), LinkCandidate('https://files.pythonhosted.org/packages/36/4a/8d6a6de4d280c99e9d84a1bf806cc4198d30bcf017a61015df1e74fe4102/mkl-2022.0.1-py2.py3-none-manylinux1_x86_64.whl#sha256=194571f0cff3b068573c22516b27621a926ee633742f6b3225460facf166cf2f (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/6a/e8/7cc18a37be62077c47b37192126827a441bf2625a84efd637cea91723873/mkl-2021.3.0-py2.py3-none-manylinux1_x86_64.whl#sha256=20c74e9bc659b67006a0e1339f0ee022afe43236c05156894bcef2cad8d4c8a9 (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/6a/e8/7cc18a37be62077c47b37192126827a441bf2625a84efd637cea91723873/mkl-2021.3.0-py2.py3-none-manylinux1_x86_64.whl#sha256=20c74e9bc659b67006a0e1339f0ee022afe43236c05156894bcef2cad8d4c8a9 (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/6a/e8/7cc18a37be62077c47b37192126827a441bf2625a84efd637cea91723873/mkl-2021.3.0-py2.py3-none-manylinux1_x86_64.whl#sha256=20c74e9bc659b67006a0e1339f0ee022afe43236c05156894bcef2cad8d4c8a9 (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/6a/e8/7cc18a37be62077c47b37192126827a441bf2625a84efd637cea91723873/mkl-2021.3.0-py2.py3-none-manylinux1_x86_64.whl#sha256=20c74e9bc659b67006a0e1339f0ee022afe43236c05156894bcef2cad8d4c8a9 (from https://pypi.org/simple/mkl/)')) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/6a/e8/7cc18a37be62077c47b37192126827a441bf2625a84efd637cea91723873/mkl-2021.3.0-py2.py3-none-manylinux1_x86_64.whl#sha256=20c74e9bc659b67006a0e1339f0ee022afe43236c05156894bcef2cad8d4c8a9 (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/6a/e8/7cc18a37be62077c47b37192126827a441bf2625a84efd637cea91723873/mkl-2021.3.0-py2.py3-none-manylinux1_x86_64.whl#sha256=20c74e9bc659b67006a0e1339f0ee022afe43236c05156894bcef2cad8d4c8a9 (from https://pypi.org/simple/mkl/)')) Reporter.ending_round(1999980, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(1999980, state) Reporter.starting_round(1999981) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(1999981) Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('numpy>=1.16'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy>=1.16'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.ending_round(1999981, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(1999981, state) Reporter.starting_round(1999982) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(1999982) Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.ending_round(1999982, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(1999982, state) Reporter.starting_round(1999983) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(1999983) Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/6a/e8/7cc18a37be62077c47b37192126827a441bf2625a84efd637cea91723873/mkl-2021.3.0-py2.py3-none-manylinux1_x86_64.whl#sha256=20c74e9bc659b67006a0e1339f0ee022afe43236c05156894bcef2cad8d4c8a9 (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/6a/e8/7cc18a37be62077c47b37192126827a441bf2625a84efd637cea91723873/mkl-2021.3.0-py2.py3-none-manylinux1_x86_64.whl#sha256=20c74e9bc659b67006a0e1339f0ee022afe43236c05156894bcef2cad8d4c8a9 (from https://pypi.org/simple/mkl/)')) Reporter.ending_round(1999983, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(1999983, state) Reporter.starting_round(1999984) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(1999984) Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/77/99/655f03109d3fbc6aa70da25e2d824ada9c26d9d64762bb65dc03cf63a3f7/mkl-2022.0.2-py2.py3-none-manylinux1_x86_64.whl#sha256=c5c79d9287cdcfb650986e3123fdb81e9dc110af90c7eef38afafc11b4224678 (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/77/99/655f03109d3fbc6aa70da25e2d824ada9c26d9d64762bb65dc03cf63a3f7/mkl-2022.0.2-py2.py3-none-manylinux1_x86_64.whl#sha256=c5c79d9287cdcfb650986e3123fdb81e9dc110af90c7eef38afafc11b4224678 (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2022.*'), LinkCandidate('https://files.pythonhosted.org/packages/77/99/655f03109d3fbc6aa70da25e2d824ada9c26d9d64762bb65dc03cf63a3f7/mkl-2022.0.2-py2.py3-none-manylinux1_x86_64.whl#sha256=c5c79d9287cdcfb650986e3123fdb81e9dc110af90c7eef38afafc11b4224678 (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2022.*'), LinkCandidate('https://files.pythonhosted.org/packages/77/99/655f03109d3fbc6aa70da25e2d824ada9c26d9d64762bb65dc03cf63a3f7/mkl-2022.0.2-py2.py3-none-manylinux1_x86_64.whl#sha256=c5c79d9287cdcfb650986e3123fdb81e9dc110af90c7eef38afafc11b4224678 (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/36/4a/8d6a6de4d280c99e9d84a1bf806cc4198d30bcf017a61015df1e74fe4102/mkl-2022.0.1-py2.py3-none-manylinux1_x86_64.whl#sha256=194571f0cff3b068573c22516b27621a926ee633742f6b3225460facf166cf2f (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/36/4a/8d6a6de4d280c99e9d84a1bf806cc4198d30bcf017a61015df1e74fe4102/mkl-2022.0.1-py2.py3-none-manylinux1_x86_64.whl#sha256=194571f0cff3b068573c22516b27621a926ee633742f6b3225460facf166cf2f (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2022.*'), LinkCandidate('https://files.pythonhosted.org/packages/36/4a/8d6a6de4d280c99e9d84a1bf806cc4198d30bcf017a61015df1e74fe4102/mkl-2022.0.1-py2.py3-none-manylinux1_x86_64.whl#sha256=194571f0cff3b068573c22516b27621a926ee633742f6b3225460facf166cf2f (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2022.*'), LinkCandidate('https://files.pythonhosted.org/packages/36/4a/8d6a6de4d280c99e9d84a1bf806cc4198d30bcf017a61015df1e74fe4102/mkl-2022.0.1-py2.py3-none-manylinux1_x86_64.whl#sha256=194571f0cff3b068573c22516b27621a926ee633742f6b3225460facf166cf2f (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/a1/47/6510535868ae57b223189d69416076f945578372559ff04f7623161f0d92/mkl-2021.2.0-py2.py3-none-manylinux1_x86_64.whl#sha256=91f175926b364c5bb8bb39c160ebd85ffb0fe0e6a5118f7a9773b7ea871163f0 (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/a1/47/6510535868ae57b223189d69416076f945578372559ff04f7623161f0d92/mkl-2021.2.0-py2.py3-none-manylinux1_x86_64.whl#sha256=91f175926b364c5bb8bb39c160ebd85ffb0fe0e6a5118f7a9773b7ea871163f0 (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/a1/47/6510535868ae57b223189d69416076f945578372559ff04f7623161f0d92/mkl-2021.2.0-py2.py3-none-manylinux1_x86_64.whl#sha256=91f175926b364c5bb8bb39c160ebd85ffb0fe0e6a5118f7a9773b7ea871163f0 (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/a1/47/6510535868ae57b223189d69416076f945578372559ff04f7623161f0d92/mkl-2021.2.0-py2.py3-none-manylinux1_x86_64.whl#sha256=91f175926b364c5bb8bb39c160ebd85ffb0fe0e6a5118f7a9773b7ea871163f0 (from https://pypi.org/simple/mkl/)')) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/a1/47/6510535868ae57b223189d69416076f945578372559ff04f7623161f0d92/mkl-2021.2.0-py2.py3-none-manylinux1_x86_64.whl#sha256=91f175926b364c5bb8bb39c160ebd85ffb0fe0e6a5118f7a9773b7ea871163f0 (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/a1/47/6510535868ae57b223189d69416076f945578372559ff04f7623161f0d92/mkl-2021.2.0-py2.py3-none-manylinux1_x86_64.whl#sha256=91f175926b364c5bb8bb39c160ebd85ffb0fe0e6a5118f7a9773b7ea871163f0 (from https://pypi.org/simple/mkl/)')) Reporter.ending_round(1999984, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(1999984, state) Reporter.starting_round(1999985) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(1999985) Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('numpy>=1.16'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy>=1.16'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.ending_round(1999985, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(1999985, state) Reporter.starting_round(1999986) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(1999986) Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.ending_round(1999986, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(1999986, state) Reporter.starting_round(1999987) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(1999987) Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/a1/47/6510535868ae57b223189d69416076f945578372559ff04f7623161f0d92/mkl-2021.2.0-py2.py3-none-manylinux1_x86_64.whl#sha256=91f175926b364c5bb8bb39c160ebd85ffb0fe0e6a5118f7a9773b7ea871163f0 (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/a1/47/6510535868ae57b223189d69416076f945578372559ff04f7623161f0d92/mkl-2021.2.0-py2.py3-none-manylinux1_x86_64.whl#sha256=91f175926b364c5bb8bb39c160ebd85ffb0fe0e6a5118f7a9773b7ea871163f0 (from https://pypi.org/simple/mkl/)')) Reporter.ending_round(1999987, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(1999987, state) Reporter.starting_round(1999988) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(1999988) Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/77/99/655f03109d3fbc6aa70da25e2d824ada9c26d9d64762bb65dc03cf63a3f7/mkl-2022.0.2-py2.py3-none-manylinux1_x86_64.whl#sha256=c5c79d9287cdcfb650986e3123fdb81e9dc110af90c7eef38afafc11b4224678 (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/77/99/655f03109d3fbc6aa70da25e2d824ada9c26d9d64762bb65dc03cf63a3f7/mkl-2022.0.2-py2.py3-none-manylinux1_x86_64.whl#sha256=c5c79d9287cdcfb650986e3123fdb81e9dc110af90c7eef38afafc11b4224678 (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2022.*'), LinkCandidate('https://files.pythonhosted.org/packages/77/99/655f03109d3fbc6aa70da25e2d824ada9c26d9d64762bb65dc03cf63a3f7/mkl-2022.0.2-py2.py3-none-manylinux1_x86_64.whl#sha256=c5c79d9287cdcfb650986e3123fdb81e9dc110af90c7eef38afafc11b4224678 (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2022.*'), LinkCandidate('https://files.pythonhosted.org/packages/77/99/655f03109d3fbc6aa70da25e2d824ada9c26d9d64762bb65dc03cf63a3f7/mkl-2022.0.2-py2.py3-none-manylinux1_x86_64.whl#sha256=c5c79d9287cdcfb650986e3123fdb81e9dc110af90c7eef38afafc11b4224678 (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/36/4a/8d6a6de4d280c99e9d84a1bf806cc4198d30bcf017a61015df1e74fe4102/mkl-2022.0.1-py2.py3-none-manylinux1_x86_64.whl#sha256=194571f0cff3b068573c22516b27621a926ee633742f6b3225460facf166cf2f (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/36/4a/8d6a6de4d280c99e9d84a1bf806cc4198d30bcf017a61015df1e74fe4102/mkl-2022.0.1-py2.py3-none-manylinux1_x86_64.whl#sha256=194571f0cff3b068573c22516b27621a926ee633742f6b3225460facf166cf2f (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2022.*'), LinkCandidate('https://files.pythonhosted.org/packages/36/4a/8d6a6de4d280c99e9d84a1bf806cc4198d30bcf017a61015df1e74fe4102/mkl-2022.0.1-py2.py3-none-manylinux1_x86_64.whl#sha256=194571f0cff3b068573c22516b27621a926ee633742f6b3225460facf166cf2f (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2022.*'), LinkCandidate('https://files.pythonhosted.org/packages/36/4a/8d6a6de4d280c99e9d84a1bf806cc4198d30bcf017a61015df1e74fe4102/mkl-2022.0.1-py2.py3-none-manylinux1_x86_64.whl#sha256=194571f0cff3b068573c22516b27621a926ee633742f6b3225460facf166cf2f (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/4c/a0/01a55415e1d85e10ce46f1a90887fe97e5ccfb7340c0c4023b43d683b542/mkl-2021.1.1-py2.py3-none-manylinux1_x86_64.whl#sha256=9b59d5a78e9d4c9da6c8ef053549c0a44966b8fc318c0f4886c11e3ffed6f769 (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/4c/a0/01a55415e1d85e10ce46f1a90887fe97e5ccfb7340c0c4023b43d683b542/mkl-2021.1.1-py2.py3-none-manylinux1_x86_64.whl#sha256=9b59d5a78e9d4c9da6c8ef053549c0a44966b8fc318c0f4886c11e3ffed6f769 (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/4c/a0/01a55415e1d85e10ce46f1a90887fe97e5ccfb7340c0c4023b43d683b542/mkl-2021.1.1-py2.py3-none-manylinux1_x86_64.whl#sha256=9b59d5a78e9d4c9da6c8ef053549c0a44966b8fc318c0f4886c11e3ffed6f769 (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/4c/a0/01a55415e1d85e10ce46f1a90887fe97e5ccfb7340c0c4023b43d683b542/mkl-2021.1.1-py2.py3-none-manylinux1_x86_64.whl#sha256=9b59d5a78e9d4c9da6c8ef053549c0a44966b8fc318c0f4886c11e3ffed6f769 (from https://pypi.org/simple/mkl/)')) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/4c/a0/01a55415e1d85e10ce46f1a90887fe97e5ccfb7340c0c4023b43d683b542/mkl-2021.1.1-py2.py3-none-manylinux1_x86_64.whl#sha256=9b59d5a78e9d4c9da6c8ef053549c0a44966b8fc318c0f4886c11e3ffed6f769 (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/4c/a0/01a55415e1d85e10ce46f1a90887fe97e5ccfb7340c0c4023b43d683b542/mkl-2021.1.1-py2.py3-none-manylinux1_x86_64.whl#sha256=9b59d5a78e9d4c9da6c8ef053549c0a44966b8fc318c0f4886c11e3ffed6f769 (from https://pypi.org/simple/mkl/)')) Reporter.ending_round(1999988, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(1999988, state) Reporter.starting_round(1999989) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(1999989) Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('numpy>=1.16'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy>=1.16'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.ending_round(1999989, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(1999989, state) Reporter.starting_round(1999990) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(1999990) Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.ending_round(1999990, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(1999990, state) Reporter.starting_round(1999991) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(1999991) Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/4c/a0/01a55415e1d85e10ce46f1a90887fe97e5ccfb7340c0c4023b43d683b542/mkl-2021.1.1-py2.py3-none-manylinux1_x86_64.whl#sha256=9b59d5a78e9d4c9da6c8ef053549c0a44966b8fc318c0f4886c11e3ffed6f769 (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/4c/a0/01a55415e1d85e10ce46f1a90887fe97e5ccfb7340c0c4023b43d683b542/mkl-2021.1.1-py2.py3-none-manylinux1_x86_64.whl#sha256=9b59d5a78e9d4c9da6c8ef053549c0a44966b8fc318c0f4886c11e3ffed6f769 (from https://pypi.org/simple/mkl/)')) Reporter.ending_round(1999991, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(1999991, state) Reporter.starting_round(1999992) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(1999992) Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/77/99/655f03109d3fbc6aa70da25e2d824ada9c26d9d64762bb65dc03cf63a3f7/mkl-2022.0.2-py2.py3-none-manylinux1_x86_64.whl#sha256=c5c79d9287cdcfb650986e3123fdb81e9dc110af90c7eef38afafc11b4224678 (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/77/99/655f03109d3fbc6aa70da25e2d824ada9c26d9d64762bb65dc03cf63a3f7/mkl-2022.0.2-py2.py3-none-manylinux1_x86_64.whl#sha256=c5c79d9287cdcfb650986e3123fdb81e9dc110af90c7eef38afafc11b4224678 (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2022.*'), LinkCandidate('https://files.pythonhosted.org/packages/77/99/655f03109d3fbc6aa70da25e2d824ada9c26d9d64762bb65dc03cf63a3f7/mkl-2022.0.2-py2.py3-none-manylinux1_x86_64.whl#sha256=c5c79d9287cdcfb650986e3123fdb81e9dc110af90c7eef38afafc11b4224678 (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2022.*'), LinkCandidate('https://files.pythonhosted.org/packages/77/99/655f03109d3fbc6aa70da25e2d824ada9c26d9d64762bb65dc03cf63a3f7/mkl-2022.0.2-py2.py3-none-manylinux1_x86_64.whl#sha256=c5c79d9287cdcfb650986e3123fdb81e9dc110af90c7eef38afafc11b4224678 (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/36/4a/8d6a6de4d280c99e9d84a1bf806cc4198d30bcf017a61015df1e74fe4102/mkl-2022.0.1-py2.py3-none-manylinux1_x86_64.whl#sha256=194571f0cff3b068573c22516b27621a926ee633742f6b3225460facf166cf2f (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/36/4a/8d6a6de4d280c99e9d84a1bf806cc4198d30bcf017a61015df1e74fe4102/mkl-2022.0.1-py2.py3-none-manylinux1_x86_64.whl#sha256=194571f0cff3b068573c22516b27621a926ee633742f6b3225460facf166cf2f (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2022.*'), LinkCandidate('https://files.pythonhosted.org/packages/36/4a/8d6a6de4d280c99e9d84a1bf806cc4198d30bcf017a61015df1e74fe4102/mkl-2022.0.1-py2.py3-none-manylinux1_x86_64.whl#sha256=194571f0cff3b068573c22516b27621a926ee633742f6b3225460facf166cf2f (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2022.*'), LinkCandidate('https://files.pythonhosted.org/packages/36/4a/8d6a6de4d280c99e9d84a1bf806cc4198d30bcf017a61015df1e74fe4102/mkl-2022.0.1-py2.py3-none-manylinux1_x86_64.whl#sha256=194571f0cff3b068573c22516b27621a926ee633742f6b3225460facf166cf2f (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('intel-openmp'), LinkCandidate('https://files.pythonhosted.org/packages/9b/98/c892b77b755cb0c53491eabc88c49451a92e36fa5c5baf578e77b91ee31d/mkl-2019.0-py2.py3-none-manylinux1_x86_64.whl#sha256=065e3c415029da2b2cdf2097cecb05f67e834354b358448aca683da7f4e3d344 (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('intel-openmp'), LinkCandidate('https://files.pythonhosted.org/packages/9b/98/c892b77b755cb0c53491eabc88c49451a92e36fa5c5baf578e77b91ee31d/mkl-2019.0-py2.py3-none-manylinux1_x86_64.whl#sha256=065e3c415029da2b2cdf2097cecb05f67e834354b358448aca683da7f4e3d344 (from https://pypi.org/simple/mkl/)')) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/9b/98/c892b77b755cb0c53491eabc88c49451a92e36fa5c5baf578e77b91ee31d/mkl-2019.0-py2.py3-none-manylinux1_x86_64.whl#sha256=065e3c415029da2b2cdf2097cecb05f67e834354b358448aca683da7f4e3d344 (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/9b/98/c892b77b755cb0c53491eabc88c49451a92e36fa5c5baf578e77b91ee31d/mkl-2019.0-py2.py3-none-manylinux1_x86_64.whl#sha256=065e3c415029da2b2cdf2097cecb05f67e834354b358448aca683da7f4e3d344 (from https://pypi.org/simple/mkl/)')) Reporter.ending_round(1999992, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(1999992, state) Reporter.starting_round(1999993) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(1999993) Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('numpy>=1.16'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy>=1.16'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.ending_round(1999993, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(1999993, state) Reporter.starting_round(1999994) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(1999994) Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.ending_round(1999994, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(1999994, state) Reporter.starting_round(1999995) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(1999995) Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/9b/98/c892b77b755cb0c53491eabc88c49451a92e36fa5c5baf578e77b91ee31d/mkl-2019.0-py2.py3-none-manylinux1_x86_64.whl#sha256=065e3c415029da2b2cdf2097cecb05f67e834354b358448aca683da7f4e3d344 (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/9b/98/c892b77b755cb0c53491eabc88c49451a92e36fa5c5baf578e77b91ee31d/mkl-2019.0-py2.py3-none-manylinux1_x86_64.whl#sha256=065e3c415029da2b2cdf2097cecb05f67e834354b358448aca683da7f4e3d344 (from https://pypi.org/simple/mkl/)')) Reporter.ending_round(1999995, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(1999995, state) Reporter.starting_round(1999996) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(1999996) Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/77/99/655f03109d3fbc6aa70da25e2d824ada9c26d9d64762bb65dc03cf63a3f7/mkl-2022.0.2-py2.py3-none-manylinux1_x86_64.whl#sha256=c5c79d9287cdcfb650986e3123fdb81e9dc110af90c7eef38afafc11b4224678 (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/77/99/655f03109d3fbc6aa70da25e2d824ada9c26d9d64762bb65dc03cf63a3f7/mkl-2022.0.2-py2.py3-none-manylinux1_x86_64.whl#sha256=c5c79d9287cdcfb650986e3123fdb81e9dc110af90c7eef38afafc11b4224678 (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2022.*'), LinkCandidate('https://files.pythonhosted.org/packages/77/99/655f03109d3fbc6aa70da25e2d824ada9c26d9d64762bb65dc03cf63a3f7/mkl-2022.0.2-py2.py3-none-manylinux1_x86_64.whl#sha256=c5c79d9287cdcfb650986e3123fdb81e9dc110af90c7eef38afafc11b4224678 (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2022.*'), LinkCandidate('https://files.pythonhosted.org/packages/77/99/655f03109d3fbc6aa70da25e2d824ada9c26d9d64762bb65dc03cf63a3f7/mkl-2022.0.2-py2.py3-none-manylinux1_x86_64.whl#sha256=c5c79d9287cdcfb650986e3123fdb81e9dc110af90c7eef38afafc11b4224678 (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/36/4a/8d6a6de4d280c99e9d84a1bf806cc4198d30bcf017a61015df1e74fe4102/mkl-2022.0.1-py2.py3-none-manylinux1_x86_64.whl#sha256=194571f0cff3b068573c22516b27621a926ee633742f6b3225460facf166cf2f (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/36/4a/8d6a6de4d280c99e9d84a1bf806cc4198d30bcf017a61015df1e74fe4102/mkl-2022.0.1-py2.py3-none-manylinux1_x86_64.whl#sha256=194571f0cff3b068573c22516b27621a926ee633742f6b3225460facf166cf2f (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2022.*'), LinkCandidate('https://files.pythonhosted.org/packages/36/4a/8d6a6de4d280c99e9d84a1bf806cc4198d30bcf017a61015df1e74fe4102/mkl-2022.0.1-py2.py3-none-manylinux1_x86_64.whl#sha256=194571f0cff3b068573c22516b27621a926ee633742f6b3225460facf166cf2f (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2022.*'), LinkCandidate('https://files.pythonhosted.org/packages/36/4a/8d6a6de4d280c99e9d84a1bf806cc4198d30bcf017a61015df1e74fe4102/mkl-2022.0.1-py2.py3-none-manylinux1_x86_64.whl#sha256=194571f0cff3b068573c22516b27621a926ee633742f6b3225460facf166cf2f (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2018.0.3'), LinkCandidate('https://files.pythonhosted.org/packages/42/65/a761991d954021ce8dbf70fcb7dd52bc8e0c2cd330b6a8c7de5580582483/mkl-2018.0.3-py2.py3-none-manylinux1_x86_64.whl#sha256=e569d9d1c53f1ee1d02cfb7dc68bac98480bb8fdb27703729d93e21a4c4462ae (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2018.0.3'), LinkCandidate('https://files.pythonhosted.org/packages/42/65/a761991d954021ce8dbf70fcb7dd52bc8e0c2cd330b6a8c7de5580582483/mkl-2018.0.3-py2.py3-none-manylinux1_x86_64.whl#sha256=e569d9d1c53f1ee1d02cfb7dc68bac98480bb8fdb27703729d93e21a4c4462ae (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2018.0.0'), LinkCandidate('https://files.pythonhosted.org/packages/67/0c/57e1874f682b16990b62f446385b2ea8e402fabc6b51ba837a8a96834131/mkl-2018.0.0-py2.py3-none-manylinux1_x86_64.whl#sha256=168a0aff44d3ae0314d658149d23f20dc533604f7f2df741d7695c052679b6cb (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2018.0.0'), LinkCandidate('https://files.pythonhosted.org/packages/67/0c/57e1874f682b16990b62f446385b2ea8e402fabc6b51ba837a8a96834131/mkl-2018.0.0-py2.py3-none-manylinux1_x86_64.whl#sha256=168a0aff44d3ae0314d658149d23f20dc533604f7f2df741d7695c052679b6cb (from https://pypi.org/simple/mkl/)')) Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/d9/d2/405b466a345dddba90db0f0241fbaf0580665a82bad5a712aee31a0d7d94/tbb-2021.3.0-py2.py3-none-manylinux1_x86_64.whl#sha256=4ac221b0a7ab02a41fdf3d6d973d920cf6d34263a50be09b602dcf73c043de6a (from https://pypi.org/simple/tbb/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/d9/d2/405b466a345dddba90db0f0241fbaf0580665a82bad5a712aee31a0d7d94/tbb-2021.3.0-py2.py3-none-manylinux1_x86_64.whl#sha256=4ac221b0a7ab02a41fdf3d6d973d920cf6d34263a50be09b602dcf73c043de6a (from https://pypi.org/simple/tbb/)')) Reporter.ending_round(1999996, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(1999996, state) Reporter.starting_round(1999997) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(1999997) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/c6/55/bd1f776ede9b86b918e390119461281fcb8a86e1918f0da467dc5aece4a2/tbb-2021.2.0-py2.py3-none-manylinux1_x86_64.whl#sha256=bf54992d1b5d6135620d5f3f2649bf331e2c412a4af00effd35481a9ecb98ee6 (from https://pypi.org/simple/tbb/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/c6/55/bd1f776ede9b86b918e390119461281fcb8a86e1918f0da467dc5aece4a2/tbb-2021.2.0-py2.py3-none-manylinux1_x86_64.whl#sha256=bf54992d1b5d6135620d5f3f2649bf331e2c412a4af00effd35481a9ecb98ee6 (from https://pypi.org/simple/tbb/)')) Reporter.ending_round(1999997, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(1999997, state) Reporter.starting_round(1999998) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(1999998) Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/77/99/655f03109d3fbc6aa70da25e2d824ada9c26d9d64762bb65dc03cf63a3f7/mkl-2022.0.2-py2.py3-none-manylinux1_x86_64.whl#sha256=c5c79d9287cdcfb650986e3123fdb81e9dc110af90c7eef38afafc11b4224678 (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/77/99/655f03109d3fbc6aa70da25e2d824ada9c26d9d64762bb65dc03cf63a3f7/mkl-2022.0.2-py2.py3-none-manylinux1_x86_64.whl#sha256=c5c79d9287cdcfb650986e3123fdb81e9dc110af90c7eef38afafc11b4224678 (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2022.*'), LinkCandidate('https://files.pythonhosted.org/packages/77/99/655f03109d3fbc6aa70da25e2d824ada9c26d9d64762bb65dc03cf63a3f7/mkl-2022.0.2-py2.py3-none-manylinux1_x86_64.whl#sha256=c5c79d9287cdcfb650986e3123fdb81e9dc110af90c7eef38afafc11b4224678 (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2022.*'), LinkCandidate('https://files.pythonhosted.org/packages/77/99/655f03109d3fbc6aa70da25e2d824ada9c26d9d64762bb65dc03cf63a3f7/mkl-2022.0.2-py2.py3-none-manylinux1_x86_64.whl#sha256=c5c79d9287cdcfb650986e3123fdb81e9dc110af90c7eef38afafc11b4224678 (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/36/4a/8d6a6de4d280c99e9d84a1bf806cc4198d30bcf017a61015df1e74fe4102/mkl-2022.0.1-py2.py3-none-manylinux1_x86_64.whl#sha256=194571f0cff3b068573c22516b27621a926ee633742f6b3225460facf166cf2f (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/36/4a/8d6a6de4d280c99e9d84a1bf806cc4198d30bcf017a61015df1e74fe4102/mkl-2022.0.1-py2.py3-none-manylinux1_x86_64.whl#sha256=194571f0cff3b068573c22516b27621a926ee633742f6b3225460facf166cf2f (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2022.*'), LinkCandidate('https://files.pythonhosted.org/packages/36/4a/8d6a6de4d280c99e9d84a1bf806cc4198d30bcf017a61015df1e74fe4102/mkl-2022.0.1-py2.py3-none-manylinux1_x86_64.whl#sha256=194571f0cff3b068573c22516b27621a926ee633742f6b3225460facf166cf2f (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2022.*'), LinkCandidate('https://files.pythonhosted.org/packages/36/4a/8d6a6de4d280c99e9d84a1bf806cc4198d30bcf017a61015df1e74fe4102/mkl-2022.0.1-py2.py3-none-manylinux1_x86_64.whl#sha256=194571f0cff3b068573c22516b27621a926ee633742f6b3225460facf166cf2f (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/68/08/e5fe13998ed4c08300cea8cd14e249bf17340b1dd6f5b859ed00d3914125/mkl-2021.4.0-py2.py3-none-manylinux1_x86_64.whl#sha256=398dbf2b0d12acaf54117a5210e8f191827f373d362d796091d161f610c1ebfb (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('intel-openmp==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/68/08/e5fe13998ed4c08300cea8cd14e249bf17340b1dd6f5b859ed00d3914125/mkl-2021.4.0-py2.py3-none-manylinux1_x86_64.whl#sha256=398dbf2b0d12acaf54117a5210e8f191827f373d362d796091d161f610c1ebfb (from https://pypi.org/simple/mkl/)')) Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/68/08/e5fe13998ed4c08300cea8cd14e249bf17340b1dd6f5b859ed00d3914125/mkl-2021.4.0-py2.py3-none-manylinux1_x86_64.whl#sha256=398dbf2b0d12acaf54117a5210e8f191827f373d362d796091d161f610c1ebfb (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/68/08/e5fe13998ed4c08300cea8cd14e249bf17340b1dd6f5b859ed00d3914125/mkl-2021.4.0-py2.py3-none-manylinux1_x86_64.whl#sha256=398dbf2b0d12acaf54117a5210e8f191827f373d362d796091d161f610c1ebfb (from https://pypi.org/simple/mkl/)')) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/68/08/e5fe13998ed4c08300cea8cd14e249bf17340b1dd6f5b859ed00d3914125/mkl-2021.4.0-py2.py3-none-manylinux1_x86_64.whl#sha256=398dbf2b0d12acaf54117a5210e8f191827f373d362d796091d161f610c1ebfb (from https://pypi.org/simple/mkl/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/68/08/e5fe13998ed4c08300cea8cd14e249bf17340b1dd6f5b859ed00d3914125/mkl-2021.4.0-py2.py3-none-manylinux1_x86_64.whl#sha256=398dbf2b0d12acaf54117a5210e8f191827f373d362d796091d161f610c1ebfb (from https://pypi.org/simple/mkl/)')) Reporter.ending_round(1999998, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(1999998, state) Reporter.starting_round(1999999) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(1999999) Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('dpcpp_cpp_rt'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('numpy>=1.16'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy>=1.16'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.ending_round(1999999, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(1999999, state) Traceback (most recent call last): File "/usr/lib/python3.10/site-packages/pipenv/resolver.py", line 766, in main() File "/usr/lib/python3.10/site-packages/pipenv/resolver.py", line 760, in main _main(parsed.pre, parsed.clear, parsed.verbose, parsed.system, parsed.write, File "/usr/lib/python3.10/site-packages/pipenv/resolver.py", line 743, in _main resolve_packages(pre, clear, verbose, system, write, requirements_dir, packages, dev) File "/usr/lib/python3.10/site-packages/pipenv/resolver.py", line 704, in resolve_packages results, resolver = resolve( File "/usr/lib/python3.10/site-packages/pipenv/resolver.py", line 685, in resolve return resolve_deps( File "/usr/lib/python3.10/site-packages/pipenv/utils.py", line 1377, in resolve_deps results, hashes, markers_lookup, resolver, skipped = actually_resolve_deps( File "/usr/lib/python3.10/site-packages/pipenv/utils.py", line 1106, in actually_resolve_deps resolver.resolve() File "/usr/lib/python3.10/site-packages/pipenv/utils.py", line 882, in resolve results = resolver.resolve(self.constraints, check_supported_wheels=False) File "/usr/lib/python3.10/site-packages/pipenv/patched/notpip/_internal/resolution/resolvelib/resolver.py", line 94, in resolve result = self._result = resolver.resolve( File "/usr/lib/python3.10/site-packages/pipenv/patched/notpip/_vendor/resolvelib/resolvers.py", line 472, in resolve state = resolution.resolve(requirements, max_rounds=max_rounds) File "/usr/lib/python3.10/site-packages/pipenv/patched/notpip/_vendor/resolvelib/resolvers.py", line 383, in resolve raise ResolutionTooDeep(max_rounds) pipenv.patched.notpip._vendor.resolvelib.resolvers.ResolutionTooDeep: 2000000 ```

$ pipenv --support Pipenv version: `'2022.1.8'` Pipenv location: `'/usr/lib/python3.10/site-packages/pipenv'` Python location: `'/usr/bin/python'` Python installations found: - `3.10.2`: `/usr/bin/python` - `3.10.2`: `/usr/bin/python3` - `3.8.12`: `/usr/bin/python3.8` - `2.7.18`: `/usr/bin/python2` - `2.7.18`: `/usr/bin/python2.7` PEP 508 Information: ``` {'implementation_name': 'cpython', 'implementation_version': '3.10.2', 'os_name': 'posix', 'platform_machine': 'x86_64', 'platform_python_implementation': 'CPython', 'platform_release': '5.16.0-arch1-1', 'platform_system': 'Linux', 'platform_version': '#1 SMP PREEMPT Mon, 10 Jan 2022 20:11:47 +0000', 'python_full_version': '3.10.2', 'python_version': '3.10', 'sys_platform': 'linux'} ``` System environment variables: - `SHELL` - `PIPENV_VENV_IN_PROJECT` - `LESS` - `NVM_INC` - `LANGUAGE` - `DOTNET_ROOT` - `LARCH_PATH` - `EDITOR` - `ANDROID_NDK` - `PWD` - `LOGNAME` - `XDG_SESSION_TYPE` - `MOTD_SHOWN` - `HOME` - `LCLIMPORTDIR` - `LANG` - `GITHUB_TOKEN` - `LS_COLORS` - `PYTHONSTARTUP` - `SSH_CONNECTION` - `ANDROID_NDK_HOME` - `DOTNET_BUNDLE_EXTRACT_BASE_DIR` - `JONPROMPT` - `NVM_DIR` - `XDG_SESSION_CLASS` - `ANDROID_HOME` - `TERM` - `KIRBY_IDX` - `USER` - `DISPLAY` - `SHLVL` - `NVM_CD_FLAGS` - `PAGER` - `LC_MESSAGES` - `HGUSER` - `XDG_SESSION_ID` - `MOZ_PLUGIN_PATH` - `HEROKU_AC_COMMANDS_PATH` - `XDG_RUNTIME_DIR` - `PS1` - `SSH_CLIENT` - `EMAIL` - `PATH` - `HEROKU_AC_ANALYTICS_DIR` - `ABSROOT` - `DBUS_SESSION_BUS_ADDRESS` - `HG` - `NVM_BIN` - `MAIL` - `SSH_TTY` - `HGEDITOR` - `_` - `PIP_SHIMS_BASE_MODULE` - `PIP_DISABLE_PIP_VERSION_CHECK` - `PYTHONDONTWRITEBYTECODE` - `PIP_PYTHON_PATH` - `PYTHONFINDER_IGNORE_UNSUPPORTED` Pipenv–specific environment variables: - `PIPENV_VENV_IN_PROJECT`: `1` Debug–specific environment variables: - `PATH`: `/opt/gcc-arm-none-eabi-6-2017-q2-update/bin:/usr/local/sbin:/usr/local/bin:/usr/bin:/opt/android-sdk/platform-tools:/usr/lib/jvm/default/bin:/usr/lib32/jvm/default/bin:/opt/ti/msp-flasher:/opt/ti/mspgcc/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl:/home/paulk//bin/:/home/paulk/.gem/ruby/2.3.0/bin:/opt/android-sdk/platform-tools/:/home/paulk/.bin:/home/paulk/.yarn/bin` - `SHELL`: `/bin/bash` - `EDITOR`: `vim` - `LANG`: `en_US.utf8` - `PWD`: `/home/paulk` ---------------------------
pklapperich commented 2 years ago

The issue does appear to be due to relationships between keras and tensorflow. If I change Keras to keras = "*" then I don't have the problem. But doing pipenv install --dev 'tensorflow<2.5.0' still fails if keras is pinned to <2.5.0.

matteius commented 2 years ago

@pklapperich If you have the time to do a check, could you test it using this branch of pipenv which upgrade pip from 21.x to 22.0.4 latest: https://github.com/pypa/pipenv/tree/vendor-pip-22.0.3-followup-changes

pklapperich commented 2 years ago

It failed a lot faster this time at least; only took 2 minutes. Behavior is otherwise the same (I can install to [packages] but not to [dev] unless I remove the intel package index).

$ pipenv install -i pypi --verbose --dev tensorflow ``` Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/4e/b8/f5a25b22e803f0578e668daa33ba3701bb37858ec80e08a150bd7d2cf1b1/urllib3-1.26.8-py2.py3-none-any.whl#sha256=000ca7f471a233c2251c6c7023ee85305721bfdf18621ebff4fd17a8653427ed (from https://pypi.org/simple/urllib3/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/4e/b8/f5a25b22e803f0578e668daa33ba3701bb37858ec80e08a150bd7d2cf1b1/urllib3-1.26.8-py2.py3-none-any.whl#sha256=000ca7f471a233c2251c6c7023ee85305721bfdf18621ebff4fd17a8653427ed (from https://pypi.org/simple/urllib3/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4)')) Reporter.ending_round(4846, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(4846, state) Reporter.starting_round(4847) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(4847) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/61/cf/6e354304bcb9c6413c4e02a747b600061c21d38ba51e7e544ac7bc66aecc/threadpoolctl-3.1.0-py3-none-any.whl#sha256=8b99adda265feb6773280df41eece7b2e6561b772d21ffd52e372f999024907b (from https://pypi.org/simple/threadpoolctl/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/61/cf/6e354304bcb9c6413c4e02a747b600061c21d38ba51e7e544ac7bc66aecc/threadpoolctl-3.1.0-py3-none-any.whl#sha256=8b99adda265feb6773280df41eece7b2e6561b772d21ffd52e372f999024907b (from https://pypi.org/simple/threadpoolctl/) (requires-python:>=3.6)')) Reporter.ending_round(4847, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(4847, state) Reporter.starting_round(4848) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(4848) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/e0/68/e8ecfac5dd594b676c23a7f07ea34c197d7d69b3313afdf8ac1b0a9905a2/tensorboard_plugin_wit-1.8.1-py3-none-any.whl#sha256=ff26bdd583d155aa951ee3b152b3d0cffae8005dc697f72b44a8e8c2a77a8cbe (from https://pypi.org/simple/tensorboard-plugin-wit/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/e0/68/e8ecfac5dd594b676c23a7f07ea34c197d7d69b3313afdf8ac1b0a9905a2/tensorboard_plugin_wit-1.8.1-py3-none-any.whl#sha256=ff26bdd583d155aa951ee3b152b3d0cffae8005dc697f72b44a8e8c2a77a8cbe (from https://pypi.org/simple/tensorboard-plugin-wit/)')) Reporter.ending_round(4848, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(4848, state) Reporter.starting_round(4849) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(4849) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/60/f9/802efd84988bffd9f644c03b6e66fde8e76c3aa33db4279ddd11c5d61f4b/tensorboard_data_server-0.6.1-py3-none-manylinux2010_x86_64.whl#sha256=d8237580755e58eff68d1f3abefb5b1e39ae5c8b127cc40920f9c4fb33f4b98a (from https://pypi.org/simple/tensorboard-data-server/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/60/f9/802efd84988bffd9f644c03b6e66fde8e76c3aa33db4279ddd11c5d61f4b/tensorboard_data_server-0.6.1-py3-none-manylinux2010_x86_64.whl#sha256=d8237580755e58eff68d1f3abefb5b1e39ae5c8b127cc40920f9c4fb33f4b98a (from https://pypi.org/simple/tensorboard-data-server/) (requires-python:>=3.6)')) Reporter.ending_round(4849, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(4849, state) Reporter.starting_round(4850) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(4850) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/9f/d4/2c7f83915d437736996b2674300c6c4b578a6f897f34e40f5c04db146719/Markdown-3.3.6-py3-none-any.whl#sha256=9923332318f843411e9932237530df53162e29dc7a4e2b91e35764583c46c9a3 (from https://pypi.org/simple/markdown/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/9f/d4/2c7f83915d437736996b2674300c6c4b578a6f897f34e40f5c04db146719/Markdown-3.3.6-py3-none-any.whl#sha256=9923332318f843411e9932237530df53162e29dc7a4e2b91e35764583c46c9a3 (from https://pypi.org/simple/markdown/) (requires-python:>=3.6)')) Reporter.ending_round(4850, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(4850, state) Reporter.starting_round(4851) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(4851) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/3e/d5/0163eb0cfa0b673aa4fe1cd3ea9d8a81ea0f32e50807b0c295871e4aab2e/joblib-1.1.0-py2.py3-none-any.whl#sha256=f21f109b3c7ff9d95f8387f752d0d9c34a02aa2f7060c2135f465da0e5160ff6 (from https://pypi.org/simple/joblib/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/3e/d5/0163eb0cfa0b673aa4fe1cd3ea9d8a81ea0f32e50807b0c295871e4aab2e/joblib-1.1.0-py2.py3-none-any.whl#sha256=f21f109b3c7ff9d95f8387f752d0d9c34a02aa2f7060c2135f465da0e5160ff6 (from https://pypi.org/simple/joblib/) (requires-python:>=3.6)')) Reporter.ending_round(4851, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(4851, state) Reporter.starting_round(4852) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(4852) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/04/a2/d918dcd22354d8958fe113e1a3630137e0fc8b44859ade3063982eacd2a4/idna-3.3-py3-none-any.whl#sha256=84d9dd047ffa80596e0f246e2eab0b391788b0503584e8945f2368256d2735ff (from https://pypi.org/simple/idna/) (requires-python:>=3.5)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/04/a2/d918dcd22354d8958fe113e1a3630137e0fc8b44859ade3063982eacd2a4/idna-3.3-py3-none-any.whl#sha256=84d9dd047ffa80596e0f246e2eab0b391788b0503584e8945f2368256d2735ff (from https://pypi.org/simple/idna/) (requires-python:>=3.5)')) Reporter.ending_round(4852, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(4852, state) Reporter.starting_round(4853) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(4853) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/b1/0e/0636cc1448a7abc444fb1b3a63655e294e0d2d49092dc3de05241be6d43c/google_auth_oauthlib-0.4.6-py2.py3-none-any.whl#sha256=3f2a6e802eebbb6fb736a370fbf3b055edcb6b52878bf2f26330b5e041316c73 (from https://pypi.org/simple/google-auth-oauthlib/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/b1/0e/0636cc1448a7abc444fb1b3a63655e294e0d2d49092dc3de05241be6d43c/google_auth_oauthlib-0.4.6-py2.py3-none-any.whl#sha256=3f2a6e802eebbb6fb736a370fbf3b055edcb6b52878bf2f26330b5e041316c73 (from https://pypi.org/simple/google-auth-oauthlib/) (requires-python:>=3.6)')) Reporter.ending_round(4853, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(4853, state) Reporter.starting_round(4854) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(4854) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/fb/7a/1b3eb54caee1b8c73c2c3645f78a382eca4805a301a30c64a078e736e446/google_auth-1.35.0-py2.py3-none-any.whl#sha256=997516b42ecb5b63e8d80f5632c1a61dddf41d2a4c2748057837e06e00014258 (from https://pypi.org/simple/google-auth/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/fb/7a/1b3eb54caee1b8c73c2c3645f78a382eca4805a301a30c64a078e736e446/google_auth-1.35.0-py2.py3-none-any.whl#sha256=997516b42ecb5b63e8d80f5632c1a61dddf41d2a4c2748057837e06e00014258 (from https://pypi.org/simple/google-auth/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*)')) Reporter.ending_round(4854, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(4854, state) Reporter.starting_round(4855) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(4855) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/06/b3/24afc8868eba069a7f03650ac750a778862dc34941a4bebeb58706715726/charset_normalizer-2.0.12-py3-none-any.whl#sha256=6881edbebdb17b39b4eaaa821b438bf6eddffb4468cf344f09f89def34a8b1df (from https://pypi.org/simple/charset-normalizer/) (requires-python:>=3.5.0)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/06/b3/24afc8868eba069a7f03650ac750a778862dc34941a4bebeb58706715726/charset_normalizer-2.0.12-py3-none-any.whl#sha256=6881edbebdb17b39b4eaaa821b438bf6eddffb4468cf344f09f89def34a8b1df (from https://pypi.org/simple/charset-normalizer/) (requires-python:>=3.5.0)')) Reporter.ending_round(4855, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(4855, state) Reporter.starting_round(4856) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(4856) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/37/45/946c02767aabb873146011e665728b680884cd8fe70dde973c640e45b775/certifi-2021.10.8-py2.py3-none-any.whl#sha256=d62a0163eb4c2344ac042ab2bdf75399a71a2d8c7d47eac2e2ee91b9d6339569 (from https://pypi.org/simple/certifi/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/37/45/946c02767aabb873146011e665728b680884cd8fe70dde973c640e45b775/certifi-2021.10.8-py2.py3-none-any.whl#sha256=d62a0163eb4c2344ac042ab2bdf75399a71a2d8c7d47eac2e2ee91b9d6339569 (from https://pypi.org/simple/certifi/)')) Reporter.ending_round(4856, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(4856, state) Reporter.starting_round(4857) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(4857) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/d7/42/7ad4b6d67a16229496d4f6e74201bdbebcf4bc1e87d5a70c9297d4961bd2/PyYAML-6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl#sha256=277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287 (from https://pypi.org/simple/pyyaml/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/d7/42/7ad4b6d67a16229496d4f6e74201bdbebcf4bc1e87d5a70c9297d4961bd2/PyYAML-6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl#sha256=277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287 (from https://pypi.org/simple/pyyaml/) (requires-python:>=3.6)')) Reporter.ending_round(4857, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(4857, state) Reporter.starting_round(4858) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(4858) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.backtracking(LinkCandidate('file:///home/paulk/.cache/pipenv/wheels/5f/fd/9e/b6cf5890494cb8ef0b5eaff72e5d55a70fb56316007d6dfe73/wrapt-1.12.1-cp38-cp38-linux_x86_64.whl')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('file:///home/paulk/.cache/pipenv/wheels/5f/fd/9e/b6cf5890494cb8ef0b5eaff72e5d55a70fb56316007d6dfe73/wrapt-1.12.1-cp38-cp38-linux_x86_64.whl')) Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/27/d6/003e593296a85fd6ed616ed962795b2f87709c3eee2bca4f6d0fe55c6d00/wheel-0.37.1-py2.py3-none-any.whl#sha256=4bdcd7d840138086126cd09254dc6195fb4fc6f01c050a1d7236f2630db1d22a (from https://pypi.org/simple/wheel/) (requires-python:!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/27/d6/003e593296a85fd6ed616ed962795b2f87709c3eee2bca4f6d0fe55c6d00/wheel-0.37.1-py2.py3-none-any.whl#sha256=4bdcd7d840138086126cd09254dc6195fb4fc6f01c050a1d7236f2630db1d22a (from https://pypi.org/simple/wheel/) (requires-python:!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7)')) Reporter.ending_round(4858, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(4858, state) Reporter.starting_round(4859) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(4859) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/60/7a/e881b5abb54db0e6e671ab088d079c57ce54e8a01a3ca443f561ccadb37e/typing_extensions-3.7.4.3-py3-none-any.whl#sha256=7cb407020f00f7bfc3cb3e7881628838e69d8f3fcab2f64742a5e76b2f841918 (from https://pypi.org/simple/typing-extensions/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/60/7a/e881b5abb54db0e6e671ab088d079c57ce54e8a01a3ca443f561ccadb37e/typing_extensions-3.7.4.3-py3-none-any.whl#sha256=7cb407020f00f7bfc3cb3e7881628838e69d8f3fcab2f64742a5e76b2f841918 (from https://pypi.org/simple/typing-extensions/)')) Reporter.ending_round(4859, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(4859, state) Reporter.starting_round(4860) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(4860) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.backtracking(LinkCandidate('file:///home/paulk/.cache/pipenv/wheels/a0/16/9c/5473df82468f958445479c59e784896fa24f4a5fc024b0f501/termcolor-1.1.0-py3-none-any.whl')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('file:///home/paulk/.cache/pipenv/wheels/a0/16/9c/5473df82468f958445479c59e784896fa24f4a5fc024b0f501/termcolor-1.1.0-py3-none-any.whl')) Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/ec/78/b27f73e923becc6e79e18fe112cf75e3200d1ee35b0dba8fa46181bce56c/tensorflow_estimator-2.5.0-py2.py3-none-any.whl#sha256=d1fe76dee8b1dcab865d807a0246da0a9c4a635b1eba6e9545bf216c3aad6955 (from https://pypi.org/simple/tensorflow-estimator/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/ec/78/b27f73e923becc6e79e18fe112cf75e3200d1ee35b0dba8fa46181bce56c/tensorflow_estimator-2.5.0-py2.py3-none-any.whl#sha256=d1fe76dee8b1dcab865d807a0246da0a9c4a635b1eba6e9545bf216c3aad6955 (from https://pypi.org/simple/tensorflow-estimator/)')) Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/ee/ff/48bde5c0f013094d729fe4b0316ba2a24774b3ff1c52d924a8a4cb04078a/six-1.15.0-py2.py3-none-any.whl#sha256=8b74bedcbbbaca38ff6d7491d76f2b06b3592611af620f8426e82dddb04a5ced (from https://pypi.org/simple/six/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/ee/ff/48bde5c0f013094d729fe4b0316ba2a24774b3ff1c52d924a8a4cb04078a/six-1.15.0-py2.py3-none-any.whl#sha256=8b74bedcbbbaca38ff6d7491d76f2b06b3592611af620f8426e82dddb04a5ced (from https://pypi.org/simple/six/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*)')) Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/2d/61/08076519c80041bc0ffa1a8af0cbd3bf3e2b62af10435d269a9d0f40564d/requests-2.27.1-py2.py3-none-any.whl#sha256=f22fa1e554c9ddfd16e6e41ac79759e17be9e492b3587efa038054674760e72d (from https://pypi.org/simple/requests/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/2d/61/08076519c80041bc0ffa1a8af0cbd3bf3e2b62af10435d269a9d0f40564d/requests-2.27.1-py2.py3-none-any.whl#sha256=f22fa1e554c9ddfd16e6e41ac79759e17be9e492b3587efa038054674760e72d (from https://pypi.org/simple/requests/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*)')) Reporter.ending_round(4860, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(4860, state) Reporter.starting_round(4861) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(4861) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)')) Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.ending_round(4861, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(4861, state) Reporter.starting_round(4862) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(4862) Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)')) Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/44/f5/7feea02a3fb54d5db827ac4b822a7ba8933826b36de21880518250b8733a/tensorboard-2.5.0-py3-none-any.whl#sha256=e167460085b6528956b33bab1c970c989cdce47a6616273880733f5e7bde452e (from https://pypi.org/simple/tensorboard/) (requires-python:>= 2.7, != 3.0.*, != 3.1.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/44/f5/7feea02a3fb54d5db827ac4b822a7ba8933826b36de21880518250b8733a/tensorboard-2.5.0-py3-none-any.whl#sha256=e167460085b6528956b33bab1c970c989cdce47a6616273880733f5e7bde452e (from https://pypi.org/simple/tensorboard/) (requires-python:>= 2.7, != 3.0.*, != 3.1.*)')) Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/dd/25/b57bf2134f343909541977a79aa385addbc6a8ac470669739d8522e32c89/scipy-1.3.2-cp38-cp38-manylinux1_x86_64.whl#sha256=3f556f63e070e9596624e42e99d23b259d8f0fc63ec093bef97a9f1c579565b2 (from https://pypi.org/simple/scipy/) (requires-python:>=3.5)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/dd/25/b57bf2134f343909541977a79aa385addbc6a8ac470669739d8522e32c89/scipy-1.3.2-cp38-cp38-manylinux1_x86_64.whl#sha256=3f556f63e070e9596624e42e99d23b259d8f0fc63ec093bef97a9f1c579565b2 (from https://pypi.org/simple/scipy/) (requires-python:>=3.5)')) ERROR:pip.subprocessor:[present-diagnostic] Preparing metadata (pyproject.toml) exited with 1 Traceback (most recent call last): File "/home/paulk/ni2o/pipenv-vendor-pip-22.0.3-followup-changes/pipenv/patched/notpip/_internal/operations/build/metadata.py", line 35, in generate_metadata distinfo_dir = backend.prepare_metadata_for_build_wheel(metadata_dir) File "/home/paulk/ni2o/pipenv-vendor-pip-22.0.3-followup-changes/pipenv/patched/notpip/_vendor/pep517/wrappers.py", line 188, in prepare_metadata_for_build_wheel return self._call_hook('prepare_metadata_for_build_wheel', { File "/home/paulk/ni2o/pipenv-vendor-pip-22.0.3-followup-changes/pipenv/patched/notpip/_vendor/pep517/wrappers.py", line 322, in _call_hook self._subprocess_runner( File "/home/paulk/ni2o/pipenv-vendor-pip-22.0.3-followup-changes/pipenv/patched/notpip/_internal/utils/subprocess.py", line 252, in runner call_subprocess( File "/home/paulk/ni2o/pipenv-vendor-pip-22.0.3-followup-changes/pipenv/patched/notpip/_internal/utils/subprocess.py", line 224, in call_subprocess raise error pipenv.patched.notpip._internal.exceptions.InstallationSubprocessError: Preparing metadata (pyproject.toml) exited with 1 The above exception was the direct cause of the following exception: Traceback (most recent call last): File "/home/paulk/ni2o/pipenv-vendor-pip-22.0.3-followup-changes/pipenv/utils.py", line 979, in resolve results = resolver.resolve(self.constraints, check_supported_wheels=False) File "/home/paulk/ni2o/pipenv-vendor-pip-22.0.3-followup-changes/pipenv/patched/notpip/_internal/resolution/resolvelib/resolver.py", line 94, in resolve result = self._result = resolver.resolve( File "/home/paulk/ni2o/pipenv-vendor-pip-22.0.3-followup-changes/pipenv/patched/notpip/_vendor/resolvelib/resolvers.py", line 481, in resolve state = resolution.resolve(requirements, max_rounds=max_rounds) File "/home/paulk/ni2o/pipenv-vendor-pip-22.0.3-followup-changes/pipenv/patched/notpip/_vendor/resolvelib/resolvers.py", line 380, in resolve success = self._backtrack() File "/home/paulk/ni2o/pipenv-vendor-pip-22.0.3-followup-changes/pipenv/patched/notpip/_vendor/resolvelib/resolvers.py", line 320, in _backtrack success = _patch_criteria() File "/home/paulk/ni2o/pipenv-vendor-pip-22.0.3-followup-changes/pipenv/patched/notpip/_vendor/resolvelib/resolvers.py", line 309, in _patch_criteria if not candidates: File "/home/paulk/ni2o/pipenv-vendor-pip-22.0.3-followup-changes/pipenv/patched/notpip/_vendor/resolvelib/structs.py", line 151, in __bool__ return bool(self._sequence) File "/home/paulk/ni2o/pipenv-vendor-pip-22.0.3-followup-changes/pipenv/patched/notpip/_internal/resolution/resolvelib/found_candidates.py", line 155, in __bool__ return any(self) File "/home/paulk/ni2o/pipenv-vendor-pip-22.0.3-followup-changes/pipenv/patched/notpip/_internal/resolution/resolvelib/found_candidates.py", line 143, in return (c for c in iterator if id(c) not in self._incompatible_ids) File "/home/paulk/ni2o/pipenv-vendor-pip-22.0.3-followup-changes/pipenv/patched/notpip/_internal/resolution/resolvelib/found_candidates.py", line 47, in _iter_built candidate = func() File "/home/paulk/ni2o/pipenv-vendor-pip-22.0.3-followup-changes/pipenv/patched/notpip/_internal/resolution/resolvelib/factory.py", line 215, in _make_candidate_from_link self._link_candidate_cache[link] = LinkCandidate( File "/home/paulk/ni2o/pipenv-vendor-pip-22.0.3-followup-changes/pipenv/patched/notpip/_internal/resolution/resolvelib/candidates.py", line 292, in __init__ super().__init__( File "/home/paulk/ni2o/pipenv-vendor-pip-22.0.3-followup-changes/pipenv/patched/notpip/_internal/resolution/resolvelib/candidates.py", line 159, in __init__ self.dist = self._prepare() File "/home/paulk/ni2o/pipenv-vendor-pip-22.0.3-followup-changes/pipenv/patched/notpip/_internal/resolution/resolvelib/candidates.py", line 228, in _prepare dist = self._prepare_distribution() File "/home/paulk/ni2o/pipenv-vendor-pip-22.0.3-followup-changes/pipenv/patched/notpip/_internal/resolution/resolvelib/candidates.py", line 303, in _prepare_distribution return preparer.prepare_linked_requirement(self._ireq, parallel_builds=True) File "/home/paulk/ni2o/pipenv-vendor-pip-22.0.3-followup-changes/pipenv/patched/notpip/_internal/operations/prepare.py", line 487, in prepare_linked_requirement return self._prepare_linked_requirement(req, parallel_builds) File "/home/paulk/ni2o/pipenv-vendor-pip-22.0.3-followup-changes/pipenv/patched/notpip/_internal/operations/prepare.py", line 556, in _prepare_linked_requirement dist = _get_prepared_distribution( File "/home/paulk/ni2o/pipenv-vendor-pip-22.0.3-followup-changes/pipenv/patched/notpip/_internal/operations/prepare.py", line 58, in _get_prepared_distribution abstract_dist.prepare_distribution_metadata(finder, build_isolation) File "/home/paulk/ni2o/pipenv-vendor-pip-22.0.3-followup-changes/pipenv/patched/notpip/_internal/distributions/sdist.py", line 47, in prepare_distribution_metadata self.req.prepare_metadata() File "/home/paulk/ni2o/pipenv-vendor-pip-22.0.3-followup-changes/pipenv/patched/notpip/_internal/req/req_install.py", line 523, in prepare_metadata self.metadata_directory = generate_metadata( File "/home/paulk/ni2o/pipenv-vendor-pip-22.0.3-followup-changes/pipenv/patched/notpip/_internal/operations/build/metadata.py", line 37, in generate_metadata raise MetadataGenerationFailed(package_details=details) from error pipenv.patched.notpip._internal.exceptions.MetadataGenerationFailed: metadata generation failed During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/home/paulk/ni2o/pipenv-vendor-pip-22.0.3-followup-changes/pipenv/resolver.py", line 857, in main() File "/home/paulk/ni2o/pipenv-vendor-pip-22.0.3-followup-changes/pipenv/resolver.py", line 843, in main _main( File "/home/paulk/ni2o/pipenv-vendor-pip-22.0.3-followup-changes/pipenv/resolver.py", line 823, in _main resolve_packages( File "/home/paulk/ni2o/pipenv-vendor-pip-22.0.3-followup-changes/pipenv/resolver.py", line 772, in resolve_packages results, resolver = resolve( File "/home/paulk/ni2o/pipenv-vendor-pip-22.0.3-followup-changes/pipenv/resolver.py", line 752, in resolve return resolve_deps( File "/home/paulk/ni2o/pipenv-vendor-pip-22.0.3-followup-changes/pipenv/utils.py", line 1493, in resolve_deps results, hashes, markers_lookup, resolver, skipped = actually_resolve_deps( File "/home/paulk/ni2o/pipenv-vendor-pip-22.0.3-followup-changes/pipenv/utils.py", line 1212, in actually_resolve_deps resolver.resolve() File "/home/paulk/ni2o/pipenv-vendor-pip-22.0.3-followup-changes/pipenv/utils.py", line 981, in resolve raise ResolutionFailure(message=str(e)) pipenv.exceptions.ResolutionFailure: ERROR: metadata generation failed ```
$ pipenv --support Pipenv version: `'2022.1.9.dev0'` Pipenv location: `'/home/paulk/ni2o/pipenv-vendor-pip-22.0.3-followup-changes/pipenv'` Python location: `'/usr/bin/python'` Python installations found: - `3.10.2`: `/usr/bin/python` - `3.10.2`: `/usr/bin/python3` - `3.8.12`: `/home/paulk/ni2o/ai-classification/.venv/bin/python` - `3.8.12`: `/home/paulk/ni2o/ai-classification/.venv/bin/python3` - `3.8.12`: `/home/paulk/ni2o/ai-classification/.venv/bin/python3.8` - `3.8.12`: `/home/paulk/ni2o/ai-classification/.venv/bin/python` - `3.8.12`: `/home/paulk/ni2o/ai-classification/.venv/bin/python3` - `3.8.12`: `/home/paulk/ni2o/ai-classification/.venv/bin/python3.8` - `3.8.12`: `/usr/bin/python3.8` - `2.7.18`: `/usr/bin/python2` - `2.7.18`: `/usr/bin/python2.7` PEP 508 Information: ``` {'implementation_name': 'cpython', 'implementation_version': '3.10.2', 'os_name': 'posix', 'platform_machine': 'x86_64', 'platform_python_implementation': 'CPython', 'platform_release': '5.16.0-arch1-1', 'platform_system': 'Linux', 'platform_version': '#1 SMP PREEMPT Mon, 10 Jan 2022 20:11:47 +0000', 'python_full_version': '3.10.2', 'python_version': '3.10', 'sys_platform': 'linux'} ``` System environment variables: - `SHELL` - `SESSION_MANAGER` - `PIPENV_VENV_IN_PROJECT` - `COLORTERM` - `XDG_CONFIG_DIRS` - `LESS` - `XDG_SESSION_PATH` - `NVM_INC` - `XDG_MENU_PREFIX` - `TERM_PROGRAM_VERSION` - `TMUX` - `PIPENV_ACTIVE` - `LANGUAGE` - `DOTNET_ROOT` - `LARCH_PATH` - `DESKTOP_SESSION` - `EDITOR` - `GTK_MODULES` - `ANDROID_NDK` - `XDG_SEAT` - `PWD` - `LOGNAME` - `XDG_SESSION_DESKTOP` - `XDG_SESSION_TYPE` - `XDG_GREETER_DATA_DIR` - `MOTD_SHOWN` - `GDM_LANG` - `PIP_PYTHON_PATH` - `HOME` - `LCLIMPORTDIR` - `LANG` - `GITHUB_TOKEN` - `LS_COLORS` - `XDG_CURRENT_DESKTOP` - `VIRTUAL_ENV` - `PYTHONSTARTUP` - `VTE_VERSION` - `XDG_SEAT_PATH` - `SSH_CONNECTION` - `ANDROID_NDK_HOME` - `DOTNET_BUNDLE_EXTRACT_BASE_DIR` - `JONPROMPT` - `NVM_DIR` - `XDG_SESSION_CLASS` - `ANDROID_HOME` - `TERM` - `KIRBY_IDX` - `USER` - `TMUX_PANE` - `PIP_DISABLE_PIP_VERSION_CHECK` - `SHLVL` - `NVM_CD_FLAGS` - `PAGER` - `LC_MESSAGES` - `XDG_VTNR` - `HGUSER` - `XDG_SESSION_ID` - `PYTHONDONTWRITEBYTECODE` - `MOZ_PLUGIN_PATH` - `HEROKU_AC_COMMANDS_PATH` - `XDG_RUNTIME_DIR` - `PS1` - `EMAIL` - `XDG_DATA_DIRS` - `PATH` - `HEROKU_AC_ANALYTICS_DIR` - `ABSROOT` - `GDMSESSION` - `DBUS_SESSION_BUS_ADDRESS` - `HG` - `MAIL` - `NVM_BIN` - `HGEDITOR` - `OLDPWD` - `TERM_PROGRAM` - `_` - `PIP_SHIMS_BASE_MODULE` - `PYTHONFINDER_IGNORE_UNSUPPORTED` Pipenv–specific environment variables: - `PIPENV_VENV_IN_PROJECT`: `1` - `PIPENV_ACTIVE`: `1` Debug–specific environment variables: - `PATH`: `/home/paulk/ni2o/ai-classification/.venv/bin:/home/paulk/botlink/sitl/ardupilot/Tools/environment_install/ardupilot/Tools/autotest:/opt/gcc-arm-none-eabi-6-2017-q2-update/bin:/usr/local/sbin:/usr/local/bin:/usr/bin:/opt/android-sdk/platform-tools:/usr/lib/jvm/default/bin:/usr/lib32/jvm/default/bin:/opt/ti/msp-flasher:/opt/ti/mspgcc/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl:/home/paulk//bin/:/home/paulk/.gem/ruby/2.3.0/bin:/opt/android-sdk/platform-tools/:/home/paulk/.bin:/home/paulk/.yarn/bin` - `SHELL`: `/bin/bash` - `EDITOR`: `vim` - `LANG`: `en_US.utf8` - `PWD`: `/home/paulk/ni2o/ai-classification` - `VIRTUAL_ENV`: `/home/paulk/ni2o/ai-classification/.venv` --------------------------- Contents of `Pipfile` ('/home/paulk/ni2o/ai-classification/Pipfile'): ```toml [[source]] url = "https://pypi.org/simple" verify_ssl = true name = "pypi" [[source]] url = "https://pypi.anaconda.org/intel/simple" verify_ssl = true name = "intel" [packages] numpy = {version="*", index="pypi"} scipy = {version="*", index="pypi"} scikit-learn = {version="*", index="pypi"} scikit-learn-intelex = {version="*", index="pypi"} #dpcpp_cpp_rt = {version="*", index="pypi"} #pywavelets = {version="*", index="pypi"} #tensorpac = {version="*", index="pypi"} #matplotlib = {version="*", index="pypi"} onnxruntime = {version="*", index="pypi"} neurokit2 = {version="*", index="pypi"} [dev-packages] keras = {version="<2.5.0", index="pypi"} onnxmltools = {version="*", index="pypi"} skl2onnx = {version="*", index="pypi"} tf2onnx = {version="*", index="pypi"} pyserial = {version="*", index="pypi"} tensorflow = {version = "*", index = "pypi"} [requires] python_version = "3.8" ``` Contents of `Pipfile.lock` ('/home/paulk/ni2o/ai-classification/Pipfile.lock'): ```json { "_meta": { "hash": { "sha256": "93b5df1a7c2f9ea8bb193d4a88661aa36638b7d0e4179e5c207316b0869f6ce1" }, "pipfile-spec": 6, "requires": { "python_version": "3.8" }, "sources": [ { "name": "pypi", "url": "https://pypi.org/simple", "verify_ssl": true }, { "name": "intel", "url": "https://pypi.anaconda.org/intel/simple", "verify_ssl": true } ] }, "default": { "cycler": { "hashes": [ "sha256:3a27e95f763a428a739d2add979fa7494c912a32c17c4c38c4d5f082cad165a3", "sha256:9c87405839a19696e837b3b818fed3f5f69f16f1eec1a1ad77e043dcea9c772f" ], "markers": "python_version >= '3.6'", "version": "==0.11.0" }, "daal": { "hashes": [ "sha256:5e9c1cf5936ce5fbc5f34bebce60654f9dd4788ef884aa9ee0f27d4dbd938e2f", "sha256:61113eb2aa7047f0ff60506b6b07e5a3e938165b8711025808ca4dca4f793a8a" ], "version": "==2021.5.3" }, "daal4py": { "hashes": [ "sha256:3d65febe56cd04678391d314b8cad999e0beed2eac7d2ce109ba65fff131c58a", "sha256:552db974937a0873ee5ecacd3c315dded3ee16666ee5ee05718904ed14a09ab0", "sha256:9d45101f35226c4e9ce573bb848150f3bfef518ec031d2f970655098cb2032bd", "sha256:d7e4a1ba1a1afc665c4405d7186ad694aa97b0eae28d725efeb47b8bd7aa90cf", "sha256:d9c9c15a654b248331ce0b1bddf928c685f6e1978e17e1b31785e2ac7f8b6bb7", "sha256:e3098c6075d2e544f2e071bb54f9f23d6889e752757d447cdcab476e5b3ac282", "sha256:ed6231a45e15d3a0ce794b54f8c81706a06393bcd087bb88280a02667c9a2ee2", "sha256:f30fccaf371f2f72b41cca6f7845387f48b5e7c39713474d5663be747a77225a" ], "version": "==2021.5.3" }, "flatbuffers": { "hashes": [ "sha256:12158ab0272375eab8db2d663ae97370c33f152b27801fa6024e1d6105fd4dd2", "sha256:3751954f0604580d3219ae49a85fafec9d85eec599c0b96226e1bc0b48e57474" ], "version": "==2.0" }, "fonttools": { "hashes": [ "sha256:1933415e0fbdf068815cb1baaa1f159e17830215f7e8624e5731122761627557", "sha256:2b18a172120e32128a80efee04cff487d5d140fe7d817deb648b2eee023a40e4" ], "markers": "python_version >= '3.7'", "version": "==4.29.1" }, "joblib": { "hashes": [ "sha256:4158fcecd13733f8be669be0683b96ebdbbd38d23559f54dca7205aea1bf1e35", "sha256:f21f109b3c7ff9d95f8387f752d0d9c34a02aa2f7060c2135f465da0e5160ff6" ], "markers": "python_version >= '3.6'", "version": "==1.1.0" }, "kiwisolver": { "hashes": [ "sha256:0007840186bacfaa0aba4466d5890334ea5938e0bb7e28078a0eb0e63b5b59d5", "sha256:19554bd8d54cf41139f376753af1a644b63c9ca93f8f72009d50a2080f870f77", "sha256:1d45d1c74f88b9f41062716c727f78f2a59a5476ecbe74956fafb423c5c87a76", "sha256:1d819553730d3c2724582124aee8a03c846ec4362ded1034c16fb3ef309264e6", "sha256:2210f28778c7d2ee13f3c2a20a3a22db889e75f4ec13a21072eabb5693801e84", "sha256:22521219ca739654a296eea6d4367703558fba16f98688bd8ce65abff36eaa84", "sha256:25405f88a37c5f5bcba01c6e350086d65e7465fd1caaf986333d2a045045a223", "sha256:2b65bd35f3e06a47b5c30ea99e0c2b88f72c6476eedaf8cfbc8e66adb5479dcf", "sha256:2ddb500a2808c100e72c075cbb00bf32e62763c82b6a882d403f01a119e3f402", "sha256:2f8f6c8f4f1cff93ca5058d6ec5f0efda922ecb3f4c5fb76181f327decff98b8", "sha256:30fa008c172355c7768159983a7270cb23838c4d7db73d6c0f6b60dde0d432c6", "sha256:3dbb3cea20b4af4f49f84cffaf45dd5f88e8594d18568e0225e6ad9dec0e7967", "sha256:4116ba9a58109ed5e4cb315bdcbff9838f3159d099ba5259c7c7fb77f8537492", "sha256:44e6adf67577dbdfa2d9f06db9fbc5639afefdb5bf2b4dfec25c3a7fbc619536", "sha256:5326ddfacbe51abf9469fe668944bc2e399181a2158cb5d45e1d40856b2a0589", "sha256:70adc3658138bc77a36ce769f5f183169bc0a2906a4f61f09673f7181255ac9b", "sha256:72be6ebb4e92520b9726d7146bc9c9b277513a57a38efcf66db0620aec0097e0", "sha256:7843b1624d6ccca403a610d1277f7c28ad184c5aa88a1750c1a999754e65b439", "sha256:7ba5a1041480c6e0a8b11a9544d53562abc2d19220bfa14133e0cdd9967e97af", "sha256:80efd202108c3a4150e042b269f7c78643420cc232a0a771743bb96b742f838f", "sha256:82f49c5a79d3839bc8f38cb5f4bfc87e15f04cbafa5fbd12fb32c941cb529cfb", "sha256:83d2c9db5dfc537d0171e32de160461230eb14663299b7e6d18ca6dca21e4977", "sha256:8d93a1095f83e908fc253f2fb569c2711414c0bfd451cab580466465b235b470", "sha256:8dc3d842fa41a33fe83d9f5c66c0cc1f28756530cd89944b63b072281e852031", "sha256:9661a04ca3c950a8ac8c47f53cbc0b530bce1b52f516a1e87b7736fec24bfff0", "sha256:a498bcd005e8a3fedd0022bb30ee0ad92728154a8798b703f394484452550507", "sha256:a7a4cf5bbdc861987a7745aed7a536c6405256853c94abc9f3287c3fa401b174", "sha256:b5074fb09429f2b7bc82b6fb4be8645dcbac14e592128beeff5461dcde0af09f", "sha256:b6a5431940f28b6de123de42f0eb47b84a073ee3c3345dc109ad550a3307dd28", "sha256:ba677bcaff9429fd1bf01648ad0901cea56c0d068df383d5f5856d88221fe75b", "sha256:bcadb05c3d4794eb9eee1dddf1c24215c92fb7b55a80beae7a60530a91060560", "sha256:bf7eb45d14fc036514c09554bf983f2a72323254912ed0c3c8e697b62c4c158f", "sha256:c358721aebd40c243894298f685a19eb0491a5c3e0b923b9f887ef1193ddf829", "sha256:c4550a359c5157aaf8507e6820d98682872b9100ce7607f8aa070b4b8af6c298", "sha256:c6572c2dab23c86a14e82c245473d45b4c515314f1f859e92608dcafbd2f19b8", "sha256:cba430db673c29376135e695c6e2501c44c256a81495da849e85d1793ee975ad", "sha256:dedc71c8eb9c5096037766390172c34fb86ef048b8e8958b4e484b9e505d66bc", "sha256:e6f5eb2f53fac7d408a45fbcdeda7224b1cfff64919d0f95473420a931347ae9", "sha256:ec2eba188c1906b05b9b49ae55aae4efd8150c61ba450e6721f64620c50b59eb", "sha256:ee040a7de8d295dbd261ef2d6d3192f13e2b08ec4a954de34a6fb8ff6422e24c", "sha256:eedd3b59190885d1ebdf6c5e0ca56828beb1949b4dfe6e5d0256a461429ac386", "sha256:f441422bb313ab25de7b3dbfd388e790eceb76ce01a18199ec4944b369017009", "sha256:f8eb7b6716f5b50e9c06207a14172cf2de201e41912ebe732846c02c830455b9", "sha256:fc4453705b81d03568d5b808ad8f09c77c47534f6ac2e72e733f9ca4714aa75c" ], "markers": "python_version >= '3.7'", "version": "==1.3.2" }, "matplotlib": { "hashes": [ "sha256:14334b9902ec776461c4b8c6516e26b450f7ebe0b3ef8703bf5cdfbbaecf774a", "sha256:2252bfac85cec7af4a67e494bfccf9080bcba8a0299701eab075f48847cca907", "sha256:2e3484d8455af3fdb0424eae1789af61f6a79da0c80079125112fd5c1b604218", "sha256:34a1fc29f8f96e78ec57a5eff5e8d8b53d3298c3be6df61e7aa9efba26929522", "sha256:3e66497cd990b1a130e21919b004da2f1dc112132c01ac78011a90a0f9229778", "sha256:40e0d7df05e8efe60397c69b467fc8f87a2affeb4d562fe92b72ff8937a2b511", "sha256:456cc8334f6d1124e8ff856b42d2cc1c84335375a16448189999496549f7182b", "sha256:506b210cc6e66a0d1c2bb765d055f4f6bc2745070fb1129203b67e85bbfa5c18", "sha256:53273c5487d1c19c3bc03b9eb82adaf8456f243b97ed79d09dded747abaf1235", "sha256:577ed20ec9a18d6bdedb4616f5e9e957b4c08563a9f985563a31fd5b10564d2a", "sha256:6803299cbf4665eca14428d9e886de62e24f4223ac31ab9c5d6d5339a39782c7", "sha256:68fa30cec89b6139dc559ed6ef226c53fd80396da1919a1b5ef672c911aaa767", "sha256:6c094e4bfecd2fa7f9adffd03d8abceed7157c928c2976899de282f3600f0a3d", "sha256:778d398c4866d8e36ee3bf833779c940b5f57192fa0a549b3ad67bc4c822771b", "sha256:7a350ca685d9f594123f652ba796ee37219bf72c8e0fc4b471473d87121d6d34", "sha256:87900c67c0f1728e6db17c6809ec05c025c6624dcf96a8020326ea15378fe8e7", "sha256:8a77906dc2ef9b67407cec0bdbf08e3971141e535db888974a915be5e1e3efc6", "sha256:8e70ae6475cfd0fad3816dcbf6cac536dc6f100f7474be58d59fa306e6e768a4", "sha256:abf67e05a1b7f86583f6ebd01f69b693b9c535276f4e943292e444855870a1b8", "sha256:b04fc29bcef04d4e2d626af28d9d892be6aba94856cb46ed52bcb219ceac8943", "sha256:b19a761b948e939a9e20173aaae76070025f0024fc8f7ba08bef22a5c8573afc", "sha256:b2e9810e09c3a47b73ce9cab5a72243a1258f61e7900969097a817232246ce1c", "sha256:b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1", "sha256:b8a4fb2a0c5afbe9604f8a91d7d0f27b1832c3e0b5e365f95a13015822b4cd65", "sha256:bb1c613908f11bac270bc7494d68b1ef6e7c224b7a4204d5dacf3522a41e2bc3", "sha256:d24e5bb8028541ce25e59390122f5e48c8506b7e35587e5135efcb6471b4ac6c", "sha256:d70a32ee1f8b55eed3fd4e892f0286df8cccc7e0475c11d33b5d0a148f5c7599", "sha256:e293b16cf303fe82995e41700d172a58a15efc5331125d08246b520843ef21ee", "sha256:e2f28a07b4f82abb40267864ad7b3a4ed76f1b1663e81c7efc84a9b9248f672f", "sha256:e3520a274a0e054e919f5b3279ee5dbccf5311833819ccf3399dab7c83e90a25", "sha256:e3b6f3fd0d8ca37861c31e9a7cab71a0ef14c639b4c95654ea1dd153158bf0df", "sha256:e486f60db0cd1c8d68464d9484fd2a94011c1ac8593d765d0211f9daba2bd535", "sha256:e8c87cdaf06fd7b2477f68909838ff4176f105064a72ca9d24d3f2a29f73d393", "sha256:edf5e4e1d5fb22c18820e8586fb867455de3b109c309cb4fce3aaed85d9468d1", "sha256:fe8d40c434a8e2c68d64c6d6a04e77f21791a93ff6afe0dce169597c110d3079" ], "markers": "python_version >= '3.7'", "version": "==3.5.1" }, "neurokit2": { "hashes": [ "sha256:000d908fa90441673fa7cdfb0bd4c5326c701daf260e2c612fb0900fd8421e75", "sha256:03c2aa354ab8d8b9a559f4e5e465b67630465a230b919a3a412c9aad31c59395" ], "index": "pypi", "version": "==0.1.7" }, "numpy": { "hashes": [ "sha256:07a8c89a04997625236c5ecb7afe35a02af3896c8aa01890a849913a2309c676", "sha256:08d9b008d0156c70dc392bb3ab3abb6e7a711383c3247b410b39962263576cd4", "sha256:201b4d0552831f7250a08d3b38de0d989d6f6e4658b709a02a73c524ccc6ffce", "sha256:2c10a93606e0b4b95c9b04b77dc349b398fdfbda382d2a39ba5a822f669a0123", "sha256:3ca688e1b9b95d80250bca34b11a05e389b1420d00e87a0d12dc45f131f704a1", "sha256:48a3aecd3b997bf452a2dedb11f4e79bc5bfd21a1d4cc760e703c31d57c84b3e", "sha256:568dfd16224abddafb1cbcce2ff14f522abe037268514dd7e42c6776a1c3f8e5", "sha256:5bfb1bb598e8229c2d5d48db1860bcf4311337864ea3efdbe1171fb0c5da515d", "sha256:639b54cdf6aa4f82fe37ebf70401bbb74b8508fddcf4797f9fe59615b8c5813a", "sha256:8251ed96f38b47b4295b1ae51631de7ffa8260b5b087808ef09a39a9d66c97ab", "sha256:92bfa69cfbdf7dfc3040978ad09a48091143cffb778ec3b03fa170c494118d75", "sha256:97098b95aa4e418529099c26558eeb8486e66bd1e53a6b606d684d0c3616b168", "sha256:a3bae1a2ed00e90b3ba5f7bd0a7c7999b55d609e0c54ceb2b076a25e345fa9f4", "sha256:c34ea7e9d13a70bf2ab64a2532fe149a9aced424cd05a2c4ba662fd989e3e45f", "sha256:dbc7601a3b7472d559dc7b933b18b4b66f9aa7452c120e87dfb33d02008c8a18", "sha256:e7927a589df200c5e23c57970bafbd0cd322459aa7b1ff73b7c2e84d6e3eae62", "sha256:f8c1f39caad2c896bc0018f699882b345b2a63708008be29b1f355ebf6f933fe", "sha256:fade0d4f4d292b6f39951b6836d7a3c7ef5b2347f3c420cd9820a1d90d794802", "sha256:fdf3c08bce27132395d3c3ba1503cac12e17282358cb4bddc25cc46b0aca07aa" ], "index": "pypi", "version": "==1.22.3" }, "onnxruntime": { "hashes": [ "sha256:1fb57101581eaec64d335d0675908fd41cae91b496475fc96fc5bb2a58844e5b", "sha256:2419563e9fc4f5b7dedd4b70d2249a952001c33f3186b83212ad2a7a0824c9b4", "sha256:2f9ab7deab0c44e2b02f3eb8a0b3bee4374575a6c4bb4b2928d5ffcc305f430a", "sha256:34cfb07a8af91b3b7f82ad9db8f6dce67f0bd672cdaf659d0fd86aaba7a021d9", "sha256:3913769691f7f20e13070d65bfddd9f85f862274fcc17312c3b7d3fee8af21d8", "sha256:4087da19d2bb03ede012b9fd5f77f3b41f3ff500d2359d3d6361d593e47be59a", "sha256:44e6dbe8a375b1d506f5ec9867f48d4ebe20f70156b31aed2025b9db4b06e2e3", "sha256:618c84c6bff73fd6dd6fcf304eb24a804df6c11f512ddead4cc73074b60012b8", "sha256:69d0d5785c779f63b4cef2890a9eb47ad178ba1d7f7fd5028dacb5fc1467c537", "sha256:753fbf64436ce93c750e817d8469ff4740adf18caec2822568687563f63ccff9", "sha256:aa5dec9c7c4fd5b8b9b77768c0f493fe730c7c277fd919c00578afa073d3f1b2", "sha256:bbf9eaa6db369b52960c012fd8a8b6cca862a4deb42fdb5e1fa2ffb749c2274c", "sha256:ccc3240c0c9d662f04bd56e593c1bbad84c84a40b1c9f965d39cd857290468a9", "sha256:cf9599f58dab002dbe792b42c6bb6765b70795a87b40dcdbd5c180eb535a1099", "sha256:d5b0d3cf319c038b9f4479235dcf842d959f1248be48953f478822ac48a60617", "sha256:d733a687ee8117556ff0e60d7d3b2151c727f2ccf38dca1f5d71049800a02221", "sha256:dbab3f8cf8d4f0ee5ecea27dbd0536521322b44a7dbf67e4c1e6fc1e43fac97c", "sha256:df0c434f4a40212e87003b1b6f38a152d2f1d6447c261cd32c28434dd765c41c", "sha256:f7265bcd62f154f891f745d96f686ed92a0c0ca5589dc14f9203ae847e932792" ], "index": "pypi", "version": "==1.10.0" }, "packaging": { "hashes": [ "sha256:dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb", "sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522" ], "markers": "python_version >= '3.6'", "version": "==21.3" }, "pandas": { "hashes": [ "sha256:0259cd11e7e6125aaea3af823b80444f3adad6149ff4c97fef760093598b3e34", "sha256:04dd15d9db538470900c851498e532ef28d4e56bfe72c9523acb32042de43dfb", "sha256:0b1a13f647e4209ed7dbb5da3497891d0045da9785327530ab696417ef478f84", "sha256:19f7c632436b1b4f84615c3b127bbd7bc603db95e3d4332ed259dc815c9aaa26", "sha256:1b384516dbb4e6aae30e3464c2e77c563da5980440fbdfbd0968e3942f8f9d70", "sha256:1d85d5f6be66dfd6d1d8d13b9535e342a2214260f1852654b19fa4d7b8d1218b", "sha256:2e5a7a1e0ecaac652326af627a3eca84886da9e667d68286866d4e33f6547caf", "sha256:3129a35d9dad1d80c234dd78f8f03141b914395d23f97cf92a366dcd19f8f8bf", "sha256:358b0bc98a5ff067132d23bf7a2242ee95db9ea5b7bbc401cf79205f11502fd3", "sha256:3dfb32ed50122fe8c5e7f2b8d97387edd742cc78f9ec36f007ee126cd3720907", "sha256:4e1176f45981c8ccc8161bc036916c004ca51037a7ed73f2d2a9857e6dbe654f", "sha256:508c99debccd15790d526ce6b1624b97a5e1e4ca5b871319fb0ebfd46b8f4dad", "sha256:6105af6533f8b63a43ea9f08a2ede04e8f43e49daef0209ab0d30352bcf08bee", "sha256:6d6ad1da00c7cc7d8dd1559a6ba59ba3973be6b15722d49738b2be0977eb8a0c", "sha256:7ea47ba1d6f359680130bd29af497333be6110de8f4c35b9211eec5a5a9630fa", "sha256:8db93ec98ac7cb5f8ac1420c10f5e3c43533153f253fe7fb6d891cf5aa2b80d2", "sha256:96e9ece5759f9b47ae43794b6359bbc54805d76e573b161ae770c1ea59393106", "sha256:bbb15ad79050e8b8d39ec40dd96a30cd09b886a2ae8848d0df1abba4d5502a67", "sha256:c614001129b2a5add5e3677c3a213a9e6fd376204cb8d17c04e84ff7dfc02a73", "sha256:e6a7bbbb7950063bfc942f8794bc3e31697c020a14f1cd8905fc1d28ec674a01", "sha256:f02e85e6d832be37d7f16cf6ac8bb26b519ace3e5f3235564a91c7f658ab2a43" ], "markers": "python_version >= '3.8'", "version": "==1.4.1" }, "pillow": { "hashes": [ "sha256:011233e0c42a4a7836498e98c1acf5e744c96a67dd5032a6f666cc1fb97eab97", "sha256:0f29d831e2151e0b7b39981756d201f7108d3d215896212ffe2e992d06bfe049", "sha256:12875d118f21cf35604176872447cdb57b07126750a33748bac15e77f90f1f9c", "sha256:14d4b1341ac07ae07eb2cc682f459bec932a380c3b122f5540432d8977e64eae", "sha256:1c3c33ac69cf059bbb9d1a71eeaba76781b450bc307e2291f8a4764d779a6b28", "sha256:1d19397351f73a88904ad1aee421e800fe4bbcd1aeee6435fb62d0a05ccd1030", "sha256:253e8a302a96df6927310a9d44e6103055e8fb96a6822f8b7f514bb7ef77de56", "sha256:2632d0f846b7c7600edf53c48f8f9f1e13e62f66a6dbc15191029d950bfed976", "sha256:335ace1a22325395c4ea88e00ba3dc89ca029bd66bd5a3c382d53e44f0ccd77e", "sha256:413ce0bbf9fc6278b2d63309dfeefe452835e1c78398efb431bab0672fe9274e", "sha256:5100b45a4638e3c00e4d2320d3193bdabb2d75e79793af7c3eb139e4f569f16f", "sha256:514ceac913076feefbeaf89771fd6febde78b0c4c1b23aaeab082c41c694e81b", "sha256:528a2a692c65dd5cafc130de286030af251d2ee0483a5bf50c9348aefe834e8a", "sha256:6295f6763749b89c994fcb6d8a7f7ce03c3992e695f89f00b741b4580b199b7e", "sha256:6c8bc8238a7dfdaf7a75f5ec5a663f4173f8c367e5a39f87e720495e1eed75fa", "sha256:718856856ba31f14f13ba885ff13874be7fefc53984d2832458f12c38205f7f7", "sha256:7f7609a718b177bf171ac93cea9fd2ddc0e03e84d8fa4e887bdfc39671d46b00", "sha256:80ca33961ced9c63358056bd08403ff866512038883e74f3a4bf88ad3eb66838", "sha256:80fe64a6deb6fcfdf7b8386f2cf216d329be6f2781f7d90304351811fb591360", "sha256:81c4b81611e3a3cb30e59b0cf05b888c675f97e3adb2c8672c3154047980726b", "sha256:855c583f268edde09474b081e3ddcd5cf3b20c12f26e0d434e1386cc5d318e7a", "sha256:9bfdb82cdfeccec50aad441afc332faf8606dfa5e8efd18a6692b5d6e79f00fd", "sha256:a5d24e1d674dd9d72c66ad3ea9131322819ff86250b30dc5821cbafcfa0b96b4", "sha256:a9f44cd7e162ac6191491d7249cceb02b8116b0f7e847ee33f739d7cb1ea1f70", "sha256:b5b3f092fe345c03bca1e0b687dfbb39364b21ebb8ba90e3fa707374b7915204", "sha256:b9618823bd237c0d2575283f2939655f54d51b4527ec3972907a927acbcc5bfc", "sha256:cef9c85ccbe9bee00909758936ea841ef12035296c748aaceee535969e27d31b", "sha256:d21237d0cd37acded35154e29aec853e945950321dd2ffd1a7d86fe686814669", "sha256:d3c5c79ab7dfce6d88f1ba639b77e77a17ea33a01b07b99840d6ed08031cb2a7", "sha256:d9d7942b624b04b895cb95af03a23407f17646815495ce4547f0e60e0b06f58e", "sha256:db6d9fac65bd08cea7f3540b899977c6dee9edad959fa4eaf305940d9cbd861c", "sha256:ede5af4a2702444a832a800b8eb7f0a7a1c0eed55b644642e049c98d589e5092", "sha256:effb7749713d5317478bb3acb3f81d9d7c7f86726d41c1facca068a04cf5bb4c", "sha256:f154d173286a5d1863637a7dcd8c3437bb557520b01bddb0be0258dcb72696b5", "sha256:f25ed6e28ddf50de7e7ea99d7a976d6a9c415f03adcaac9c41ff6ff41b6d86ac" ], "markers": "python_version >= '3.7'", "version": "==9.0.1" }, "protobuf": { "hashes": [ "sha256:072fbc78d705d3edc7ccac58a62c4c8e0cec856987da7df8aca86e647be4e35c", "sha256:09297b7972da685ce269ec52af761743714996b4381c085205914c41fcab59fb", "sha256:16f519de1313f1b7139ad70772e7db515b1420d208cb16c6d7858ea989fc64a9", "sha256:1c91ef4110fdd2c590effb5dca8fdbdcb3bf563eece99287019c4204f53d81a4", "sha256:3112b58aac3bac9c8be2b60a9daf6b558ca3f7681c130dcdd788ade7c9ffbdca", "sha256:36cecbabbda242915529b8ff364f2263cd4de7c46bbe361418b5ed859677ba58", "sha256:4276cdec4447bd5015453e41bdc0c0c1234eda08420b7c9a18b8d647add51e4b", "sha256:435bb78b37fc386f9275a7035fe4fb1364484e38980d0dd91bc834a02c5ec909", "sha256:48ed3877fa43e22bcacc852ca76d4775741f9709dd9575881a373bd3e85e54b2", "sha256:54a1473077f3b616779ce31f477351a45b4fef8c9fd7892d6d87e287a38df368", "sha256:69da7d39e39942bd52848438462674c463e23963a1fdaa84d88df7fbd7e749b2", "sha256:6cbc312be5e71869d9d5ea25147cdf652a6781cf4d906497ca7690b7b9b5df13", "sha256:7bb03bc2873a2842e5ebb4801f5c7ff1bfbdf426f85d0172f7644fcda0671ae0", "sha256:7ca7da9c339ca8890d66958f5462beabd611eca6c958691a8fe6eccbd1eb0c6e", "sha256:835a9c949dc193953c319603b2961c5c8f4327957fe23d914ca80d982665e8ee", "sha256:84123274d982b9e248a143dadd1b9815049f4477dc783bf84efe6250eb4b836a", "sha256:8961c3a78ebfcd000920c9060a262f082f29838682b1f7201889300c1fbe0616", "sha256:96bd766831596d6014ca88d86dc8fe0fb2e428c0b02432fd9db3943202bf8c5e", "sha256:9df0c10adf3e83015ced42a9a7bd64e13d06c4cf45c340d2c63020ea04499d0a", "sha256:b38057450a0c566cbd04890a40edf916db890f2818e8682221611d78dc32ae26", "sha256:bd95d1dfb9c4f4563e6093a9aa19d9c186bf98fa54da5252531cc0d3a07977e7", "sha256:c1068287025f8ea025103e37d62ffd63fec8e9e636246b89c341aeda8a67c934", "sha256:c438268eebb8cf039552897d78f402d734a404f1360592fef55297285f7f953f", "sha256:cdc076c03381f5c1d9bb1abdcc5503d9ca8b53cf0a9d31a9f6754ec9e6c8af0f", "sha256:f358aa33e03b7a84e0d91270a4d4d8f5df6921abe99a377828839e8ed0c04e07", "sha256:f51d5a9f137f7a2cec2d326a74b6e3fc79d635d69ffe1b036d39fc7d75430d37" ], "markers": "python_version >= '3.5'", "version": "==3.19.4" }, "pyparsing": { "hashes": [ "sha256:18ee9022775d270c55187733956460083db60b37d0d0fb357445f3094eed3eea", "sha256:a6c06a88f252e6c322f65faf8f418b16213b51bdfaece0524c1c1bc30c63c484" ], "markers": "python_version >= '3.6'", "version": "==3.0.7" }, "python-dateutil": { "hashes": [ "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86", "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==2.8.2" }, "pytz": { "hashes": [ "sha256:3672058bc3453457b622aab7a1c3bfd5ab0bdae451512f6cf25f64ed37f5b87c", "sha256:acad2d8b20a1af07d4e4c9d2e9285c5ed9104354062f275f3fcd88dcef4f1326" ], "version": "==2021.3" }, "scikit-learn": { "hashes": [ "sha256:08ef968f6b72033c16c479c966bf37ccd49b06ea91b765e1cc27afefe723920b", "sha256:158faf30684c92a78e12da19c73feff9641a928a8024b4fa5ec11d583f3d8a87", "sha256:16455ace947d8d9e5391435c2977178d0ff03a261571e67f627c8fee0f9d431a", "sha256:245c9b5a67445f6f044411e16a93a554edc1efdcce94d3fc0bc6a4b9ac30b752", "sha256:285db0352e635b9e3392b0b426bc48c3b485512d3b4ac3c7a44ec2a2ba061e66", "sha256:2f3b453e0b149898577e301d27e098dfe1a36943f7bb0ad704d1e548efc3b448", "sha256:46f431ec59dead665e1370314dbebc99ead05e1c0a9df42f22d6a0e00044820f", "sha256:55f2f3a8414e14fbee03782f9fe16cca0f141d639d2b1c1a36779fa069e1db57", "sha256:5cb33fe1dc6f73dc19e67b264dbb5dde2a0539b986435fdd78ed978c14654830", "sha256:75307d9ea39236cad7eea87143155eea24d48f93f3a2f9389c817f7019f00705", "sha256:7626a34eabbf370a638f32d1a3ad50526844ba58d63e3ab81ba91e2a7c6d037e", "sha256:7a93c1292799620df90348800d5ac06f3794c1316ca247525fa31169f6d25855", "sha256:7d6b2475f1c23a698b48515217eb26b45a6598c7b1840ba23b3c5acece658dbb", "sha256:80095a1e4b93bd33261ef03b9bc86d6db649f988ea4dbcf7110d0cded8d7213d", "sha256:85260fb430b795d806251dd3bb05e6f48cdc777ac31f2bcf2bc8bbed3270a8f5", "sha256:9369b030e155f8188743eb4893ac17a27f81d28a884af460870c7c072f114243", "sha256:a053a6a527c87c5c4fa7bf1ab2556fa16d8345cf99b6c5a19030a4a7cd8fd2c0", "sha256:a90b60048f9ffdd962d2ad2fb16367a87ac34d76e02550968719eb7b5716fd10", "sha256:a999c9f02ff9570c783069f1074f06fe7386ec65b84c983db5aeb8144356a355", "sha256:b1391d1a6e2268485a63c3073111fe3ba6ec5145fc957481cfd0652be571226d", "sha256:b54a62c6e318ddbfa7d22c383466d38d2ee770ebdb5ddb668d56a099f6eaf75f", "sha256:b5870959a5484b614f26d31ca4c17524b1b0317522199dc985c3b4256e030767", "sha256:bc3744dabc56b50bec73624aeca02e0def06b03cb287de26836e730659c5d29c", "sha256:d93d4c28370aea8a7cbf6015e8a669cd5d69f856cc2aa44e7a590fb805bb5583", "sha256:d9aac97e57c196206179f674f09bc6bffcd0284e2ba95b7fe0b402ac3f986023", "sha256:da3c84694ff693b5b3194d8752ccf935a665b8b5edc33a283122f4273ca3e687", "sha256:e174242caecb11e4abf169342641778f68e1bfaba80cd18acd6bc84286b9a534", "sha256:eabceab574f471de0b0eb3f2ecf2eee9f10b3106570481d007ed1c84ebf6d6a1", "sha256:f14517e174bd7332f1cca2c959e704696a5e0ba246eb8763e6c24876d8710049", "sha256:fa38a1b9b38ae1fad2863eff5e0d69608567453fdfc850c992e6e47eb764e846", "sha256:ff3fa8ea0e09e38677762afc6e14cad77b5e125b0ea70c9bba1992f02c93b028", "sha256:ff746a69ff2ef25f62b36338c615dd15954ddc3ab8e73530237dd73235e76d62" ], "index": "pypi", "version": "==1.0.2" }, "scikit-learn-intelex": { "hashes": [ "sha256:0f27775cc65e9fe224c373163fe5630f58c98d860b507abd91ce92a6ad1b7edd", "sha256:79607e19d493df422bb434e6277029934cc55d4c83304d66e5c09815aab592c6", "sha256:7a84998fa7724855af5227ffe9fb1d25a917ed9f1237d6b5ddc21fdedcb30c0e", "sha256:a2f57d8a88d20b6c17216a9ca406fd333ec5722eb2b07b4d6720dedefc126d2c", "sha256:a7d883a62c94831e3abe114771e3a9fadaeba1dbf61151cff8f836e6cea5c5aa", "sha256:b58197423daf5cac821c6376ab702f445cfd72a964de6ff436b4ecc592b2ff6e", "sha256:dfba15d74e823ddda4684596040a9b042c3ea6d6b78d9737ffba17136343ad51", "sha256:f331b9aa81163913a1c8ab1f237b8a3afe88e5178e74530c05278d89e7071466" ], "index": "pypi", "version": "==2021.5.3" }, "scipy": { "hashes": [ "sha256:011d4386b53b933142f58a652aa0f149c9b9242abd4f900b9f4ea5fbafc86b89", "sha256:16e09ef68b352d73befa8bcaf3ebe25d3941fe1a58c82909d5589856e6bc8174", "sha256:31d4f2d6b724bc9a98e527b5849b8a7e589bf1ea630c33aa563eda912c9ff0bd", "sha256:38aa39b6724cb65271e469013aeb6f2ce66fd44f093e241c28a9c6bc64fd79ed", "sha256:3d573228c10a3a8c32b9037be982e6440e411b443a6267b067cac72f690b8d56", "sha256:3d9dd6c8b93a22bf9a3a52d1327aca7e092b1299fb3afc4f89e8eba381be7b59", "sha256:559a8a4c03a5ba9fe3232f39ed24f86457e4f3f6c0abbeae1fb945029f092720", "sha256:5e73343c5e0d413c1f937302b2e04fb07872f5843041bcfd50699aef6e95e399", "sha256:723b9f878095ed994756fa4ee3060c450e2db0139c5ba248ee3f9628bd64e735", "sha256:87b01c7d5761e8a266a0fbdb9d88dcba0910d63c1c671bdb4d99d29f469e9e03", "sha256:8f4d059a97b29c91afad46b1737274cb282357a305a80bdd9e8adf3b0ca6a3f0", "sha256:92b2c2af4183ed09afb595709a8ef5783b2baf7f41e26ece24e1329c109691a7", "sha256:937d28722f13302febde29847bbe554b89073fbb924a30475e5ed7b028898b5f", "sha256:a279e27c7f4566ef18bab1b1e2c37d168e365080974758d107e7d237d3f0f484", "sha256:ad5be4039147c808e64f99c0e8a9641eb5d2fa079ff5894dcd8240e94e347af4", "sha256:ae3e327da323d82e918e593460e23babdce40d7ab21490ddf9fc06dec6b91a18", "sha256:bb7088e89cd751acf66195d2f00cf009a1ea113f3019664032d9075b1e727b6c", "sha256:c17a1878d00a5dd2797ccd73623ceca9d02375328f6218ee6d921e1325e61aff", "sha256:c2bae431d127bf0b1da81fc24e4bba0a84d058e3a96b9dd6475dfcb3c5e8761e", "sha256:de2e80ee1d925984c2504812a310841c241791c5279352be4707cdcd7c255039", "sha256:e6f0cd9c0bd374ef834ee1e0f0999678d49dcc400ea6209113d81528958f97c7", "sha256:f3720d0124aced49f6f2198a6900304411dbbeed12f56951d7c66ebef05e3df6", "sha256:f4a6d3b9f9797eb2d43938ac2c5d96d02aed17ef170c8b38f11798717523ddba" ], "index": "pypi", "version": "==1.8.0" }, "six": { "hashes": [ "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926", "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==1.16.0" }, "tbb": { "hashes": [ "sha256:6578ae9485140efc0dccde98ccec03706d5c9aa7645f06ecfe1bb3cd720c0432", "sha256:949fade8d1542ab0bb42bf2d84b674e9de14978ef7dc5dcf87d9c4c70be2a05a", "sha256:ccb6bad2891d3b1234e7c8d053cdf52e5a546438657924882247d25d461f25c9", "sha256:e120162a188bd8a51b3817bba16573c594374473241278ab07c921bdfebd3c8e" ], "version": "==2021.5.1" }, "threadpoolctl": { "hashes": [ "sha256:8b99adda265feb6773280df41eece7b2e6561b772d21ffd52e372f999024907b", "sha256:a335baacfaa4400ae1f0d8e3a58d6674d2f8828e3716bb2802c44955ad391380" ], "markers": "python_version >= '3.6'", "version": "==3.1.0" } }, "develop": { "certifi": { "hashes": [ "sha256:78884e7c1d4b00ce3cea67b44566851c4343c120abd683433ce934a68ea58872", "sha256:d62a0163eb4c2344ac042ab2bdf75399a71a2d8c7d47eac2e2ee91b9d6339569" ], "version": "==2021.10.8" }, "charset-normalizer": { "hashes": [ "sha256:2857e29ff0d34db842cd7ca3230549d1a697f96ee6d3fb071cfa6c7393832597", "sha256:6881edbebdb17b39b4eaaa821b438bf6eddffb4468cf344f09f89def34a8b1df" ], "markers": "python_version >= '3'", "version": "==2.0.12" }, "flatbuffers": { "hashes": [ "sha256:12158ab0272375eab8db2d663ae97370c33f152b27801fa6024e1d6105fd4dd2", "sha256:3751954f0604580d3219ae49a85fafec9d85eec599c0b96226e1bc0b48e57474" ], "version": "==2.0" }, "h5py": { "hashes": [ "sha256:1c5acc660c458421e88c4c5fe092ce15923adfac4c732af1ac4fced683a5ea97", "sha256:35ab552c6f0a93365b3cb5664a5305f3920daa0a43deb5b2c547c52815ec46b9", "sha256:542781d50e1182b8fb619b1265dfe1c765e18215f818b0ab28b2983c28471325", "sha256:5996ff5adefd2d68c330a4265b6ef92e51b2fc674834a5990add5033bf109e20", "sha256:8752d2814a92aba4e2b2a5922d2782d0029102d99caaf3c201a566bc0b40db29", "sha256:8ecedf16c613973622a334701f67edcc0249469f9daa0576e994fb20ac0405db", "sha256:954c5c39a09b5302f69f752c3bbf165d368a65c8d200f7d5655e0fa6368a75e6", "sha256:98646e659bf8591a2177e12a4461dced2cad72da0ba4247643fd118db88880d2", "sha256:9f39242960b8d7f86f3056cc2546aa3047ff4835985f6483229af8f029e9c8db", "sha256:9fd8a14236fdd092a20c0bdf25c3aba3777718d266fabb0fdded4fcf252d1630", "sha256:a5320837c60870911645e9a935099bdb2be6a786fcf0dac5c860f3b679e2de55", "sha256:c9a5529343a619fea777b7caa27d493595b28b5af8b005e8d1817559fcccf493", "sha256:cd9447633b0bafaf82190d9a8d56f3cb2e8d30169483aee67d800816e028190a", "sha256:d8cacad89aa7daf3626fce106f7f2662ac35b14849df22d252d0d8fab9dc1c0b", "sha256:dbaa1ed9768bf9ff04af0919acc55746e62b28333644f0251f38768313f31745", "sha256:e2b49c48df05e19bb20b400b7ff7dc6f1ee36b84dc717c3771c468b33697b466" ], "markers": "python_version >= '3.7'", "version": "==3.6.0" }, "idna": { "hashes": [ "sha256:84d9dd047ffa80596e0f246e2eab0b391788b0503584e8945f2368256d2735ff", "sha256:9d643ff0a55b762d5cdb124b8eaa99c66322e2157b69160bc32796e824360e6d" ], "markers": "python_version >= '3'", "version": "==3.3" }, "joblib": { "hashes": [ "sha256:4158fcecd13733f8be669be0683b96ebdbbd38d23559f54dca7205aea1bf1e35", "sha256:f21f109b3c7ff9d95f8387f752d0d9c34a02aa2f7060c2135f465da0e5160ff6" ], "markers": "python_version >= '3.6'", "version": "==1.1.0" }, "keras": { "hashes": [ "sha256:05e2faf6885f7899482a7d18fc00ba9655fe2c9296a35ad96949a07a9c27d1bb", "sha256:fedd729b52572fb108a98e3d97e1bac10a81d3917d2103cc20ab2a5f03beb973" ], "index": "pypi", "version": "==2.4.3" }, "numpy": { "hashes": [ "sha256:07a8c89a04997625236c5ecb7afe35a02af3896c8aa01890a849913a2309c676", "sha256:08d9b008d0156c70dc392bb3ab3abb6e7a711383c3247b410b39962263576cd4", "sha256:201b4d0552831f7250a08d3b38de0d989d6f6e4658b709a02a73c524ccc6ffce", "sha256:2c10a93606e0b4b95c9b04b77dc349b398fdfbda382d2a39ba5a822f669a0123", "sha256:3ca688e1b9b95d80250bca34b11a05e389b1420d00e87a0d12dc45f131f704a1", "sha256:48a3aecd3b997bf452a2dedb11f4e79bc5bfd21a1d4cc760e703c31d57c84b3e", "sha256:568dfd16224abddafb1cbcce2ff14f522abe037268514dd7e42c6776a1c3f8e5", "sha256:5bfb1bb598e8229c2d5d48db1860bcf4311337864ea3efdbe1171fb0c5da515d", "sha256:639b54cdf6aa4f82fe37ebf70401bbb74b8508fddcf4797f9fe59615b8c5813a", "sha256:8251ed96f38b47b4295b1ae51631de7ffa8260b5b087808ef09a39a9d66c97ab", "sha256:92bfa69cfbdf7dfc3040978ad09a48091143cffb778ec3b03fa170c494118d75", "sha256:97098b95aa4e418529099c26558eeb8486e66bd1e53a6b606d684d0c3616b168", "sha256:a3bae1a2ed00e90b3ba5f7bd0a7c7999b55d609e0c54ceb2b076a25e345fa9f4", "sha256:c34ea7e9d13a70bf2ab64a2532fe149a9aced424cd05a2c4ba662fd989e3e45f", "sha256:dbc7601a3b7472d559dc7b933b18b4b66f9aa7452c120e87dfb33d02008c8a18", "sha256:e7927a589df200c5e23c57970bafbd0cd322459aa7b1ff73b7c2e84d6e3eae62", "sha256:f8c1f39caad2c896bc0018f699882b345b2a63708008be29b1f355ebf6f933fe", "sha256:fade0d4f4d292b6f39951b6836d7a3c7ef5b2347f3c420cd9820a1d90d794802", "sha256:fdf3c08bce27132395d3c3ba1503cac12e17282358cb4bddc25cc46b0aca07aa" ], "index": "pypi", "version": "==1.22.3" }, "onnx": { "hashes": [ "sha256:0cf47c205b376b3763beef92a6de4152f3b1552d6f640d93044938500baf5958", "sha256:3403884c482859f8cf2e0c276da84bd9ac2235d266726f4ddc9625d3fd263218", "sha256:43b32a2f20c94aa98866deae9e4218faf0495144ad05402e918fa279674b6df9", "sha256:4454906de80a351de6929b0896ad605d106c324c3112c92249240e531f68fbba", "sha256:4aa899f74acd4c5543f0efed8bfe98a3b701df75c5ffa179212e3088c51971bb", "sha256:58d4873ec587ac14c44227d8027787edc88cd61596e646e3417f2a826a920898", "sha256:593ca9e11f15afa26b3aaf2d170bb803d4bd86dbd560aa7be4e5f535d03f83d5", "sha256:67c6d2654c1c203e5c839a47900b51f588fd0de71bbd497fb193d30a0b3ec1e9", "sha256:7924d9baa13dbbf335737229f6d068f380d153679f357e495da60007b61cf56d", "sha256:7a2f5d6998fe79aed80fad9d4522140d02c4d29513047e335d5c5355c1ebda5e", "sha256:82221a07707b1ccf71fb18c6abb77f2566517a55d5185809775b5ff008bfb35c", "sha256:89420e5b824d7e182846fe2aa09190ddb41162b261465c6ca928174bc2ac10b7", "sha256:997d91ffd7b7ae7aee09c6d652a896d906be430d425865c759b51a8de5df9fe0", "sha256:9b9f58ea01c1b20b057f55f628df4fc0403bbc160b7282a56e3bb4df5c7fb96f", "sha256:a6e9135f1d02539ca7573f699fb0d31d3c43d10fac1d2d2239a9a1c553506c29", "sha256:ae74bf8fa343b64e2b7fe205091b7f3728887c018ae061d161dd86ec95eb66a8", "sha256:b2de0b117ad77689d308824a0c9eb89539ec28a799b4e2e05b3bb977b0da0b45", "sha256:c3d3503110f2cab2c818f4a7b2bc8abc3bc79649daa39e70d5fb504b208ddb1e", "sha256:d6581dd2122525549d1d8b431b8bf375298993c77bddb8fd0bf0d92611df76a1", "sha256:d6ddbe89e32f885db736d36fcb132784e368331a18c3b6168ac9f561eb462057", "sha256:df85666ab2b88fd9cf9b2504bcb551da39422eab65a143926a8db58f81b09164", "sha256:ea06dbf57a287657b6dc4e189918e4cb451450308589d482117216194d6f83d6", "sha256:eb46f31f12bb0bfdcfb68497d10b20447cf8fa6c4f693120c013e052645357b8", "sha256:eca224c7c2c8ee4072a0743e4898a84a9bdf8297b5e5910a2632e4c4182ffb2a", "sha256:f335d982b8ed201cf767459b993630acfd20c32b100529f70af9f28a26e72167" ], "version": "==1.11.0" }, "onnxconverter-common": { "hashes": [ "sha256:02b58ca3351fba4eddf8503e1421cfecd4ddcf2074aea4d58e3b2410e6f67ce5", "sha256:8e129c3602d1ef7619c5f3d34a53005b997137ea769362f1f8dd1ddab57ed216" ], "version": "==1.9.0" }, "onnxmltools": { "hashes": [ "sha256:4eb4605f18ed66553fc17438ac8cf5406d66dcc624bedd76d8067e1b08e6c75d", "sha256:9bede96c469ee02a9e343a2f5196a9db43c1090b78f92ed94fcd8e36e3aae7ec" ], "index": "pypi", "version": "==1.10.0" }, "protobuf": { "hashes": [ "sha256:072fbc78d705d3edc7ccac58a62c4c8e0cec856987da7df8aca86e647be4e35c", "sha256:09297b7972da685ce269ec52af761743714996b4381c085205914c41fcab59fb", "sha256:16f519de1313f1b7139ad70772e7db515b1420d208cb16c6d7858ea989fc64a9", "sha256:1c91ef4110fdd2c590effb5dca8fdbdcb3bf563eece99287019c4204f53d81a4", "sha256:3112b58aac3bac9c8be2b60a9daf6b558ca3f7681c130dcdd788ade7c9ffbdca", "sha256:36cecbabbda242915529b8ff364f2263cd4de7c46bbe361418b5ed859677ba58", "sha256:4276cdec4447bd5015453e41bdc0c0c1234eda08420b7c9a18b8d647add51e4b", "sha256:435bb78b37fc386f9275a7035fe4fb1364484e38980d0dd91bc834a02c5ec909", "sha256:48ed3877fa43e22bcacc852ca76d4775741f9709dd9575881a373bd3e85e54b2", "sha256:54a1473077f3b616779ce31f477351a45b4fef8c9fd7892d6d87e287a38df368", "sha256:69da7d39e39942bd52848438462674c463e23963a1fdaa84d88df7fbd7e749b2", "sha256:6cbc312be5e71869d9d5ea25147cdf652a6781cf4d906497ca7690b7b9b5df13", "sha256:7bb03bc2873a2842e5ebb4801f5c7ff1bfbdf426f85d0172f7644fcda0671ae0", "sha256:7ca7da9c339ca8890d66958f5462beabd611eca6c958691a8fe6eccbd1eb0c6e", "sha256:835a9c949dc193953c319603b2961c5c8f4327957fe23d914ca80d982665e8ee", "sha256:84123274d982b9e248a143dadd1b9815049f4477dc783bf84efe6250eb4b836a", "sha256:8961c3a78ebfcd000920c9060a262f082f29838682b1f7201889300c1fbe0616", "sha256:96bd766831596d6014ca88d86dc8fe0fb2e428c0b02432fd9db3943202bf8c5e", "sha256:9df0c10adf3e83015ced42a9a7bd64e13d06c4cf45c340d2c63020ea04499d0a", "sha256:b38057450a0c566cbd04890a40edf916db890f2818e8682221611d78dc32ae26", "sha256:bd95d1dfb9c4f4563e6093a9aa19d9c186bf98fa54da5252531cc0d3a07977e7", "sha256:c1068287025f8ea025103e37d62ffd63fec8e9e636246b89c341aeda8a67c934", "sha256:c438268eebb8cf039552897d78f402d734a404f1360592fef55297285f7f953f", "sha256:cdc076c03381f5c1d9bb1abdcc5503d9ca8b53cf0a9d31a9f6754ec9e6c8af0f", "sha256:f358aa33e03b7a84e0d91270a4d4d8f5df6921abe99a377828839e8ed0c04e07", "sha256:f51d5a9f137f7a2cec2d326a74b6e3fc79d635d69ffe1b036d39fc7d75430d37" ], "markers": "python_version >= '3.5'", "version": "==3.19.4" }, "pyserial": { "hashes": [ "sha256:3c77e014170dfffbd816e6ffc205e9842efb10be9f58ec16d3e8675b4925cddb", "sha256:c4451db6ba391ca6ca299fb3ec7bae67a5c55dde170964c7a14ceefec02f2cf0" ], "index": "pypi", "version": "==3.5" }, "pyyaml": { "hashes": [ "sha256:0283c35a6a9fbf047493e3a0ce8d79ef5030852c51e9d911a27badfde0605293", "sha256:055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b", "sha256:07751360502caac1c067a8132d150cf3d61339af5691fe9e87803040dbc5db57", "sha256:0b4624f379dab24d3725ffde76559cff63d9ec94e1736b556dacdfebe5ab6d4b", "sha256:0ce82d761c532fe4ec3f87fc45688bdd3a4c1dc5e0b4a19814b9009a29baefd4", "sha256:1e4747bc279b4f613a09eb64bba2ba602d8a6664c6ce6396a4d0cd413a50ce07", "sha256:213c60cd50106436cc818accf5baa1aba61c0189ff610f64f4a3e8c6726218ba", "sha256:231710d57adfd809ef5d34183b8ed1eeae3f76459c18fb4a0b373ad56bedcdd9", "sha256:277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287", "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513", "sha256:40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0", "sha256:473f9edb243cb1935ab5a084eb238d842fb8f404ed2193a915d1784b5a6b5fc0", "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92", "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f", "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2", "sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc", "sha256:819b3830a1543db06c4d4b865e70ded25be52a2e0631ccd2f6a47a2822f2fd7c", "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86", "sha256:98c4d36e99714e55cfbaaee6dd5badbc9a1ec339ebfc3b1f52e293aee6bb71a4", "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c", "sha256:9fa600030013c4de8165339db93d182b9431076eb98eb40ee068700c9c813e34", "sha256:a80a78046a72361de73f8f395f1f1e49f956c6be882eed58505a15f3e430962b", "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c", "sha256:b5b9eccad747aabaaffbc6064800670f0c297e52c12754eb1d976c57e4f74dcb", "sha256:c5687b8d43cf58545ade1fe3e055f70eac7a5a1a0bf42824308d868289a95737", "sha256:cba8c411ef271aa037d7357a2bc8f9ee8b58b9965831d9e51baf703280dc73d3", "sha256:d15a181d1ecd0d4270dc32edb46f7cb7733c7c508857278d3d378d14d606db2d", "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53", "sha256:d4eccecf9adf6fbcc6861a38015c2a64f38b9d94838ac1810a9023a0609e1b78", "sha256:d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803", "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a", "sha256:e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174", "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5" ], "markers": "python_version >= '3.6'", "version": "==6.0" }, "requests": { "hashes": [ "sha256:68d7c56fd5a8999887728ef304a6d12edc7be74f1cfa47714fc8b414525c9a61", "sha256:f22fa1e554c9ddfd16e6e41ac79759e17be9e492b3587efa038054674760e72d" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5'", "version": "==2.27.1" }, "scikit-learn": { "hashes": [ "sha256:08ef968f6b72033c16c479c966bf37ccd49b06ea91b765e1cc27afefe723920b", "sha256:158faf30684c92a78e12da19c73feff9641a928a8024b4fa5ec11d583f3d8a87", "sha256:16455ace947d8d9e5391435c2977178d0ff03a261571e67f627c8fee0f9d431a", "sha256:245c9b5a67445f6f044411e16a93a554edc1efdcce94d3fc0bc6a4b9ac30b752", "sha256:285db0352e635b9e3392b0b426bc48c3b485512d3b4ac3c7a44ec2a2ba061e66", "sha256:2f3b453e0b149898577e301d27e098dfe1a36943f7bb0ad704d1e548efc3b448", "sha256:46f431ec59dead665e1370314dbebc99ead05e1c0a9df42f22d6a0e00044820f", "sha256:55f2f3a8414e14fbee03782f9fe16cca0f141d639d2b1c1a36779fa069e1db57", "sha256:5cb33fe1dc6f73dc19e67b264dbb5dde2a0539b986435fdd78ed978c14654830", "sha256:75307d9ea39236cad7eea87143155eea24d48f93f3a2f9389c817f7019f00705", "sha256:7626a34eabbf370a638f32d1a3ad50526844ba58d63e3ab81ba91e2a7c6d037e", "sha256:7a93c1292799620df90348800d5ac06f3794c1316ca247525fa31169f6d25855", "sha256:7d6b2475f1c23a698b48515217eb26b45a6598c7b1840ba23b3c5acece658dbb", "sha256:80095a1e4b93bd33261ef03b9bc86d6db649f988ea4dbcf7110d0cded8d7213d", "sha256:85260fb430b795d806251dd3bb05e6f48cdc777ac31f2bcf2bc8bbed3270a8f5", "sha256:9369b030e155f8188743eb4893ac17a27f81d28a884af460870c7c072f114243", "sha256:a053a6a527c87c5c4fa7bf1ab2556fa16d8345cf99b6c5a19030a4a7cd8fd2c0", "sha256:a90b60048f9ffdd962d2ad2fb16367a87ac34d76e02550968719eb7b5716fd10", "sha256:a999c9f02ff9570c783069f1074f06fe7386ec65b84c983db5aeb8144356a355", "sha256:b1391d1a6e2268485a63c3073111fe3ba6ec5145fc957481cfd0652be571226d", "sha256:b54a62c6e318ddbfa7d22c383466d38d2ee770ebdb5ddb668d56a099f6eaf75f", "sha256:b5870959a5484b614f26d31ca4c17524b1b0317522199dc985c3b4256e030767", "sha256:bc3744dabc56b50bec73624aeca02e0def06b03cb287de26836e730659c5d29c", "sha256:d93d4c28370aea8a7cbf6015e8a669cd5d69f856cc2aa44e7a590fb805bb5583", "sha256:d9aac97e57c196206179f674f09bc6bffcd0284e2ba95b7fe0b402ac3f986023", "sha256:da3c84694ff693b5b3194d8752ccf935a665b8b5edc33a283122f4273ca3e687", "sha256:e174242caecb11e4abf169342641778f68e1bfaba80cd18acd6bc84286b9a534", "sha256:eabceab574f471de0b0eb3f2ecf2eee9f10b3106570481d007ed1c84ebf6d6a1", "sha256:f14517e174bd7332f1cca2c959e704696a5e0ba246eb8763e6c24876d8710049", "sha256:fa38a1b9b38ae1fad2863eff5e0d69608567453fdfc850c992e6e47eb764e846", "sha256:ff3fa8ea0e09e38677762afc6e14cad77b5e125b0ea70c9bba1992f02c93b028", "sha256:ff746a69ff2ef25f62b36338c615dd15954ddc3ab8e73530237dd73235e76d62" ], "index": "pypi", "version": "==1.0.2" }, "scipy": { "hashes": [ "sha256:011d4386b53b933142f58a652aa0f149c9b9242abd4f900b9f4ea5fbafc86b89", "sha256:16e09ef68b352d73befa8bcaf3ebe25d3941fe1a58c82909d5589856e6bc8174", "sha256:31d4f2d6b724bc9a98e527b5849b8a7e589bf1ea630c33aa563eda912c9ff0bd", "sha256:38aa39b6724cb65271e469013aeb6f2ce66fd44f093e241c28a9c6bc64fd79ed", "sha256:3d573228c10a3a8c32b9037be982e6440e411b443a6267b067cac72f690b8d56", "sha256:3d9dd6c8b93a22bf9a3a52d1327aca7e092b1299fb3afc4f89e8eba381be7b59", "sha256:559a8a4c03a5ba9fe3232f39ed24f86457e4f3f6c0abbeae1fb945029f092720", "sha256:5e73343c5e0d413c1f937302b2e04fb07872f5843041bcfd50699aef6e95e399", "sha256:723b9f878095ed994756fa4ee3060c450e2db0139c5ba248ee3f9628bd64e735", "sha256:87b01c7d5761e8a266a0fbdb9d88dcba0910d63c1c671bdb4d99d29f469e9e03", "sha256:8f4d059a97b29c91afad46b1737274cb282357a305a80bdd9e8adf3b0ca6a3f0", "sha256:92b2c2af4183ed09afb595709a8ef5783b2baf7f41e26ece24e1329c109691a7", "sha256:937d28722f13302febde29847bbe554b89073fbb924a30475e5ed7b028898b5f", "sha256:a279e27c7f4566ef18bab1b1e2c37d168e365080974758d107e7d237d3f0f484", "sha256:ad5be4039147c808e64f99c0e8a9641eb5d2fa079ff5894dcd8240e94e347af4", "sha256:ae3e327da323d82e918e593460e23babdce40d7ab21490ddf9fc06dec6b91a18", "sha256:bb7088e89cd751acf66195d2f00cf009a1ea113f3019664032d9075b1e727b6c", "sha256:c17a1878d00a5dd2797ccd73623ceca9d02375328f6218ee6d921e1325e61aff", "sha256:c2bae431d127bf0b1da81fc24e4bba0a84d058e3a96b9dd6475dfcb3c5e8761e", "sha256:de2e80ee1d925984c2504812a310841c241791c5279352be4707cdcd7c255039", "sha256:e6f0cd9c0bd374ef834ee1e0f0999678d49dcc400ea6209113d81528958f97c7", "sha256:f3720d0124aced49f6f2198a6900304411dbbeed12f56951d7c66ebef05e3df6", "sha256:f4a6d3b9f9797eb2d43938ac2c5d96d02aed17ef170c8b38f11798717523ddba" ], "index": "pypi", "version": "==1.8.0" }, "six": { "hashes": [ "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926", "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==1.16.0" }, "skl2onnx": { "hashes": [ "sha256:3942a97f30fc0c8d2fb4d715332714a3f0571f33b8075f4aa3b2b234566165c4", "sha256:7067deb0430c03d6843d113b760320a8fd13ba926ff0a5329c2081dfbce85ec5" ], "index": "pypi", "version": "==1.11" }, "tf2onnx": { "hashes": [ "sha256:375211ec8f2d3cd32648290f3e60402197a616fb1b677caeca9904f17bd145d9" ], "index": "pypi", "version": "==1.9.3" }, "threadpoolctl": { "hashes": [ "sha256:8b99adda265feb6773280df41eece7b2e6561b772d21ffd52e372f999024907b", "sha256:a335baacfaa4400ae1f0d8e3a58d6674d2f8828e3716bb2802c44955ad391380" ], "markers": "python_version >= '3.6'", "version": "==3.1.0" }, "typing-extensions": { "hashes": [ "sha256:1a9462dcc3347a79b1f1c0271fbe79e844580bb598bafa1ed208b94da3cdcd42", "sha256:21c85e0fe4b9a155d0799430b0ad741cdce7e359660ccbd8b530613e8df88ce2" ], "markers": "python_version >= '3.6'", "version": "==4.1.1" }, "urllib3": { "hashes": [ "sha256:000ca7f471a233c2251c6c7023ee85305721bfdf18621ebff4fd17a8653427ed", "sha256:0e7c33d9a63e7ddfcb86780aac87befc2fbddf46c58dbb487e0855f7ceec283c" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4' and python_version < '4'", "version": "==1.26.8" } } } ```
matteius commented 2 years ago

@pklapperich I think you are going to like this update -- when you tried my branch yesterday I still had two failing tests that by the end of the day I had figured out and reduced down the number of changes in my branch and now all tests are passing. I just tried your example above in my latest branch and it worked--took less than 3 minutes! Check it out:

$ pipenv lock --clear && pipenv sync --dev ``` matteius@matteius-VirtualBox:~/shared-projects/pipenv-triage/pipenv-4977$ pipenv lock --clear && pipenv sync --dev Warning: Python 3.8 was not found on your system... Would you like us to install CPython 3.8.12 with Pyenv? [Y/n]: Y Installing CPython 3.8.12 with /home/matteius/.pyenv/bin/pyenv (this may take a few minutes)... βœ” Success! Creating a virtualenv for this project... Pipfile: /home/matteius/shared-projects/pipenv-triage/pipenv-4977/Pipfile Using /home/matteius/.pyenv/versions/3.8.12/bin/python3.8 (3.8.12) to create virtualenv... β Έ Creating virtual environment...created virtual environment CPython3.8.12.final.0-64 in 556ms creator CPython3Posix(dest=/home/matteius/.virtualenvs/pipenv-4977-Zx_QPntz, clear=False, no_vcs_ignore=False, global=False) seeder FromAppData(download=False, pip=bundle, setuptools=bundle, wheel=bundle, via=copy, app_data_dir=/home/matteius/.local/share/virtualenv) added seed packages: pip==22.0.3, setuptools==60.8.2, wheel==0.37.1 activators BashActivator,CShellActivator,FishActivator,NushellActivator,PowerShellActivator,PythonActivator βœ” Successfully created virtual environment! Virtualenv location: /home/matteius/.virtualenvs/pipenv-4977-Zx_QPntz Locking [dev-packages] dependencies... Building requirements... Resolving dependencies... βœ” Success! Locking [packages] dependencies... Building requirements... Resolving dependencies... βœ” Success! Updated Pipfile.lock (82f31d)! Installing dependencies from Pipfile.lock (82f31d)... 🐍 β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰ 39/39 β€” 00:00:38 To activate this project's virtualenv, run pipenv shell. Alternatively, run a command inside the virtualenv with pipenv run. All dependencies are now up-to-date! ``` ``` matteius@matteius-VirtualBox:~/shared-projects/pipenv-triage/pipenv-4977$ cat Pipfile [[source]] url = "https://pypi.org/simple" verify_ssl = true name = "pypi" [[source]] url = "https://pypi.anaconda.org/intel/simple" verify_ssl = true name = "intel" [packages] numpy = {version="", index="pypi"} scipy = {version="", index="pypi"} scikit-learn = {version="", index="pypi"} scikit-learn-intelex = {version="", index="pypi"} #dpcpp_cpp_rt = {version="", index="pypi"} #pywavelets = {version="", index="pypi"} #tensorpac = {version="", index="pypi"} #matplotlib = {version="", index="pypi"} onnxruntime = {version="", index="pypi"} neurokit2 = {version="", index="pypi"} [dev-packages] keras = {version="<2.5.0", index="pypi"} onnxmltools = {version="", index="pypi"} skl2onnx = {version="", index="pypi"} tf2onnx = {version="", index="pypi"} pyserial = {version="", index="pypi"} [requires] python_version = "3.8" matteius@matteius-VirtualBox:~/shared-projects/pipenv-triage/pipenv-4977$ cat Pipfile.lock { "_meta": { "hash": { "sha256": "fa61c9fcec932ff8990b521c1c8c583d70320618fea3e2b0c47f17a95382f31d" }, "pipfile-spec": 6, "requires": { "python_version": "3.8" }, "sources": [ { "name": "pypi", "url": "https://pypi.org/simple", "verify_ssl": true }, { "name": "intel", "url": "https://pypi.anaconda.org/intel/simple", "verify_ssl": true } ] }, "default": { "cycler": { "hashes": [ "sha256:3a27e95f763a428a739d2add979fa7494c912a32c17c4c38c4d5f082cad165a3", "sha256:9c87405839a19696e837b3b818fed3f5f69f16f1eec1a1ad77e043dcea9c772f" ], "markers": "python_version >= '3.6'", "version": "==0.11.0" }, "daal": { "hashes": [ "sha256:5e9c1cf5936ce5fbc5f34bebce60654f9dd4788ef884aa9ee0f27d4dbd938e2f", "sha256:61113eb2aa7047f0ff60506b6b07e5a3e938165b8711025808ca4dca4f793a8a" ], "version": "==2021.5.3" }, "daal4py": { "hashes": [ "sha256:3d65febe56cd04678391d314b8cad999e0beed2eac7d2ce109ba65fff131c58a", "sha256:552db974937a0873ee5ecacd3c315dded3ee16666ee5ee05718904ed14a09ab0", "sha256:9d45101f35226c4e9ce573bb848150f3bfef518ec031d2f970655098cb2032bd", "sha256:d7e4a1ba1a1afc665c4405d7186ad694aa97b0eae28d725efeb47b8bd7aa90cf", "sha256:d9c9c15a654b248331ce0b1bddf928c685f6e1978e17e1b31785e2ac7f8b6bb7", "sha256:e3098c6075d2e544f2e071bb54f9f23d6889e752757d447cdcab476e5b3ac282", "sha256:ed6231a45e15d3a0ce794b54f8c81706a06393bcd087bb88280a02667c9a2ee2", "sha256:f30fccaf371f2f72b41cca6f7845387f48b5e7c39713474d5663be747a77225a" ], "version": "==2021.5.3" }, "flatbuffers": { "hashes": [ "sha256:12158ab0272375eab8db2d663ae97370c33f152b27801fa6024e1d6105fd4dd2", "sha256:3751954f0604580d3219ae49a85fafec9d85eec599c0b96226e1bc0b48e57474" ], "version": "==2.0" }, "fonttools": { "hashes": [ "sha256:084dd1762f083a1bf49e41da1bfeafb475c9dce46265690a6bdd33290b9a63f4", "sha256:6985cc5380c06db07fdc73ade15e6adbd4ce6ff850d7561ca00f97090b4b263d" ], "markers": "python_version >= '3.7'", "version": "==4.30.0" }, "joblib": { "hashes": [ "sha256:4158fcecd13733f8be669be0683b96ebdbbd38d23559f54dca7205aea1bf1e35", "sha256:f21f109b3c7ff9d95f8387f752d0d9c34a02aa2f7060c2135f465da0e5160ff6" ], "markers": "python_version >= '3.6'", "version": "==1.1.0" }, "kiwisolver": { "hashes": [ "sha256:0007840186bacfaa0aba4466d5890334ea5938e0bb7e28078a0eb0e63b5b59d5", "sha256:19554bd8d54cf41139f376753af1a644b63c9ca93f8f72009d50a2080f870f77", "sha256:1d45d1c74f88b9f41062716c727f78f2a59a5476ecbe74956fafb423c5c87a76", "sha256:1d819553730d3c2724582124aee8a03c846ec4362ded1034c16fb3ef309264e6", "sha256:2210f28778c7d2ee13f3c2a20a3a22db889e75f4ec13a21072eabb5693801e84", "sha256:22521219ca739654a296eea6d4367703558fba16f98688bd8ce65abff36eaa84", "sha256:25405f88a37c5f5bcba01c6e350086d65e7465fd1caaf986333d2a045045a223", "sha256:2b65bd35f3e06a47b5c30ea99e0c2b88f72c6476eedaf8cfbc8e66adb5479dcf", "sha256:2ddb500a2808c100e72c075cbb00bf32e62763c82b6a882d403f01a119e3f402", "sha256:2f8f6c8f4f1cff93ca5058d6ec5f0efda922ecb3f4c5fb76181f327decff98b8", "sha256:30fa008c172355c7768159983a7270cb23838c4d7db73d6c0f6b60dde0d432c6", "sha256:3dbb3cea20b4af4f49f84cffaf45dd5f88e8594d18568e0225e6ad9dec0e7967", "sha256:4116ba9a58109ed5e4cb315bdcbff9838f3159d099ba5259c7c7fb77f8537492", "sha256:44e6adf67577dbdfa2d9f06db9fbc5639afefdb5bf2b4dfec25c3a7fbc619536", "sha256:5326ddfacbe51abf9469fe668944bc2e399181a2158cb5d45e1d40856b2a0589", "sha256:70adc3658138bc77a36ce769f5f183169bc0a2906a4f61f09673f7181255ac9b", "sha256:72be6ebb4e92520b9726d7146bc9c9b277513a57a38efcf66db0620aec0097e0", "sha256:7843b1624d6ccca403a610d1277f7c28ad184c5aa88a1750c1a999754e65b439", "sha256:7ba5a1041480c6e0a8b11a9544d53562abc2d19220bfa14133e0cdd9967e97af", "sha256:80efd202108c3a4150e042b269f7c78643420cc232a0a771743bb96b742f838f", "sha256:82f49c5a79d3839bc8f38cb5f4bfc87e15f04cbafa5fbd12fb32c941cb529cfb", "sha256:83d2c9db5dfc537d0171e32de160461230eb14663299b7e6d18ca6dca21e4977", "sha256:8d93a1095f83e908fc253f2fb569c2711414c0bfd451cab580466465b235b470", "sha256:8dc3d842fa41a33fe83d9f5c66c0cc1f28756530cd89944b63b072281e852031", "sha256:9661a04ca3c950a8ac8c47f53cbc0b530bce1b52f516a1e87b7736fec24bfff0", "sha256:a498bcd005e8a3fedd0022bb30ee0ad92728154a8798b703f394484452550507", "sha256:a7a4cf5bbdc861987a7745aed7a536c6405256853c94abc9f3287c3fa401b174", "sha256:b5074fb09429f2b7bc82b6fb4be8645dcbac14e592128beeff5461dcde0af09f", "sha256:b6a5431940f28b6de123de42f0eb47b84a073ee3c3345dc109ad550a3307dd28", "sha256:ba677bcaff9429fd1bf01648ad0901cea56c0d068df383d5f5856d88221fe75b", "sha256:bcadb05c3d4794eb9eee1dddf1c24215c92fb7b55a80beae7a60530a91060560", "sha256:bf7eb45d14fc036514c09554bf983f2a72323254912ed0c3c8e697b62c4c158f", "sha256:c358721aebd40c243894298f685a19eb0491a5c3e0b923b9f887ef1193ddf829", "sha256:c4550a359c5157aaf8507e6820d98682872b9100ce7607f8aa070b4b8af6c298", "sha256:c6572c2dab23c86a14e82c245473d45b4c515314f1f859e92608dcafbd2f19b8", "sha256:cba430db673c29376135e695c6e2501c44c256a81495da849e85d1793ee975ad", "sha256:dedc71c8eb9c5096037766390172c34fb86ef048b8e8958b4e484b9e505d66bc", "sha256:e6f5eb2f53fac7d408a45fbcdeda7224b1cfff64919d0f95473420a931347ae9", "sha256:ec2eba188c1906b05b9b49ae55aae4efd8150c61ba450e6721f64620c50b59eb", "sha256:ee040a7de8d295dbd261ef2d6d3192f13e2b08ec4a954de34a6fb8ff6422e24c", "sha256:eedd3b59190885d1ebdf6c5e0ca56828beb1949b4dfe6e5d0256a461429ac386", "sha256:f441422bb313ab25de7b3dbfd388e790eceb76ce01a18199ec4944b369017009", "sha256:f8eb7b6716f5b50e9c06207a14172cf2de201e41912ebe732846c02c830455b9", "sha256:fc4453705b81d03568d5b808ad8f09c77c47534f6ac2e72e733f9ca4714aa75c" ], "markers": "python_version >= '3.7'", "version": "==1.3.2" }, "matplotlib": { "hashes": [ "sha256:14334b9902ec776461c4b8c6516e26b450f7ebe0b3ef8703bf5cdfbbaecf774a", "sha256:2252bfac85cec7af4a67e494bfccf9080bcba8a0299701eab075f48847cca907", "sha256:2e3484d8455af3fdb0424eae1789af61f6a79da0c80079125112fd5c1b604218", "sha256:34a1fc29f8f96e78ec57a5eff5e8d8b53d3298c3be6df61e7aa9efba26929522", "sha256:3e66497cd990b1a130e21919b004da2f1dc112132c01ac78011a90a0f9229778", "sha256:40e0d7df05e8efe60397c69b467fc8f87a2affeb4d562fe92b72ff8937a2b511", "sha256:456cc8334f6d1124e8ff856b42d2cc1c84335375a16448189999496549f7182b", "sha256:506b210cc6e66a0d1c2bb765d055f4f6bc2745070fb1129203b67e85bbfa5c18", "sha256:53273c5487d1c19c3bc03b9eb82adaf8456f243b97ed79d09dded747abaf1235", "sha256:577ed20ec9a18d6bdedb4616f5e9e957b4c08563a9f985563a31fd5b10564d2a", "sha256:6803299cbf4665eca14428d9e886de62e24f4223ac31ab9c5d6d5339a39782c7", "sha256:68fa30cec89b6139dc559ed6ef226c53fd80396da1919a1b5ef672c911aaa767", "sha256:6c094e4bfecd2fa7f9adffd03d8abceed7157c928c2976899de282f3600f0a3d", "sha256:778d398c4866d8e36ee3bf833779c940b5f57192fa0a549b3ad67bc4c822771b", "sha256:7a350ca685d9f594123f652ba796ee37219bf72c8e0fc4b471473d87121d6d34", "sha256:87900c67c0f1728e6db17c6809ec05c025c6624dcf96a8020326ea15378fe8e7", "sha256:8a77906dc2ef9b67407cec0bdbf08e3971141e535db888974a915be5e1e3efc6", "sha256:8e70ae6475cfd0fad3816dcbf6cac536dc6f100f7474be58d59fa306e6e768a4", "sha256:abf67e05a1b7f86583f6ebd01f69b693b9c535276f4e943292e444855870a1b8", "sha256:b04fc29bcef04d4e2d626af28d9d892be6aba94856cb46ed52bcb219ceac8943", "sha256:b19a761b948e939a9e20173aaae76070025f0024fc8f7ba08bef22a5c8573afc", "sha256:b2e9810e09c3a47b73ce9cab5a72243a1258f61e7900969097a817232246ce1c", "sha256:b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1", "sha256:b8a4fb2a0c5afbe9604f8a91d7d0f27b1832c3e0b5e365f95a13015822b4cd65", "sha256:bb1c613908f11bac270bc7494d68b1ef6e7c224b7a4204d5dacf3522a41e2bc3", "sha256:d24e5bb8028541ce25e59390122f5e48c8506b7e35587e5135efcb6471b4ac6c", "sha256:d70a32ee1f8b55eed3fd4e892f0286df8cccc7e0475c11d33b5d0a148f5c7599", "sha256:e293b16cf303fe82995e41700d172a58a15efc5331125d08246b520843ef21ee", "sha256:e2f28a07b4f82abb40267864ad7b3a4ed76f1b1663e81c7efc84a9b9248f672f", "sha256:e3520a274a0e054e919f5b3279ee5dbccf5311833819ccf3399dab7c83e90a25", "sha256:e3b6f3fd0d8ca37861c31e9a7cab71a0ef14c639b4c95654ea1dd153158bf0df", "sha256:e486f60db0cd1c8d68464d9484fd2a94011c1ac8593d765d0211f9daba2bd535", "sha256:e8c87cdaf06fd7b2477f68909838ff4176f105064a72ca9d24d3f2a29f73d393", "sha256:edf5e4e1d5fb22c18820e8586fb867455de3b109c309cb4fce3aaed85d9468d1", "sha256:fe8d40c434a8e2c68d64c6d6a04e77f21791a93ff6afe0dce169597c110d3079" ], "markers": "python_version >= '3.7'", "version": "==3.5.1" }, "neurokit2": { "hashes": [ "sha256:000d908fa90441673fa7cdfb0bd4c5326c701daf260e2c612fb0900fd8421e75", "sha256:03c2aa354ab8d8b9a559f4e5e465b67630465a230b919a3a412c9aad31c59395" ], "index": "pypi", "version": "==0.1.7" }, "numpy": { "hashes": [ "sha256:07a8c89a04997625236c5ecb7afe35a02af3896c8aa01890a849913a2309c676", "sha256:08d9b008d0156c70dc392bb3ab3abb6e7a711383c3247b410b39962263576cd4", "sha256:201b4d0552831f7250a08d3b38de0d989d6f6e4658b709a02a73c524ccc6ffce", "sha256:2c10a93606e0b4b95c9b04b77dc349b398fdfbda382d2a39ba5a822f669a0123", "sha256:3ca688e1b9b95d80250bca34b11a05e389b1420d00e87a0d12dc45f131f704a1", "sha256:48a3aecd3b997bf452a2dedb11f4e79bc5bfd21a1d4cc760e703c31d57c84b3e", "sha256:568dfd16224abddafb1cbcce2ff14f522abe037268514dd7e42c6776a1c3f8e5", "sha256:5bfb1bb598e8229c2d5d48db1860bcf4311337864ea3efdbe1171fb0c5da515d", "sha256:639b54cdf6aa4f82fe37ebf70401bbb74b8508fddcf4797f9fe59615b8c5813a", "sha256:8251ed96f38b47b4295b1ae51631de7ffa8260b5b087808ef09a39a9d66c97ab", "sha256:92bfa69cfbdf7dfc3040978ad09a48091143cffb778ec3b03fa170c494118d75", "sha256:97098b95aa4e418529099c26558eeb8486e66bd1e53a6b606d684d0c3616b168", "sha256:a3bae1a2ed00e90b3ba5f7bd0a7c7999b55d609e0c54ceb2b076a25e345fa9f4", "sha256:c34ea7e9d13a70bf2ab64a2532fe149a9aced424cd05a2c4ba662fd989e3e45f", "sha256:dbc7601a3b7472d559dc7b933b18b4b66f9aa7452c120e87dfb33d02008c8a18", "sha256:e7927a589df200c5e23c57970bafbd0cd322459aa7b1ff73b7c2e84d6e3eae62", "sha256:f8c1f39caad2c896bc0018f699882b345b2a63708008be29b1f355ebf6f933fe", "sha256:f950f8845b480cffe522913d35567e29dd381b0dc7e4ce6a4a9f9156417d2430", "sha256:fade0d4f4d292b6f39951b6836d7a3c7ef5b2347f3c420cd9820a1d90d794802", "sha256:fdf3c08bce27132395d3c3ba1503cac12e17282358cb4bddc25cc46b0aca07aa" ], "index": "pypi", "version": "==1.22.3" }, "onnxruntime": { "hashes": [ "sha256:1fb57101581eaec64d335d0675908fd41cae91b496475fc96fc5bb2a58844e5b", "sha256:2419563e9fc4f5b7dedd4b70d2249a952001c33f3186b83212ad2a7a0824c9b4", "sha256:2f9ab7deab0c44e2b02f3eb8a0b3bee4374575a6c4bb4b2928d5ffcc305f430a", "sha256:34cfb07a8af91b3b7f82ad9db8f6dce67f0bd672cdaf659d0fd86aaba7a021d9", "sha256:3913769691f7f20e13070d65bfddd9f85f862274fcc17312c3b7d3fee8af21d8", "sha256:4087da19d2bb03ede012b9fd5f77f3b41f3ff500d2359d3d6361d593e47be59a", "sha256:44e6dbe8a375b1d506f5ec9867f48d4ebe20f70156b31aed2025b9db4b06e2e3", "sha256:618c84c6bff73fd6dd6fcf304eb24a804df6c11f512ddead4cc73074b60012b8", "sha256:69d0d5785c779f63b4cef2890a9eb47ad178ba1d7f7fd5028dacb5fc1467c537", "sha256:753fbf64436ce93c750e817d8469ff4740adf18caec2822568687563f63ccff9", "sha256:aa5dec9c7c4fd5b8b9b77768c0f493fe730c7c277fd919c00578afa073d3f1b2", "sha256:bbf9eaa6db369b52960c012fd8a8b6cca862a4deb42fdb5e1fa2ffb749c2274c", "sha256:ccc3240c0c9d662f04bd56e593c1bbad84c84a40b1c9f965d39cd857290468a9", "sha256:cf9599f58dab002dbe792b42c6bb6765b70795a87b40dcdbd5c180eb535a1099", "sha256:d5b0d3cf319c038b9f4479235dcf842d959f1248be48953f478822ac48a60617", "sha256:d733a687ee8117556ff0e60d7d3b2151c727f2ccf38dca1f5d71049800a02221", "sha256:dbab3f8cf8d4f0ee5ecea27dbd0536521322b44a7dbf67e4c1e6fc1e43fac97c", "sha256:df0c434f4a40212e87003b1b6f38a152d2f1d6447c261cd32c28434dd765c41c", "sha256:f7265bcd62f154f891f745d96f686ed92a0c0ca5589dc14f9203ae847e932792" ], "index": "pypi", "version": "==1.10.0" }, "packaging": { "hashes": [ "sha256:dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb", "sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522" ], "markers": "python_version >= '3.6'", "version": "==21.3" }, "pandas": { "hashes": [ "sha256:0259cd11e7e6125aaea3af823b80444f3adad6149ff4c97fef760093598b3e34", "sha256:04dd15d9db538470900c851498e532ef28d4e56bfe72c9523acb32042de43dfb", "sha256:0b1a13f647e4209ed7dbb5da3497891d0045da9785327530ab696417ef478f84", "sha256:19f7c632436b1b4f84615c3b127bbd7bc603db95e3d4332ed259dc815c9aaa26", "sha256:1b384516dbb4e6aae30e3464c2e77c563da5980440fbdfbd0968e3942f8f9d70", "sha256:1d85d5f6be66dfd6d1d8d13b9535e342a2214260f1852654b19fa4d7b8d1218b", "sha256:2e5a7a1e0ecaac652326af627a3eca84886da9e667d68286866d4e33f6547caf", "sha256:3129a35d9dad1d80c234dd78f8f03141b914395d23f97cf92a366dcd19f8f8bf", "sha256:358b0bc98a5ff067132d23bf7a2242ee95db9ea5b7bbc401cf79205f11502fd3", "sha256:3dfb32ed50122fe8c5e7f2b8d97387edd742cc78f9ec36f007ee126cd3720907", "sha256:4e1176f45981c8ccc8161bc036916c004ca51037a7ed73f2d2a9857e6dbe654f", "sha256:508c99debccd15790d526ce6b1624b97a5e1e4ca5b871319fb0ebfd46b8f4dad", "sha256:6105af6533f8b63a43ea9f08a2ede04e8f43e49daef0209ab0d30352bcf08bee", "sha256:6d6ad1da00c7cc7d8dd1559a6ba59ba3973be6b15722d49738b2be0977eb8a0c", "sha256:7ea47ba1d6f359680130bd29af497333be6110de8f4c35b9211eec5a5a9630fa", "sha256:8db93ec98ac7cb5f8ac1420c10f5e3c43533153f253fe7fb6d891cf5aa2b80d2", "sha256:96e9ece5759f9b47ae43794b6359bbc54805d76e573b161ae770c1ea59393106", "sha256:bbb15ad79050e8b8d39ec40dd96a30cd09b886a2ae8848d0df1abba4d5502a67", "sha256:c614001129b2a5add5e3677c3a213a9e6fd376204cb8d17c04e84ff7dfc02a73", "sha256:e6a7bbbb7950063bfc942f8794bc3e31697c020a14f1cd8905fc1d28ec674a01", "sha256:f02e85e6d832be37d7f16cf6ac8bb26b519ace3e5f3235564a91c7f658ab2a43" ], "markers": "python_version >= '3.8'", "version": "==1.4.1" }, "pillow": { "hashes": [ "sha256:011233e0c42a4a7836498e98c1acf5e744c96a67dd5032a6f666cc1fb97eab97", "sha256:0f29d831e2151e0b7b39981756d201f7108d3d215896212ffe2e992d06bfe049", "sha256:12875d118f21cf35604176872447cdb57b07126750a33748bac15e77f90f1f9c", "sha256:14d4b1341ac07ae07eb2cc682f459bec932a380c3b122f5540432d8977e64eae", "sha256:1c3c33ac69cf059bbb9d1a71eeaba76781b450bc307e2291f8a4764d779a6b28", "sha256:1d19397351f73a88904ad1aee421e800fe4bbcd1aeee6435fb62d0a05ccd1030", "sha256:253e8a302a96df6927310a9d44e6103055e8fb96a6822f8b7f514bb7ef77de56", "sha256:2632d0f846b7c7600edf53c48f8f9f1e13e62f66a6dbc15191029d950bfed976", "sha256:335ace1a22325395c4ea88e00ba3dc89ca029bd66bd5a3c382d53e44f0ccd77e", "sha256:413ce0bbf9fc6278b2d63309dfeefe452835e1c78398efb431bab0672fe9274e", "sha256:5100b45a4638e3c00e4d2320d3193bdabb2d75e79793af7c3eb139e4f569f16f", "sha256:514ceac913076feefbeaf89771fd6febde78b0c4c1b23aaeab082c41c694e81b", "sha256:528a2a692c65dd5cafc130de286030af251d2ee0483a5bf50c9348aefe834e8a", "sha256:6295f6763749b89c994fcb6d8a7f7ce03c3992e695f89f00b741b4580b199b7e", "sha256:6c8bc8238a7dfdaf7a75f5ec5a663f4173f8c367e5a39f87e720495e1eed75fa", "sha256:718856856ba31f14f13ba885ff13874be7fefc53984d2832458f12c38205f7f7", "sha256:7f7609a718b177bf171ac93cea9fd2ddc0e03e84d8fa4e887bdfc39671d46b00", "sha256:80ca33961ced9c63358056bd08403ff866512038883e74f3a4bf88ad3eb66838", "sha256:80fe64a6deb6fcfdf7b8386f2cf216d329be6f2781f7d90304351811fb591360", "sha256:81c4b81611e3a3cb30e59b0cf05b888c675f97e3adb2c8672c3154047980726b", "sha256:855c583f268edde09474b081e3ddcd5cf3b20c12f26e0d434e1386cc5d318e7a", "sha256:9bfdb82cdfeccec50aad441afc332faf8606dfa5e8efd18a6692b5d6e79f00fd", "sha256:a5d24e1d674dd9d72c66ad3ea9131322819ff86250b30dc5821cbafcfa0b96b4", "sha256:a9f44cd7e162ac6191491d7249cceb02b8116b0f7e847ee33f739d7cb1ea1f70", "sha256:b5b3f092fe345c03bca1e0b687dfbb39364b21ebb8ba90e3fa707374b7915204", "sha256:b9618823bd237c0d2575283f2939655f54d51b4527ec3972907a927acbcc5bfc", "sha256:cef9c85ccbe9bee00909758936ea841ef12035296c748aaceee535969e27d31b", "sha256:d21237d0cd37acded35154e29aec853e945950321dd2ffd1a7d86fe686814669", "sha256:d3c5c79ab7dfce6d88f1ba639b77e77a17ea33a01b07b99840d6ed08031cb2a7", "sha256:d9d7942b624b04b895cb95af03a23407f17646815495ce4547f0e60e0b06f58e", "sha256:db6d9fac65bd08cea7f3540b899977c6dee9edad959fa4eaf305940d9cbd861c", "sha256:ede5af4a2702444a832a800b8eb7f0a7a1c0eed55b644642e049c98d589e5092", "sha256:effb7749713d5317478bb3acb3f81d9d7c7f86726d41c1facca068a04cf5bb4c", "sha256:f154d173286a5d1863637a7dcd8c3437bb557520b01bddb0be0258dcb72696b5", "sha256:f25ed6e28ddf50de7e7ea99d7a976d6a9c415f03adcaac9c41ff6ff41b6d86ac" ], "markers": "python_version >= '3.7'", "version": "==9.0.1" }, "protobuf": { "hashes": [ "sha256:072fbc78d705d3edc7ccac58a62c4c8e0cec856987da7df8aca86e647be4e35c", "sha256:09297b7972da685ce269ec52af761743714996b4381c085205914c41fcab59fb", "sha256:16f519de1313f1b7139ad70772e7db515b1420d208cb16c6d7858ea989fc64a9", "sha256:1c91ef4110fdd2c590effb5dca8fdbdcb3bf563eece99287019c4204f53d81a4", "sha256:3112b58aac3bac9c8be2b60a9daf6b558ca3f7681c130dcdd788ade7c9ffbdca", "sha256:36cecbabbda242915529b8ff364f2263cd4de7c46bbe361418b5ed859677ba58", "sha256:4276cdec4447bd5015453e41bdc0c0c1234eda08420b7c9a18b8d647add51e4b", "sha256:435bb78b37fc386f9275a7035fe4fb1364484e38980d0dd91bc834a02c5ec909", "sha256:48ed3877fa43e22bcacc852ca76d4775741f9709dd9575881a373bd3e85e54b2", "sha256:54a1473077f3b616779ce31f477351a45b4fef8c9fd7892d6d87e287a38df368", "sha256:69da7d39e39942bd52848438462674c463e23963a1fdaa84d88df7fbd7e749b2", "sha256:6cbc312be5e71869d9d5ea25147cdf652a6781cf4d906497ca7690b7b9b5df13", "sha256:7bb03bc2873a2842e5ebb4801f5c7ff1bfbdf426f85d0172f7644fcda0671ae0", "sha256:7ca7da9c339ca8890d66958f5462beabd611eca6c958691a8fe6eccbd1eb0c6e", "sha256:835a9c949dc193953c319603b2961c5c8f4327957fe23d914ca80d982665e8ee", "sha256:84123274d982b9e248a143dadd1b9815049f4477dc783bf84efe6250eb4b836a", "sha256:8961c3a78ebfcd000920c9060a262f082f29838682b1f7201889300c1fbe0616", "sha256:96bd766831596d6014ca88d86dc8fe0fb2e428c0b02432fd9db3943202bf8c5e", "sha256:9df0c10adf3e83015ced42a9a7bd64e13d06c4cf45c340d2c63020ea04499d0a", "sha256:b38057450a0c566cbd04890a40edf916db890f2818e8682221611d78dc32ae26", "sha256:bd95d1dfb9c4f4563e6093a9aa19d9c186bf98fa54da5252531cc0d3a07977e7", "sha256:c1068287025f8ea025103e37d62ffd63fec8e9e636246b89c341aeda8a67c934", "sha256:c438268eebb8cf039552897d78f402d734a404f1360592fef55297285f7f953f", "sha256:cdc076c03381f5c1d9bb1abdcc5503d9ca8b53cf0a9d31a9f6754ec9e6c8af0f", "sha256:f358aa33e03b7a84e0d91270a4d4d8f5df6921abe99a377828839e8ed0c04e07", "sha256:f51d5a9f137f7a2cec2d326a74b6e3fc79d635d69ffe1b036d39fc7d75430d37" ], "markers": "python_version >= '3.5'", "version": "==3.19.4" }, "pyparsing": { "hashes": [ "sha256:18ee9022775d270c55187733956460083db60b37d0d0fb357445f3094eed3eea", "sha256:a6c06a88f252e6c322f65faf8f418b16213b51bdfaece0524c1c1bc30c63c484" ], "markers": "python_version >= '3.6'", "version": "==3.0.7" }, "python-dateutil": { "hashes": [ "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86", "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2'", "version": "==2.8.2" }, "pytz": { "hashes": [ "sha256:3672058bc3453457b622aab7a1c3bfd5ab0bdae451512f6cf25f64ed37f5b87c", "sha256:acad2d8b20a1af07d4e4c9d2e9285c5ed9104354062f275f3fcd88dcef4f1326" ], "version": "==2021.3" }, "scikit-learn": { "hashes": [ "sha256:08ef968f6b72033c16c479c966bf37ccd49b06ea91b765e1cc27afefe723920b", "sha256:158faf30684c92a78e12da19c73feff9641a928a8024b4fa5ec11d583f3d8a87", "sha256:16455ace947d8d9e5391435c2977178d0ff03a261571e67f627c8fee0f9d431a", "sha256:245c9b5a67445f6f044411e16a93a554edc1efdcce94d3fc0bc6a4b9ac30b752", "sha256:285db0352e635b9e3392b0b426bc48c3b485512d3b4ac3c7a44ec2a2ba061e66", "sha256:2f3b453e0b149898577e301d27e098dfe1a36943f7bb0ad704d1e548efc3b448", "sha256:46f431ec59dead665e1370314dbebc99ead05e1c0a9df42f22d6a0e00044820f", "sha256:55f2f3a8414e14fbee03782f9fe16cca0f141d639d2b1c1a36779fa069e1db57", "sha256:5cb33fe1dc6f73dc19e67b264dbb5dde2a0539b986435fdd78ed978c14654830", "sha256:75307d9ea39236cad7eea87143155eea24d48f93f3a2f9389c817f7019f00705", "sha256:7626a34eabbf370a638f32d1a3ad50526844ba58d63e3ab81ba91e2a7c6d037e", "sha256:7a93c1292799620df90348800d5ac06f3794c1316ca247525fa31169f6d25855", "sha256:7d6b2475f1c23a698b48515217eb26b45a6598c7b1840ba23b3c5acece658dbb", "sha256:80095a1e4b93bd33261ef03b9bc86d6db649f988ea4dbcf7110d0cded8d7213d", "sha256:85260fb430b795d806251dd3bb05e6f48cdc777ac31f2bcf2bc8bbed3270a8f5", "sha256:9369b030e155f8188743eb4893ac17a27f81d28a884af460870c7c072f114243", "sha256:a053a6a527c87c5c4fa7bf1ab2556fa16d8345cf99b6c5a19030a4a7cd8fd2c0", "sha256:a90b60048f9ffdd962d2ad2fb16367a87ac34d76e02550968719eb7b5716fd10", "sha256:a999c9f02ff9570c783069f1074f06fe7386ec65b84c983db5aeb8144356a355", "sha256:b1391d1a6e2268485a63c3073111fe3ba6ec5145fc957481cfd0652be571226d", "sha256:b54a62c6e318ddbfa7d22c383466d38d2ee770ebdb5ddb668d56a099f6eaf75f", "sha256:b5870959a5484b614f26d31ca4c17524b1b0317522199dc985c3b4256e030767", "sha256:bc3744dabc56b50bec73624aeca02e0def06b03cb287de26836e730659c5d29c", "sha256:d93d4c28370aea8a7cbf6015e8a669cd5d69f856cc2aa44e7a590fb805bb5583", "sha256:d9aac97e57c196206179f674f09bc6bffcd0284e2ba95b7fe0b402ac3f986023", "sha256:da3c84694ff693b5b3194d8752ccf935a665b8b5edc33a283122f4273ca3e687", "sha256:e174242caecb11e4abf169342641778f68e1bfaba80cd18acd6bc84286b9a534", "sha256:eabceab574f471de0b0eb3f2ecf2eee9f10b3106570481d007ed1c84ebf6d6a1", "sha256:f14517e174bd7332f1cca2c959e704696a5e0ba246eb8763e6c24876d8710049", "sha256:fa38a1b9b38ae1fad2863eff5e0d69608567453fdfc850c992e6e47eb764e846", "sha256:ff3fa8ea0e09e38677762afc6e14cad77b5e125b0ea70c9bba1992f02c93b028", "sha256:ff746a69ff2ef25f62b36338c615dd15954ddc3ab8e73530237dd73235e76d62" ], "index": "pypi", "version": "==1.0.2" }, "scikit-learn-intelex": { "hashes": [ "sha256:0f27775cc65e9fe224c373163fe5630f58c98d860b507abd91ce92a6ad1b7edd", "sha256:79607e19d493df422bb434e6277029934cc55d4c83304d66e5c09815aab592c6", "sha256:7a84998fa7724855af5227ffe9fb1d25a917ed9f1237d6b5ddc21fdedcb30c0e", "sha256:a2f57d8a88d20b6c17216a9ca406fd333ec5722eb2b07b4d6720dedefc126d2c", "sha256:a7d883a62c94831e3abe114771e3a9fadaeba1dbf61151cff8f836e6cea5c5aa", "sha256:b58197423daf5cac821c6376ab702f445cfd72a964de6ff436b4ecc592b2ff6e", "sha256:dfba15d74e823ddda4684596040a9b042c3ea6d6b78d9737ffba17136343ad51", "sha256:f331b9aa81163913a1c8ab1f237b8a3afe88e5178e74530c05278d89e7071466" ], "index": "pypi", "version": "==2021.5.3" }, "scipy": { "hashes": [ "sha256:011d4386b53b933142f58a652aa0f149c9b9242abd4f900b9f4ea5fbafc86b89", "sha256:16e09ef68b352d73befa8bcaf3ebe25d3941fe1a58c82909d5589856e6bc8174", "sha256:31d4f2d6b724bc9a98e527b5849b8a7e589bf1ea630c33aa563eda912c9ff0bd", "sha256:38aa39b6724cb65271e469013aeb6f2ce66fd44f093e241c28a9c6bc64fd79ed", "sha256:3d573228c10a3a8c32b9037be982e6440e411b443a6267b067cac72f690b8d56", "sha256:3d9dd6c8b93a22bf9a3a52d1327aca7e092b1299fb3afc4f89e8eba381be7b59", "sha256:559a8a4c03a5ba9fe3232f39ed24f86457e4f3f6c0abbeae1fb945029f092720", "sha256:5e73343c5e0d413c1f937302b2e04fb07872f5843041bcfd50699aef6e95e399", "sha256:723b9f878095ed994756fa4ee3060c450e2db0139c5ba248ee3f9628bd64e735", "sha256:87b01c7d5761e8a266a0fbdb9d88dcba0910d63c1c671bdb4d99d29f469e9e03", "sha256:8f4d059a97b29c91afad46b1737274cb282357a305a80bdd9e8adf3b0ca6a3f0", "sha256:92b2c2af4183ed09afb595709a8ef5783b2baf7f41e26ece24e1329c109691a7", "sha256:937d28722f13302febde29847bbe554b89073fbb924a30475e5ed7b028898b5f", "sha256:a279e27c7f4566ef18bab1b1e2c37d168e365080974758d107e7d237d3f0f484", "sha256:ad5be4039147c808e64f99c0e8a9641eb5d2fa079ff5894dcd8240e94e347af4", "sha256:ae3e327da323d82e918e593460e23babdce40d7ab21490ddf9fc06dec6b91a18", "sha256:bb7088e89cd751acf66195d2f00cf009a1ea113f3019664032d9075b1e727b6c", "sha256:c17a1878d00a5dd2797ccd73623ceca9d02375328f6218ee6d921e1325e61aff", "sha256:c2bae431d127bf0b1da81fc24e4bba0a84d058e3a96b9dd6475dfcb3c5e8761e", "sha256:de2e80ee1d925984c2504812a310841c241791c5279352be4707cdcd7c255039", "sha256:e6f0cd9c0bd374ef834ee1e0f0999678d49dcc400ea6209113d81528958f97c7", "sha256:f3720d0124aced49f6f2198a6900304411dbbeed12f56951d7c66ebef05e3df6", "sha256:f4a6d3b9f9797eb2d43938ac2c5d96d02aed17ef170c8b38f11798717523ddba" ], "index": "pypi", "version": "==1.8.0" }, "six": { "hashes": [ "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926", "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2'", "version": "==1.16.0" }, "tbb": { "hashes": [ "sha256:6578ae9485140efc0dccde98ccec03706d5c9aa7645f06ecfe1bb3cd720c0432", "sha256:949fade8d1542ab0bb42bf2d84b674e9de14978ef7dc5dcf87d9c4c70be2a05a", "sha256:ccb6bad2891d3b1234e7c8d053cdf52e5a546438657924882247d25d461f25c9", "sha256:e120162a188bd8a51b3817bba16573c594374473241278ab07c921bdfebd3c8e" ], "version": "==2021.5.1" }, "threadpoolctl": { "hashes": [ "sha256:8b99adda265feb6773280df41eece7b2e6561b772d21ffd52e372f999024907b", "sha256:a335baacfaa4400ae1f0d8e3a58d6674d2f8828e3716bb2802c44955ad391380" ], "markers": "python_version >= '3.6'", "version": "==3.1.0" } }, "develop": { "certifi": { "hashes": [ "sha256:78884e7c1d4b00ce3cea67b44566851c4343c120abd683433ce934a68ea58872", "sha256:d62a0163eb4c2344ac042ab2bdf75399a71a2d8c7d47eac2e2ee91b9d6339569" ], "version": "==2021.10.8" }, "charset-normalizer": { "hashes": [ "sha256:2857e29ff0d34db842cd7ca3230549d1a697f96ee6d3fb071cfa6c7393832597", "sha256:6881edbebdb17b39b4eaaa821b438bf6eddffb4468cf344f09f89def34a8b1df" ], "markers": "python_version >= '3'", "version": "==2.0.12" }, "flatbuffers": { "hashes": [ "sha256:12158ab0272375eab8db2d663ae97370c33f152b27801fa6024e1d6105fd4dd2", "sha256:3751954f0604580d3219ae49a85fafec9d85eec599c0b96226e1bc0b48e57474" ], "version": "==2.0" }, "h5py": { "hashes": [ "sha256:1c5acc660c458421e88c4c5fe092ce15923adfac4c732af1ac4fced683a5ea97", "sha256:35ab552c6f0a93365b3cb5664a5305f3920daa0a43deb5b2c547c52815ec46b9", "sha256:542781d50e1182b8fb619b1265dfe1c765e18215f818b0ab28b2983c28471325", "sha256:5996ff5adefd2d68c330a4265b6ef92e51b2fc674834a5990add5033bf109e20", "sha256:8752d2814a92aba4e2b2a5922d2782d0029102d99caaf3c201a566bc0b40db29", "sha256:8ecedf16c613973622a334701f67edcc0249469f9daa0576e994fb20ac0405db", "sha256:954c5c39a09b5302f69f752c3bbf165d368a65c8d200f7d5655e0fa6368a75e6", "sha256:98646e659bf8591a2177e12a4461dced2cad72da0ba4247643fd118db88880d2", "sha256:9f39242960b8d7f86f3056cc2546aa3047ff4835985f6483229af8f029e9c8db", "sha256:9fd8a14236fdd092a20c0bdf25c3aba3777718d266fabb0fdded4fcf252d1630", "sha256:a5320837c60870911645e9a935099bdb2be6a786fcf0dac5c860f3b679e2de55", "sha256:c9a5529343a619fea777b7caa27d493595b28b5af8b005e8d1817559fcccf493", "sha256:cd9447633b0bafaf82190d9a8d56f3cb2e8d30169483aee67d800816e028190a", "sha256:d8cacad89aa7daf3626fce106f7f2662ac35b14849df22d252d0d8fab9dc1c0b", "sha256:dbaa1ed9768bf9ff04af0919acc55746e62b28333644f0251f38768313f31745", "sha256:e2b49c48df05e19bb20b400b7ff7dc6f1ee36b84dc717c3771c468b33697b466" ], "markers": "python_version >= '3.7'", "version": "==3.6.0" }, "idna": { "hashes": [ "sha256:84d9dd047ffa80596e0f246e2eab0b391788b0503584e8945f2368256d2735ff", "sha256:9d643ff0a55b762d5cdb124b8eaa99c66322e2157b69160bc32796e824360e6d" ], "markers": "python_version >= '3'", "version": "==3.3" }, "joblib": { "hashes": [ "sha256:4158fcecd13733f8be669be0683b96ebdbbd38d23559f54dca7205aea1bf1e35", "sha256:f21f109b3c7ff9d95f8387f752d0d9c34a02aa2f7060c2135f465da0e5160ff6" ], "markers": "python_version >= '3.6'", "version": "==1.1.0" }, "keras": { "hashes": [ "sha256:05e2faf6885f7899482a7d18fc00ba9655fe2c9296a35ad96949a07a9c27d1bb", "sha256:fedd729b52572fb108a98e3d97e1bac10a81d3917d2103cc20ab2a5f03beb973" ], "index": "pypi", "version": "==2.4.3" }, "numpy": { "hashes": [ "sha256:07a8c89a04997625236c5ecb7afe35a02af3896c8aa01890a849913a2309c676", "sha256:08d9b008d0156c70dc392bb3ab3abb6e7a711383c3247b410b39962263576cd4", "sha256:201b4d0552831f7250a08d3b38de0d989d6f6e4658b709a02a73c524ccc6ffce", "sha256:2c10a93606e0b4b95c9b04b77dc349b398fdfbda382d2a39ba5a822f669a0123", "sha256:3ca688e1b9b95d80250bca34b11a05e389b1420d00e87a0d12dc45f131f704a1", "sha256:48a3aecd3b997bf452a2dedb11f4e79bc5bfd21a1d4cc760e703c31d57c84b3e", "sha256:568dfd16224abddafb1cbcce2ff14f522abe037268514dd7e42c6776a1c3f8e5", "sha256:5bfb1bb598e8229c2d5d48db1860bcf4311337864ea3efdbe1171fb0c5da515d", "sha256:639b54cdf6aa4f82fe37ebf70401bbb74b8508fddcf4797f9fe59615b8c5813a", "sha256:8251ed96f38b47b4295b1ae51631de7ffa8260b5b087808ef09a39a9d66c97ab", "sha256:92bfa69cfbdf7dfc3040978ad09a48091143cffb778ec3b03fa170c494118d75", "sha256:97098b95aa4e418529099c26558eeb8486e66bd1e53a6b606d684d0c3616b168", "sha256:a3bae1a2ed00e90b3ba5f7bd0a7c7999b55d609e0c54ceb2b076a25e345fa9f4", "sha256:c34ea7e9d13a70bf2ab64a2532fe149a9aced424cd05a2c4ba662fd989e3e45f", "sha256:dbc7601a3b7472d559dc7b933b18b4b66f9aa7452c120e87dfb33d02008c8a18", "sha256:e7927a589df200c5e23c57970bafbd0cd322459aa7b1ff73b7c2e84d6e3eae62", "sha256:f8c1f39caad2c896bc0018f699882b345b2a63708008be29b1f355ebf6f933fe", "sha256:f950f8845b480cffe522913d35567e29dd381b0dc7e4ce6a4a9f9156417d2430", "sha256:fade0d4f4d292b6f39951b6836d7a3c7ef5b2347f3c420cd9820a1d90d794802", "sha256:fdf3c08bce27132395d3c3ba1503cac12e17282358cb4bddc25cc46b0aca07aa" ], "index": "pypi", "version": "==1.22.3" }, "onnx": { "hashes": [ "sha256:0cf47c205b376b3763beef92a6de4152f3b1552d6f640d93044938500baf5958", "sha256:3403884c482859f8cf2e0c276da84bd9ac2235d266726f4ddc9625d3fd263218", "sha256:43b32a2f20c94aa98866deae9e4218faf0495144ad05402e918fa279674b6df9", "sha256:4454906de80a351de6929b0896ad605d106c324c3112c92249240e531f68fbba", "sha256:4aa899f74acd4c5543f0efed8bfe98a3b701df75c5ffa179212e3088c51971bb", "sha256:58d4873ec587ac14c44227d8027787edc88cd61596e646e3417f2a826a920898", "sha256:593ca9e11f15afa26b3aaf2d170bb803d4bd86dbd560aa7be4e5f535d03f83d5", "sha256:67c6d2654c1c203e5c839a47900b51f588fd0de71bbd497fb193d30a0b3ec1e9", "sha256:7924d9baa13dbbf335737229f6d068f380d153679f357e495da60007b61cf56d", "sha256:7a2f5d6998fe79aed80fad9d4522140d02c4d29513047e335d5c5355c1ebda5e", "sha256:82221a07707b1ccf71fb18c6abb77f2566517a55d5185809775b5ff008bfb35c", "sha256:89420e5b824d7e182846fe2aa09190ddb41162b261465c6ca928174bc2ac10b7", "sha256:997d91ffd7b7ae7aee09c6d652a896d906be430d425865c759b51a8de5df9fe0", "sha256:9b9f58ea01c1b20b057f55f628df4fc0403bbc160b7282a56e3bb4df5c7fb96f", "sha256:a6e9135f1d02539ca7573f699fb0d31d3c43d10fac1d2d2239a9a1c553506c29", "sha256:ae74bf8fa343b64e2b7fe205091b7f3728887c018ae061d161dd86ec95eb66a8", "sha256:b2de0b117ad77689d308824a0c9eb89539ec28a799b4e2e05b3bb977b0da0b45", "sha256:c3d3503110f2cab2c818f4a7b2bc8abc3bc79649daa39e70d5fb504b208ddb1e", "sha256:d6581dd2122525549d1d8b431b8bf375298993c77bddb8fd0bf0d92611df76a1", "sha256:d6ddbe89e32f885db736d36fcb132784e368331a18c3b6168ac9f561eb462057", "sha256:df85666ab2b88fd9cf9b2504bcb551da39422eab65a143926a8db58f81b09164", "sha256:ea06dbf57a287657b6dc4e189918e4cb451450308589d482117216194d6f83d6", "sha256:eb46f31f12bb0bfdcfb68497d10b20447cf8fa6c4f693120c013e052645357b8", "sha256:eca224c7c2c8ee4072a0743e4898a84a9bdf8297b5e5910a2632e4c4182ffb2a", "sha256:f335d982b8ed201cf767459b993630acfd20c32b100529f70af9f28a26e72167" ], "version": "==1.11.0" }, "onnxconverter-common": { "hashes": [ "sha256:02b58ca3351fba4eddf8503e1421cfecd4ddcf2074aea4d58e3b2410e6f67ce5", "sha256:8e129c3602d1ef7619c5f3d34a53005b997137ea769362f1f8dd1ddab57ed216" ], "version": "==1.9.0" }, "onnxmltools": { "hashes": [ "sha256:4eb4605f18ed66553fc17438ac8cf5406d66dcc624bedd76d8067e1b08e6c75d", "sha256:9bede96c469ee02a9e343a2f5196a9db43c1090b78f92ed94fcd8e36e3aae7ec" ], "index": "pypi", "version": "==1.10.0" }, "protobuf": { "hashes": [ "sha256:072fbc78d705d3edc7ccac58a62c4c8e0cec856987da7df8aca86e647be4e35c", "sha256:09297b7972da685ce269ec52af761743714996b4381c085205914c41fcab59fb", "sha256:16f519de1313f1b7139ad70772e7db515b1420d208cb16c6d7858ea989fc64a9", "sha256:1c91ef4110fdd2c590effb5dca8fdbdcb3bf563eece99287019c4204f53d81a4", "sha256:3112b58aac3bac9c8be2b60a9daf6b558ca3f7681c130dcdd788ade7c9ffbdca", "sha256:36cecbabbda242915529b8ff364f2263cd4de7c46bbe361418b5ed859677ba58", "sha256:4276cdec4447bd5015453e41bdc0c0c1234eda08420b7c9a18b8d647add51e4b", "sha256:435bb78b37fc386f9275a7035fe4fb1364484e38980d0dd91bc834a02c5ec909", "sha256:48ed3877fa43e22bcacc852ca76d4775741f9709dd9575881a373bd3e85e54b2", "sha256:54a1473077f3b616779ce31f477351a45b4fef8c9fd7892d6d87e287a38df368", "sha256:69da7d39e39942bd52848438462674c463e23963a1fdaa84d88df7fbd7e749b2", "sha256:6cbc312be5e71869d9d5ea25147cdf652a6781cf4d906497ca7690b7b9b5df13", "sha256:7bb03bc2873a2842e5ebb4801f5c7ff1bfbdf426f85d0172f7644fcda0671ae0", "sha256:7ca7da9c339ca8890d66958f5462beabd611eca6c958691a8fe6eccbd1eb0c6e", "sha256:835a9c949dc193953c319603b2961c5c8f4327957fe23d914ca80d982665e8ee", "sha256:84123274d982b9e248a143dadd1b9815049f4477dc783bf84efe6250eb4b836a", "sha256:8961c3a78ebfcd000920c9060a262f082f29838682b1f7201889300c1fbe0616", "sha256:96bd766831596d6014ca88d86dc8fe0fb2e428c0b02432fd9db3943202bf8c5e", "sha256:9df0c10adf3e83015ced42a9a7bd64e13d06c4cf45c340d2c63020ea04499d0a", "sha256:b38057450a0c566cbd04890a40edf916db890f2818e8682221611d78dc32ae26", "sha256:bd95d1dfb9c4f4563e6093a9aa19d9c186bf98fa54da5252531cc0d3a07977e7", "sha256:c1068287025f8ea025103e37d62ffd63fec8e9e636246b89c341aeda8a67c934", "sha256:c438268eebb8cf039552897d78f402d734a404f1360592fef55297285f7f953f", "sha256:cdc076c03381f5c1d9bb1abdcc5503d9ca8b53cf0a9d31a9f6754ec9e6c8af0f", "sha256:f358aa33e03b7a84e0d91270a4d4d8f5df6921abe99a377828839e8ed0c04e07", "sha256:f51d5a9f137f7a2cec2d326a74b6e3fc79d635d69ffe1b036d39fc7d75430d37" ], "markers": "python_version >= '3.5'", "version": "==3.19.4" }, "pyserial": { "hashes": [ "sha256:3c77e014170dfffbd816e6ffc205e9842efb10be9f58ec16d3e8675b4925cddb", "sha256:c4451db6ba391ca6ca299fb3ec7bae67a5c55dde170964c7a14ceefec02f2cf0" ], "index": "pypi", "version": "==3.5" }, "pyyaml": { "hashes": [ "sha256:0283c35a6a9fbf047493e3a0ce8d79ef5030852c51e9d911a27badfde0605293", "sha256:055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b", "sha256:07751360502caac1c067a8132d150cf3d61339af5691fe9e87803040dbc5db57", "sha256:0b4624f379dab24d3725ffde76559cff63d9ec94e1736b556dacdfebe5ab6d4b", "sha256:0ce82d761c532fe4ec3f87fc45688bdd3a4c1dc5e0b4a19814b9009a29baefd4", "sha256:1e4747bc279b4f613a09eb64bba2ba602d8a6664c6ce6396a4d0cd413a50ce07", "sha256:213c60cd50106436cc818accf5baa1aba61c0189ff610f64f4a3e8c6726218ba", "sha256:231710d57adfd809ef5d34183b8ed1eeae3f76459c18fb4a0b373ad56bedcdd9", "sha256:277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287", "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513", "sha256:40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0", "sha256:473f9edb243cb1935ab5a084eb238d842fb8f404ed2193a915d1784b5a6b5fc0", "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92", "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f", "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2", "sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc", "sha256:819b3830a1543db06c4d4b865e70ded25be52a2e0631ccd2f6a47a2822f2fd7c", "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86", "sha256:98c4d36e99714e55cfbaaee6dd5badbc9a1ec339ebfc3b1f52e293aee6bb71a4", "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c", "sha256:9fa600030013c4de8165339db93d182b9431076eb98eb40ee068700c9c813e34", "sha256:a80a78046a72361de73f8f395f1f1e49f956c6be882eed58505a15f3e430962b", "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c", "sha256:b5b9eccad747aabaaffbc6064800670f0c297e52c12754eb1d976c57e4f74dcb", "sha256:c5687b8d43cf58545ade1fe3e055f70eac7a5a1a0bf42824308d868289a95737", "sha256:cba8c411ef271aa037d7357a2bc8f9ee8b58b9965831d9e51baf703280dc73d3", "sha256:d15a181d1ecd0d4270dc32edb46f7cb7733c7c508857278d3d378d14d606db2d", "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53", "sha256:d4eccecf9adf6fbcc6861a38015c2a64f38b9d94838ac1810a9023a0609e1b78", "sha256:d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803", "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a", "sha256:e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174", "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5" ], "markers": "python_version >= '3.6'", "version": "==6.0" }, "requests": { "hashes": [ "sha256:68d7c56fd5a8999887728ef304a6d12edc7be74f1cfa47714fc8b414525c9a61", "sha256:f22fa1e554c9ddfd16e6e41ac79759e17be9e492b3587efa038054674760e72d" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5'", "version": "==2.27.1" }, "scikit-learn": { "hashes": [ "sha256:08ef968f6b72033c16c479c966bf37ccd49b06ea91b765e1cc27afefe723920b", "sha256:158faf30684c92a78e12da19c73feff9641a928a8024b4fa5ec11d583f3d8a87", "sha256:16455ace947d8d9e5391435c2977178d0ff03a261571e67f627c8fee0f9d431a", "sha256:245c9b5a67445f6f044411e16a93a554edc1efdcce94d3fc0bc6a4b9ac30b752", "sha256:285db0352e635b9e3392b0b426bc48c3b485512d3b4ac3c7a44ec2a2ba061e66", "sha256:2f3b453e0b149898577e301d27e098dfe1a36943f7bb0ad704d1e548efc3b448", "sha256:46f431ec59dead665e1370314dbebc99ead05e1c0a9df42f22d6a0e00044820f", "sha256:55f2f3a8414e14fbee03782f9fe16cca0f141d639d2b1c1a36779fa069e1db57", "sha256:5cb33fe1dc6f73dc19e67b264dbb5dde2a0539b986435fdd78ed978c14654830", "sha256:75307d9ea39236cad7eea87143155eea24d48f93f3a2f9389c817f7019f00705", "sha256:7626a34eabbf370a638f32d1a3ad50526844ba58d63e3ab81ba91e2a7c6d037e", "sha256:7a93c1292799620df90348800d5ac06f3794c1316ca247525fa31169f6d25855", "sha256:7d6b2475f1c23a698b48515217eb26b45a6598c7b1840ba23b3c5acece658dbb", "sha256:80095a1e4b93bd33261ef03b9bc86d6db649f988ea4dbcf7110d0cded8d7213d", "sha256:85260fb430b795d806251dd3bb05e6f48cdc777ac31f2bcf2bc8bbed3270a8f5", "sha256:9369b030e155f8188743eb4893ac17a27f81d28a884af460870c7c072f114243", "sha256:a053a6a527c87c5c4fa7bf1ab2556fa16d8345cf99b6c5a19030a4a7cd8fd2c0", "sha256:a90b60048f9ffdd962d2ad2fb16367a87ac34d76e02550968719eb7b5716fd10", "sha256:a999c9f02ff9570c783069f1074f06fe7386ec65b84c983db5aeb8144356a355", "sha256:b1391d1a6e2268485a63c3073111fe3ba6ec5145fc957481cfd0652be571226d", "sha256:b54a62c6e318ddbfa7d22c383466d38d2ee770ebdb5ddb668d56a099f6eaf75f", "sha256:b5870959a5484b614f26d31ca4c17524b1b0317522199dc985c3b4256e030767", "sha256:bc3744dabc56b50bec73624aeca02e0def06b03cb287de26836e730659c5d29c", "sha256:d93d4c28370aea8a7cbf6015e8a669cd5d69f856cc2aa44e7a590fb805bb5583", "sha256:d9aac97e57c196206179f674f09bc6bffcd0284e2ba95b7fe0b402ac3f986023", "sha256:da3c84694ff693b5b3194d8752ccf935a665b8b5edc33a283122f4273ca3e687", "sha256:e174242caecb11e4abf169342641778f68e1bfaba80cd18acd6bc84286b9a534", "sha256:eabceab574f471de0b0eb3f2ecf2eee9f10b3106570481d007ed1c84ebf6d6a1", "sha256:f14517e174bd7332f1cca2c959e704696a5e0ba246eb8763e6c24876d8710049", "sha256:fa38a1b9b38ae1fad2863eff5e0d69608567453fdfc850c992e6e47eb764e846", "sha256:ff3fa8ea0e09e38677762afc6e14cad77b5e125b0ea70c9bba1992f02c93b028", "sha256:ff746a69ff2ef25f62b36338c615dd15954ddc3ab8e73530237dd73235e76d62" ], "index": "pypi", "version": "==1.0.2" }, "scipy": { "hashes": [ "sha256:011d4386b53b933142f58a652aa0f149c9b9242abd4f900b9f4ea5fbafc86b89", "sha256:16e09ef68b352d73befa8bcaf3ebe25d3941fe1a58c82909d5589856e6bc8174", "sha256:31d4f2d6b724bc9a98e527b5849b8a7e589bf1ea630c33aa563eda912c9ff0bd", "sha256:38aa39b6724cb65271e469013aeb6f2ce66fd44f093e241c28a9c6bc64fd79ed", "sha256:3d573228c10a3a8c32b9037be982e6440e411b443a6267b067cac72f690b8d56", "sha256:3d9dd6c8b93a22bf9a3a52d1327aca7e092b1299fb3afc4f89e8eba381be7b59", "sha256:559a8a4c03a5ba9fe3232f39ed24f86457e4f3f6c0abbeae1fb945029f092720", "sha256:5e73343c5e0d413c1f937302b2e04fb07872f5843041bcfd50699aef6e95e399", "sha256:723b9f878095ed994756fa4ee3060c450e2db0139c5ba248ee3f9628bd64e735", "sha256:87b01c7d5761e8a266a0fbdb9d88dcba0910d63c1c671bdb4d99d29f469e9e03", "sha256:8f4d059a97b29c91afad46b1737274cb282357a305a80bdd9e8adf3b0ca6a3f0", "sha256:92b2c2af4183ed09afb595709a8ef5783b2baf7f41e26ece24e1329c109691a7", "sha256:937d28722f13302febde29847bbe554b89073fbb924a30475e5ed7b028898b5f", "sha256:a279e27c7f4566ef18bab1b1e2c37d168e365080974758d107e7d237d3f0f484", "sha256:ad5be4039147c808e64f99c0e8a9641eb5d2fa079ff5894dcd8240e94e347af4", "sha256:ae3e327da323d82e918e593460e23babdce40d7ab21490ddf9fc06dec6b91a18", "sha256:bb7088e89cd751acf66195d2f00cf009a1ea113f3019664032d9075b1e727b6c", "sha256:c17a1878d00a5dd2797ccd73623ceca9d02375328f6218ee6d921e1325e61aff", "sha256:c2bae431d127bf0b1da81fc24e4bba0a84d058e3a96b9dd6475dfcb3c5e8761e", "sha256:de2e80ee1d925984c2504812a310841c241791c5279352be4707cdcd7c255039", "sha256:e6f0cd9c0bd374ef834ee1e0f0999678d49dcc400ea6209113d81528958f97c7", "sha256:f3720d0124aced49f6f2198a6900304411dbbeed12f56951d7c66ebef05e3df6", "sha256:f4a6d3b9f9797eb2d43938ac2c5d96d02aed17ef170c8b38f11798717523ddba" ], "index": "pypi", "version": "==1.8.0" }, "six": { "hashes": [ "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926", "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2'", "version": "==1.16.0" }, "skl2onnx": { "hashes": [ "sha256:3942a97f30fc0c8d2fb4d715332714a3f0571f33b8075f4aa3b2b234566165c4", "sha256:7067deb0430c03d6843d113b760320a8fd13ba926ff0a5329c2081dfbce85ec5" ], "index": "pypi", "version": "==1.11" }, "tf2onnx": { "hashes": [ "sha256:375211ec8f2d3cd32648290f3e60402197a616fb1b677caeca9904f17bd145d9" ], "index": "pypi", "version": "==1.9.3" }, "threadpoolctl": { "hashes": [ "sha256:8b99adda265feb6773280df41eece7b2e6561b772d21ffd52e372f999024907b", "sha256:a335baacfaa4400ae1f0d8e3a58d6674d2f8828e3716bb2802c44955ad391380" ], "markers": "python_version >= '3.6'", "version": "==3.1.0" }, "typing-extensions": { "hashes": [ "sha256:1a9462dcc3347a79b1f1c0271fbe79e844580bb598bafa1ed208b94da3cdcd42", "sha256:21c85e0fe4b9a155d0799430b0ad741cdce7e359660ccbd8b530613e8df88ce2" ], "markers": "python_version >= '3.6'", "version": "==4.1.1" }, "urllib3": { "hashes": [ "sha256:000ca7f471a233c2251c6c7023ee85305721bfdf18621ebff4fd17a8653427ed", "sha256:0e7c33d9a63e7ddfcb86780aac87befc2fbddf46c58dbb487e0855f7ceec283c" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4' and python_version < '4'", "version": "==1.26.8" } } } ```
matteius commented 2 years ago

@pklapperich Ah my bad, I misundersstood that you were having the failure on this step. $ pipenv install -i pypi --verbose --dev tensorflow So yeah this takes about 10-15 minutes of locking and eventually fails with:

INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(4859, state)
Reporter.starting_round(4860)
INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(4860)
Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)'))
INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)'))
Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)'))
INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)'))
Reporter.backtracking(LinkCandidate('file:///home/matteius/.cache/pipenv/wheels/a0/16/9c/5473df82468f958445479c59e784896fa24f4a5fc024b0f501/termcolor-1.1.0-py3-none-any.whl'))
INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('file:///home/matteius/.cache/pipenv/wheels/a0/16/9c/5473df82468f958445479c59e784896fa24f4a5fc024b0f501/termcolor-1.1.0-py3-none-any.whl'))
Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/ec/78/b27f73e923becc6e79e18fe112cf75e3200d1ee35b0dba8fa46181bce56c/tensorflow_estimator-2.5.0-py2.py3-none-any.whl#sha256=d1fe76dee8b1dcab865d807a0246da0a9c4a635b1eba6e9545bf216c3aad6955 (from https://pypi.org/simple/tensorflow-estimator/)'))
INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/ec/78/b27f73e923becc6e79e18fe112cf75e3200d1ee35b0dba8fa46181bce56c/tensorflow_estimator-2.5.0-py2.py3-none-any.whl#sha256=d1fe76dee8b1dcab865d807a0246da0a9c4a635b1eba6e9545bf216c3aad6955 (from https://pypi.org/simple/tensorflow-estimator/)'))
Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/ee/ff/48bde5c0f013094d729fe4b0316ba2a24774b3ff1c52d924a8a4cb04078a/six-1.15.0-py2.py3-none-any.whl#sha256=8b74bedcbbbaca38ff6d7491d76f2b06b3592611af620f8426e82dddb04a5ced (from https://pypi.org/simple/six/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*)'))
INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/ee/ff/48bde5c0f013094d729fe4b0316ba2a24774b3ff1c52d924a8a4cb04078a/six-1.15.0-py2.py3-none-any.whl#sha256=8b74bedcbbbaca38ff6d7491d76f2b06b3592611af620f8426e82dddb04a5ced (from https://pypi.org/simple/six/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*)'))
Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/2d/61/08076519c80041bc0ffa1a8af0cbd3bf3e2b62af10435d269a9d0f40564d/requests-2.27.1-py2.py3-none-any.whl#sha256=f22fa1e554c9ddfd16e6e41ac79759e17be9e492b3587efa038054674760e72d (from https://pypi.org/simple/requests/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*)'))
INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/2d/61/08076519c80041bc0ffa1a8af0cbd3bf3e2b62af10435d269a9d0f40564d/requests-2.27.1-py2.py3-none-any.whl#sha256=f22fa1e554c9ddfd16e6e41ac79759e17be9e492b3587efa038054674760e72d (from https://pypi.org/simple/requests/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*)'))
Reporter.ending_round(4860, state)
INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(4860, state)
Reporter.starting_round(4861)
INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(4861)
Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)'))
INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)'))
Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)'))
INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/43/6b/c6770cceb3171c7d67b9de3c3002cb3a67086dab5eb8c9cced5cb36412bd/mkl_random-1.2.2-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=180b0bd32300e29895a385806bbbc4c4d3a19683c95dda1c87ab457200eac53f (from https://pypi.org/simple/mkl-random/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*)'))
Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)'))
INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/88/2c/a54b6b31a3f44783a3ecde93107158a3921bbdff1daf433bb5b3b675f5e9/mkl_fft-1.3.0-1-cp38-cp38-manylinux2014_x86_64.whl#sha256=4d4940f6c5a0b98fef98b62c94a4aa73c8c7503ee47466f2973e24876c783f4f (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)'))
Reporter.ending_round(4861, state)
INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(4861, state)
Reporter.starting_round(4862)
INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(4862)
Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)'))
INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('mkl'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)'))
Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)'))
INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.22.0,>=1.21.4'), LinkCandidate('https://files.pythonhosted.org/packages/60/46/c1eb7500836c8325fdb6c4db2488b951a3e6357f2b3c622d8a7e0d8284c8/mkl_fft-1.3.1-11-cp38-cp38-manylinux2014_x86_64.whl#sha256=27a31ce7ae38038c01647f072999d99ce75bfc99a4edfc6add41fb340a0d7de6 (from https://pypi.org/simple/mkl-fft/) (requires-python:>=3.6)'))
Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/44/f5/7feea02a3fb54d5db827ac4b822a7ba8933826b36de21880518250b8733a/tensorboard-2.5.0-py3-none-any.whl#sha256=e167460085b6528956b33bab1c970c989cdce47a6616273880733f5e7bde452e (from https://pypi.org/simple/tensorboard/) (requires-python:>= 2.7, != 3.0.*, != 3.1.*)'))
INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/44/f5/7feea02a3fb54d5db827ac4b822a7ba8933826b36de21880518250b8733a/tensorboard-2.5.0-py3-none-any.whl#sha256=e167460085b6528956b33bab1c970c989cdce47a6616273880733f5e7bde452e (from https://pypi.org/simple/tensorboard/) (requires-python:>= 2.7, != 3.0.*, != 3.1.*)'))
Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/dd/25/b57bf2134f343909541977a79aa385addbc6a8ac470669739d8522e32c89/scipy-1.3.2-cp38-cp38-manylinux1_x86_64.whl#sha256=3f556f63e070e9596624e42e99d23b259d8f0fc63ec093bef97a9f1c579565b2 (from https://pypi.org/simple/scipy/) (requires-python:>=3.5)'))
INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.backtracking(LinkCandidate('https://files.pythonhosted.org/packages/dd/25/b57bf2134f343909541977a79aa385addbc6a8ac470669739d8522e32c89/scipy-1.3.2-cp38-cp38-manylinux1_x86_64.whl#sha256=3f556f63e070e9596624e42e99d23b259d8f0fc63ec093bef97a9f1c579565b2 (from https://pypi.org/simple/scipy/) (requires-python:>=3.5)'))
ERROR:pip.subprocessor:[present-diagnostic] Preparing metadata (pyproject.toml) exited with 1
Traceback (most recent call last):
  File "/home/matteius/pipenv/pipenv/patched/notpip/_internal/operations/build/metadata.py", line 35, in generate_metadata
    distinfo_dir = backend.prepare_metadata_for_build_wheel(metadata_dir)
  File "/home/matteius/pipenv/pipenv/patched/notpip/_vendor/pep517/wrappers.py", line 188, in prepare_metadata_for_build_wheel
    return self._call_hook('prepare_metadata_for_build_wheel', {
  File "/home/matteius/pipenv/pipenv/patched/notpip/_vendor/pep517/wrappers.py", line 322, in _call_hook
    self._subprocess_runner(
  File "/home/matteius/pipenv/pipenv/patched/notpip/_internal/utils/subprocess.py", line 252, in runner
    call_subprocess(
  File "/home/matteius/pipenv/pipenv/patched/notpip/_internal/utils/subprocess.py", line 224, in call_subprocess
    raise error
pipenv.patched.notpip._internal.exceptions.InstallationSubprocessError: Preparing metadata (pyproject.toml) exited with 1
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
  File "/home/matteius/pipenv/pipenv/utils.py", line 881, in resolve
    results = resolver.resolve(self.constraints, check_supported_wheels=False)
  File "/home/matteius/pipenv/pipenv/patched/notpip/_internal/resolution/resolvelib/resolver.py", line 94, in resolve
    result = self._result = resolver.resolve(
  File "/home/matteius/pipenv/pipenv/patched/notpip/_vendor/resolvelib/resolvers.py", line 481, in resolve
    state = resolution.resolve(requirements, max_rounds=max_rounds)
  File "/home/matteius/pipenv/pipenv/patched/notpip/_vendor/resolvelib/resolvers.py", line 380, in resolve
    success = self._backtrack()
  File "/home/matteius/pipenv/pipenv/patched/notpip/_vendor/resolvelib/resolvers.py", line 320, in _backtrack
    success = _patch_criteria()
  File "/home/matteius/pipenv/pipenv/patched/notpip/_vendor/resolvelib/resolvers.py", line 309, in _patch_criteria
    if not candidates:
  File "/home/matteius/pipenv/pipenv/patched/notpip/_vendor/resolvelib/structs.py", line 151, in __bool__
    return bool(self._sequence)
  File "/home/matteius/pipenv/pipenv/patched/notpip/_internal/resolution/resolvelib/found_candidates.py", line 155, in __bool__
    return any(self)
  File "/home/matteius/pipenv/pipenv/patched/notpip/_internal/resolution/resolvelib/found_candidates.py", line 143, in <genexpr>
    return (c for c in iterator if id(c) not in self._incompatible_ids)
  File "/home/matteius/pipenv/pipenv/patched/notpip/_internal/resolution/resolvelib/found_candidates.py", line 47, in _iter_built
    candidate = func()
  File "/home/matteius/pipenv/pipenv/patched/notpip/_internal/resolution/resolvelib/factory.py", line 215, in _make_candidate_from_link
    self._link_candidate_cache[link] = LinkCandidate(
  File "/home/matteius/pipenv/pipenv/patched/notpip/_internal/resolution/resolvelib/candidates.py", line 292, in __init__
    super().__init__(
  File "/home/matteius/pipenv/pipenv/patched/notpip/_internal/resolution/resolvelib/candidates.py", line 159, in __init__
    self.dist = self._prepare()
  File "/home/matteius/pipenv/pipenv/patched/notpip/_internal/resolution/resolvelib/candidates.py", line 228, in _prepare
    dist = self._prepare_distribution()
  File "/home/matteius/pipenv/pipenv/patched/notpip/_internal/resolution/resolvelib/candidates.py", line 303, in _prepare_distribution
    return preparer.prepare_linked_requirement(self._ireq, parallel_builds=True)
  File "/home/matteius/pipenv/pipenv/patched/notpip/_internal/operations/prepare.py", line 487, in prepare_linked_requirement
    return self._prepare_linked_requirement(req, parallel_builds)
  File "/home/matteius/pipenv/pipenv/patched/notpip/_internal/operations/prepare.py", line 556, in _prepare_linked_requirement
    dist = _get_prepared_distribution(
  File "/home/matteius/pipenv/pipenv/patched/notpip/_internal/operations/prepare.py", line 58, in _get_prepared_distribution
    abstract_dist.prepare_distribution_metadata(finder, build_isolation)
  File "/home/matteius/pipenv/pipenv/patched/notpip/_internal/distributions/sdist.py", line 47, in prepare_distribution_metadata
    self.req.prepare_metadata()
  File "/home/matteius/pipenv/pipenv/patched/notpip/_internal/req/req_install.py", line 523, in prepare_metadata
    self.metadata_directory = generate_metadata(
  File "/home/matteius/pipenv/pipenv/patched/notpip/_internal/operations/build/metadata.py", line 37, in generate_metadata
    raise MetadataGenerationFailed(package_details=details) from error
pipenv.patched.notpip._internal.exceptions.MetadataGenerationFailed: metadata generation failed
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
  File "/home/matteius/pipenv/pipenv/resolver.py", line 766, in <module>
    main()
  File "/home/matteius/pipenv/pipenv/resolver.py", line 760, in main
    _main(parsed.pre, parsed.clear, parsed.verbose, parsed.system, parsed.write,
  File "/home/matteius/pipenv/pipenv/resolver.py", line 743, in _main
    resolve_packages(pre, clear, verbose, system, write, requirements_dir, packages, dev)
  File "/home/matteius/pipenv/pipenv/resolver.py", line 704, in resolve_packages
    results, resolver = resolve(
  File "/home/matteius/pipenv/pipenv/resolver.py", line 685, in resolve
    return resolve_deps(
  File "/home/matteius/pipenv/pipenv/utils.py", line 1376, in resolve_deps
    results, hashes, markers_lookup, resolver, skipped = actually_resolve_deps(
  File "/home/matteius/pipenv/pipenv/utils.py", line 1105, in actually_resolve_deps
    resolver.resolve()
  File "/home/matteius/pipenv/pipenv/utils.py", line 883, in resolve
    raise ResolutionFailure(message=str(e))
pipenv.exceptions.ResolutionFailure: ERROR: metadata generation failed
✘ Locking Failed! 
matteius commented 2 years ago

@pklapperich I just found this from upstream pip, that seems relevant to consider since your Pipfile is wide open wrt to locking much of the dependencies, and I see you are actually locking something in dev to be older than something the newer packages might depend on : keras = {version="<2.5.0" https://github.com/pypa/pip/issues/10856#issuecomment-1025748975

matteius commented 2 years ago

@pklapperich Sorry to keep pinging you but that seems to be it in my branch, set keras = {version="", index="pypi"} in your Pipfile and then run pipenv install -i pypi --verbose --dev tensorflow again. Took about a minute or so to run.

CMD output ``` matteius@matteius-VirtualBox:~/shared-projects/pipenv-triage/pipenv-4977$ pipenv install -i pypi --verbose --dev tensorflow Installing tensorflow... Installing package: tensorflow Writing supplied requirement line to temporary file: 'tensorflow' Installing 'tensorflow' β ¦ Installing tensorflow...$ /home/matteius/.virtualenvs/pipenv-4977-Zx_QPntz/bin/python -m pip install --verbose --upgrade --exists-action=i -r /tmp/pipenv-w9cqw236-requirements/pipenv-r_sfiqaa-requirement.txt -i https://pypi.org/simple --extra-index-url https://pypi.anaconda.org/intel/simple --extra-index-url https://pypi.anaconda.org/intel/simple Using source directory: '/home/matteius/.virtualenvs/pipenv-4977-Zx_QPntz/src' Adding tensorflow to Pipfile's [dev-packages]... βœ” Installation Succeeded Pipfile.lock (82f31d) out of date, updating to (888e3a)... Locking [dev-packages] dependencies... Building requirements... Resolving dependencies... Reporter.starting() INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting() Reporter.adding_requirement(SpecifierRequirement('tensorflow'), None) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('tensorflow'), None) Reporter.adding_requirement(SpecifierRequirement('tf2onnx'), None) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('tf2onnx'), None) Reporter.adding_requirement(SpecifierRequirement('keras'), None) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('keras'), None) Reporter.adding_requirement(SpecifierRequirement('onnxmltools'), None) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('onnxmltools'), None) Reporter.adding_requirement(SpecifierRequirement('pyserial'), None) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('pyserial'), None) Reporter.adding_requirement(SpecifierRequirement('skl2onnx'), None) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('skl2onnx'), None) Reporter.starting_round(0) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(0) Reporter.adding_requirement(SpecifierRequirement('gast>=0.2.1'), LinkCandidate('https://files.pythonhosted.org/packages/2f/45/f5c91d69c2121e8e60673164bdcd2c6cda7b89e37decbc3c01b0466ca990/tensorflow-2.8.0-cp38-cp38-manylinux2010_x86_64.whl#sha256=8489b4f1771e146f752b0eaeb57acf183bd07357e4550464e7dff18b3b656b5d (from https://pypi.org/simple/tensorflow/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('gast>=0.2.1'), LinkCandidate('https://files.pythonhosted.org/packages/2f/45/f5c91d69c2121e8e60673164bdcd2c6cda7b89e37decbc3c01b0466ca990/tensorflow-2.8.0-cp38-cp38-manylinux2010_x86_64.whl#sha256=8489b4f1771e146f752b0eaeb57acf183bd07357e4550464e7dff18b3b656b5d (from https://pypi.org/simple/tensorflow/)')) Reporter.adding_requirement(SpecifierRequirement('opt-einsum>=2.3.2'), LinkCandidate('https://files.pythonhosted.org/packages/2f/45/f5c91d69c2121e8e60673164bdcd2c6cda7b89e37decbc3c01b0466ca990/tensorflow-2.8.0-cp38-cp38-manylinux2010_x86_64.whl#sha256=8489b4f1771e146f752b0eaeb57acf183bd07357e4550464e7dff18b3b656b5d (from https://pypi.org/simple/tensorflow/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('opt-einsum>=2.3.2'), LinkCandidate('https://files.pythonhosted.org/packages/2f/45/f5c91d69c2121e8e60673164bdcd2c6cda7b89e37decbc3c01b0466ca990/tensorflow-2.8.0-cp38-cp38-manylinux2010_x86_64.whl#sha256=8489b4f1771e146f752b0eaeb57acf183bd07357e4550464e7dff18b3b656b5d (from https://pypi.org/simple/tensorflow/)')) Reporter.adding_requirement(SpecifierRequirement('six>=1.12.0'), LinkCandidate('https://files.pythonhosted.org/packages/2f/45/f5c91d69c2121e8e60673164bdcd2c6cda7b89e37decbc3c01b0466ca990/tensorflow-2.8.0-cp38-cp38-manylinux2010_x86_64.whl#sha256=8489b4f1771e146f752b0eaeb57acf183bd07357e4550464e7dff18b3b656b5d (from https://pypi.org/simple/tensorflow/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('six>=1..................................... (ELIDED TOO LONG) .................................................................. manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=bc3744dabc56b50bec73624aeca02e0def06b03cb287de26836e730659c5d29c (from https://pypi.org/simple/scikit-learn/) (requires-python:>=3.7)'))), 'onnxconverter-common': Criterion((SpecifierRequirement('onnxconverter-common>=1.7.0'), via=LinkCandidate('https://files.pythonhosted.org/packages/4c/bf/48210428aca59bcefa94ff52f12981f07be13809441754ed86c1abe43d1c/skl2onnx-1.11-py2.py3-none-any.whl#sha256=3942a97f30fc0c8d2fb4d715332714a3f0571f33b8075f4aa3b2b234566165c4 (from https://pypi.org/simple/skl2onnx/)'))), 'wheel': Criterion((SpecifierRequirement('wheel<1.0,>=0.23.0'), via=LinkCandidate('https://files.pythonhosted.org/packages/2b/03/13dde6512ad7b4557eb792fbcf0c653af6076b81e5941d36ec61f7ce6028/astunparse-1.6.3-py2.py3-none-any.whl#sha256=c2652417f2c8b5bb325c885ae329bdf3f86424075c4fd1a128674bc6fba4b8e8 (from https://pypi.org/simple/astunparse/)')), (SpecifierRequirement('wheel>=0.26'), via=LinkCandidate('https://files.pythonhosted.org/packages/f7/fd/67c61276de025801cfa8a1b9af2d7c577e7f27c17b6bff2baca20bf03543/tensorboard-2.8.0-py3-none-any.whl#sha256=65a338e4424e9079f2604923bdbe301792adce2ace1be68da6b3ddf005170def (from https://pypi.org/simple/tensorboard/) (requires-python:>=3.6)'))), 'threadpoolctl': Criterion((SpecifierRequirement('threadpoolctl>=2.0.0'), via=LinkCandidate('https://files.pythonhosted.org/packages/40/d3/206905d836cd496c1f78a15ef92a0f0477d74113b4f349342bf31dfd62ca/scikit_learn-1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=bc3744dabc56b50bec73624aeca02e0def06b03cb287de26836e730659c5d29c (from https://pypi.org/simple/scikit-learn/) (requires-python:>=3.7)'))), 'joblib': Criterion((SpecifierRequirement('joblib>=0.11'), via=LinkCandidate('https://files.pythonhosted.org/packages/40/d3/206905d836cd496c1f78a15ef92a0f0477d74113b4f349342bf31dfd62ca/scikit_learn-1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=bc3744dabc56b50bec73624aeca02e0def06b03cb287de26836e730659c5d29c (from https://pypi.org/simple/scikit-learn/) (requires-python:>=3.7)'))), 'google-auth': Criterion((SpecifierRequirement('google-auth<3,>=1.6.3'), via=LinkCandidate('https://files.pythonhosted.org/packages/f7/fd/67c61276de025801cfa8a1b9af2d7c577e7f27c17b6bff2baca20bf03543/tensorboard-2.8.0-py3-none-any.whl#sha256=65a338e4424e9079f2604923bdbe301792adce2ace1be68da6b3ddf005170def (from https://pypi.org/simple/tensorboard/) (requires-python:>=3.6)')), (SpecifierRequirement('google-auth>=1.0.0'), via=LinkCandidate('https://files.pythonhosted.org/packages/b1/0e/0636cc1448a7abc444fb1b3a63655e294e0d2d49092dc3de05241be6d43c/google_auth_oauthlib-0.4.6-py2.py3-none-any.whl#sha256=3f2a6e802eebbb6fb736a370fbf3b055edcb6b52878bf2f26330b5e041316c73 (from https://pypi.org/simple/google-auth-oauthlib/) (requires-python:>=3.6)'))), 'markdown': Criterion((SpecifierRequirement('markdown>=2.6.8'), via=LinkCandidate('https://files.pythonhosted.org/packages/f7/fd/67c61276de025801cfa8a1b9af2d7c577e7f27c17b6bff2baca20bf03543/tensorboard-2.8.0-py3-none-any.whl#sha256=65a338e4424e9079f2604923bdbe301792adce2ace1be68da6b3ddf005170def (from https://pypi.org/simple/tensorboard/) (requires-python:>=3.6)'))), 'google-auth-oauthlib': Criterion((SpecifierRequirement('google-auth-oauthlib<0.5,>=0.4.1'), via=LinkCandidate('https://files.pythonhosted.org/packages/f7/fd/67c61276de025801cfa8a1b9af2d7c577e7f27c17b6bff2baca20bf03543/tensorboard-2.8.0-py3-none-any.whl#sha256=65a338e4424e9079f2604923bdbe301792adce2ace1be68da6b3ddf005170def (from https://pypi.org/simple/tensorboard/) (requires-python:>=3.6)'))), 'tensorboard-plugin-wit': Criterion((SpecifierRequirement('tensorboard-plugin-wit>=1.6.0'), via=LinkCandidate('https://files.pythonhosted.org/packages/f7/fd/67c61276de025801cfa8a1b9af2d7c577e7f27c17b6bff2baca20bf03543/tensorboard-2.8.0-py3-none-any.whl#sha256=65a338e4424e9079f2604923bdbe301792adce2ace1be68da6b3ddf005170def (from https://pypi.org/simple/tensorboard/) (requires-python:>=3.6)'))), 'werkzeug': Criterion((SpecifierRequirement('werkzeug>=0.11.15'), via=LinkCandidate('https://files.pythonhosted.org/packages/f7/fd/67c61276de025801cfa8a1b9af2d7c577e7f27c17b6bff2baca20bf03543/tensorboard-2.8.0-py3-none-any.whl#sha256=65a338e4424e9079f2604923bdbe301792adce2ace1be68da6b3ddf005170def (from https://pypi.org/simple/tensorboard/) (requires-python:>=3.6)'))), 'tensorboard-data-server': Criterion((SpecifierRequirement('tensorboard-data-server<0.7.0,>=0.6.0'), via=LinkCandidate('https://files.pythonhosted.org/packages/f7/fd/67c61276de025801cfa8a1b9af2d7c577e7f27c17b6bff2baca20bf03543/tensorboard-2.8.0-py3-none-any.whl#sha256=65a338e4424e9079f2604923bdbe301792adce2ace1be68da6b3ddf005170def (from https://pypi.org/simple/tensorboard/) (requires-python:>=3.6)'))), 'charset-normalizer': Criterion((SpecifierRequirement('charset-normalizer~=2.0.0; python_version >= "3"'), via=LinkCandidate('https://files.pythonhosted.org/packages/2d/61/08076519c80041bc0ffa1a8af0cbd3bf3e2b62af10435d269a9d0f40564d/requests-2.27.1-py2.py3-none-any.whl#sha256=f22fa1e554c9ddfd16e6e41ac79759e17be9e492b3587efa038054674760e72d (from https://pypi.org/simple/requests/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*)'))), 'urllib3': Criterion((SpecifierRequirement('urllib3<1.27,>=1.21.1'), via=LinkCandidate('https://files.pythonhosted.org/packages/2d/61/08076519c80041bc0ffa1a8af0cbd3bf3e2b62af10435d269a9d0f40564d/requests-2.27.1-py2.py3-none-any.whl#sha256=f22fa1e554c9ddfd16e6e41ac79759e17be9e492b3587efa038054674760e72d (from https://pypi.org/simple/requests/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*)'))), 'certifi': Criterion((SpecifierRequirement('certifi>=2017.4.17'), via=LinkCandidate('https://files.pythonhosted.org/packages/2d/61/08076519c80041bc0ffa1a8af0cbd3bf3e2b62af10435d269a9d0f40564d/requests-2.27.1-py2.py3-none-any.whl#sha256=f22fa1e554c9ddfd16e6e41ac79759e17be9e492b3587efa038054674760e72d (from https://pypi.org/simple/requests/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*)'))), 'idna': Criterion((SpecifierRequirement('idna<4,>=2.5; python_version >= "3"'), via=LinkCandidate('https://files.pythonhosted.org/packages/2d/61/08076519c80041bc0ffa1a8af0cbd3bf3e2b62af10435d269a9d0f40564d/requests-2.27.1-py2.py3-none-any.whl#sha256=f22fa1e554c9ddfd16e6e41ac79759e17be9e492b3587efa038054674760e72d (from https://pypi.org/simple/requests/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*)'))), 'cachetools': Criterion((SpecifierRequirement('cachetools<6.0,>=2.0.0'), via=LinkCandidate('https://files.pythonhosted.org/packages/66/12/eb8e0254e84f47deb4bd65858aef26f93fb4786091442d6bd2e86a5843d3/google_auth-2.6.0-py2.py3-none-any.whl#sha256=218ca03d7744ca0c8b6697b6083334be7df49b7bf76a69d555962fd1a7657b5f (from https://pypi.org/simple/google-auth/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*)'))), 'pyasn1-modules': Criterion((SpecifierRequirement('pyasn1-modules>=0.2.1'), via=LinkCandidate('https://files.pythonhosted.org/packages/66/12/eb8e0254e84f47deb4bd65858aef26f93fb4786091442d6bd2e86a5843d3/google_auth-2.6.0-py2.py3-none-any.whl#sha256=218ca03d7744ca0c8b6697b6083334be7df49b7bf76a69d555962fd1a7657b5f (from https://pypi.org/simple/google-auth/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*)'))), 'rsa': Criterion((SpecifierRequirement('rsa<5,>=3.1.4; python_version >= "3.6"'), via=LinkCandidate('https://files.pythonhosted.org/packages/66/12/eb8e0254e84f47deb4bd65858aef26f93fb4786091442d6bd2e86a5843d3/google_auth-2.6.0-py2.py3-none-any.whl#sha256=218ca03d7744ca0c8b6697b6083334be7df49b7bf76a69d555962fd1a7657b5f (from https://pypi.org/simple/google-auth/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*)'))), 'requests-oauthlib': Criterion((SpecifierRequirement('requests-oauthlib>=0.7.0'), via=LinkCandidate('https://files.pythonhosted.org/packages/b1/0e/0636cc1448a7abc444fb1b3a63655e294e0d2d49092dc3de05241be6d43c/google_auth_oauthlib-0.4.6-py2.py3-none-any.whl#sha256=3f2a6e802eebbb6fb736a370fbf3b055edcb6b52878bf2f26330b5e041316c73 (from https://pypi.org/simple/google-auth-oauthlib/) (requires-python:>=3.6)'))), 'importlib-metadata': Criterion((SpecifierRequirement('importlib-metadata>=4.4; python_version < "3.10"'), via=LinkCandidate('https://files.pythonhosted.org/packages/9f/d4/2c7f83915d437736996b2674300c6c4b578a6f897f34e40f5c04db146719/Markdown-3.3.6-py3-none-any.whl#sha256=9923332318f843411e9932237530df53162e29dc7a4e2b91e35764583c46c9a3 (from https://pypi.org/simple/markdown/) (requires-python:>=3.6)'))), 'zipp': Criterion((SpecifierRequirement('zipp>=0.5'), via=LinkCandidate('https://files.pythonhosted.org/packages/70/76/a44cce0f66f73ec6d5d8138f47a16cd3f9e57f4720bce7492d372ef5c74f/importlib_metadata-4.11.2-py3-none-any.whl#sha256=d16e8c1deb60de41b8e8ed21c1a7b947b0bc62fab7e1d470bcdf331cea2e6735 (from https://pypi.org/simple/importlib-metadata/) (requires-python:>=3.7)'))), 'pyasn1': Criterion((SpecifierRequirement('pyasn1<0.5.0,>=0.4.6'), via=LinkCandidate('https://files.pythonhosted.org/packages/95/de/214830a981892a3e286c3794f41ae67a4495df1108c3da8a9f62159b9a9d/pyasn1_modules-0.2.8-py2.py3-none-any.whl#sha256=a50b808ffeb97cb3601dd25981f6b016cbb3d31fbf57a8b8a87428e6158d0c74 (from https://pypi.org/simple/pyasn1-modules/)')), (SpecifierRequirement('pyasn1>=0.1.3'), via=LinkCandidate('https://files.pythonhosted.org/packages/30/ab/8fd9e88e6fa5ec41afca995938bbefb72195278e0cfc5bd76a4f29b23fb2/rsa-4.8-py3-none-any.whl#sha256=95c5d300c4e879ee69708c428ba566c59478fd653cc3a22243eeb8ed846950bb (from https://pypi.org/simple/rsa/) (requires-python:>=3.6,<4)'))), 'oauthlib': Criterion((SpecifierRequirement('oauthlib>=3.0.0'), via=LinkCandidate('https://files.pythonhosted.org/packages/6f/bb/5deac77a9af870143c684ab46a7934038a53eb4aa975bc0687ed6ca2c610/requests_oauthlib-1.3.1-py2.py3-none-any.whl#sha256=2577c501a2fb8d05a304c09d090d6e47c306fef15809d102b327cf8364bddab5 (from https://pypi.org/simple/requests-oauthlib/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*)')))}, backtrack_causes=[])) β Ή Locking... βœ” Success! Locking [packages] dependencies... Building requirements... Resolving dependencies... Reporter.starting() INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting() Reporter.adding_requirement(SpecifierRequirement('onnxruntime'), None) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('onnxruntime'), None) Reporter.adding_requirement(SpecifierRequirement('scikit-learn'), None) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('scikit-learn'), None) Reporter.adding_requirement(SpecifierRequirement('scipy'), None) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('scipy'), None) Reporter.adding_requirement(SpecifierRequirement('neurokit2'), None) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('neurokit2'), None) Reporter.adding_requirement(SpecifierRequirement('numpy'), None) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy'), None) Reporter.adding_requirement(SpecifierRequirement('scikit-learn-intelex'), None) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('scikit-learn-intelex'), None) Reporter.starting_round(0) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(0) Reporter.adding_requirement(SpecifierRequirement('numpy>=1.16.6'), LinkCandidate('https://files.pythonhosted.org/packages/8b/74/5b30ee067fba2228d0b6bbf5c8915cadc5ce98b4c97beba978b03128d344/onnxruntime-1.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=3913769691f7f20e13070d65bfddd9f85f862274fcc17312c3b7d3fee8af21d8 (from https://pypi.org/simple/onnxruntime/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy>=1.16.6'), LinkCandidate('https://files.pythonhosted.org/packages/8b/74/5b30ee067fba2228d0b6bbf5c8915cadc5ce98b4c97beba978b03128d344/onnxruntime-1.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=3913769691f7f20e13070d65bfddd9f85f862274fcc17312c3b7d3fee8af21d8 (from https://pypi.org/simple/onnxruntime/)')) Reporter.adding_requirement(SpecifierRequirement('protobuf'), LinkCandidate('https://files.pythonhosted.org/packages/8b/74/5b30ee067fba2228d0b6bbf5c8915cadc5ce98b4c97beba978b03128d344/onnxruntime-1.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=3913769691f7f20e13070d65bfddd9f85f862274fcc17312c3b7d3fee8af21d8 (from https://pypi.org/simple/onnxruntime/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('protobuf'), LinkCandidate('https://files.pythonhosted.org/packages/8b/74/5b30ee067fba2228d0b6bbf5c8915cadc5ce98b4c97beba978b03128d344/onnxruntime-1.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=3913769691f7f20e13070d65bfddd9f85f862274fcc17312c3b7d3fee8af21d8 (from https://pypi.org/simple/onnxruntime/)')) Reporter.adding_requirement(SpecifierRequirement('flatbuffers'), LinkCandidate('https://files.pythonhosted.org/packages/8b/74/5b30ee067fba2228d0b6bbf5c8915cadc5ce98b4c97beba978b03128d344/onnxruntime-1.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=3913769691f7f20e13070d65bfddd9f85f862274fcc17312c3b7d3fee8af21d8 (from https://pypi.org/simple/onnxruntime/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('flatbuffers'), LinkCandidate('https://files.pythonhosted.org/packages/8b/74/5b30ee067fba2228d0b6bbf5c8915cadc5ce98b4c97beba978b03128d344/onnxruntime-1.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=3913769691f7f20e13070d65bfddd9f85f862274fcc17312c3b7d3fee8af21d8 (from https://pypi.org/simple/onnxruntime/)')) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/8b/74/5b30ee067fba2228d0b6bbf5c8915cadc5ce98b4c97beba978b03128d344/onnxruntime-1.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=3913769691f7f20e13070d65bfddd9f85f862274fcc17312c3b7d3fee8af21d8 (from https://pypi.org/simple/onnxruntime/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/8b/74/5b30ee067fba2228d0b6bbf5c8915cadc5ce98b4c97beba978b03128d344/onnxruntime-1.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=3913769691f7f20e13070d65bfddd9f85f862274fcc17312c3b7d3fee8af21d8 (from https://pypi.org/simple/onnxruntime/)')) Reporter.ending_round(0, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(0, state) Reporter.starting_round(1) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(1) Reporter.adding_requirement(SpecifierRequirement('numpy>=1.14.6'), LinkCandidate('https://files.pythonhosted.org/packages/40/d3/206905d836cd496c1f78a15ef92a0f0477d74113b4f349342bf31dfd62ca/scikit_learn-1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=bc3744dabc56b50bec73624aeca02e0def06b03cb287de26836e730659c5d29c (from https://pypi.org/simple/scikit-learn/) (requires-python:>=3.7)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy>=1.14.6'), LinkCandidate('https://files.pythonhosted.org/packages/40/d3/206905d836cd496c1f78a15ef92a0f0477d74113b4f349342bf31dfd62ca/scikit_learn-1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=bc3744dabc56b50bec73624aeca02e0def06b03cb287de26836e730659c5d29c (from https://pypi.org/simple/scikit-learn/) (requires-python:>=3.7)')) Reporter.adding_requirement(SpecifierRequirement('scipy>=1.1.0'), LinkCandidate('https://files.pythonhosted.org/packages/40/d3/206905d836cd496c1f78a15ef92a0f0477d74113b4f349342bf31dfd62ca/scikit_learn-1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=bc3744dabc56b50bec73624aeca02e0def06b03cb287de26836e730659c5d29c (from https://pypi.org/simple/scikit-learn/) (requires-python:>=3.7)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('scipy>=1.1.0'), LinkCandidate('https://files.pythonhosted.org/packages/40/d3/206905d836cd496c1f78a15ef92a0f0477d74113b4f349342bf31dfd62ca/scikit_learn-1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=bc3744dabc56b50bec73624aeca02e0def06b03cb287de26836e730659c5d29c (from https://pypi.org/simple/scikit-learn/) (requires-python:>=3.7)')) Reporter.adding_requirement(SpecifierRequirement('joblib>=0.11'), LinkCandidate('https://files.pythonhosted.org/packages/40/d3/206905d836cd496c1f78a15ef92a0f0477d74113b4f349342bf31dfd62ca/scikit_learn-1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=bc3744dabc56b50bec73624aeca02e0def06b03cb287de26836e730659c5d29c (from https://pypi.org/simple/scikit-learn/) (requires-python:>=3.7)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('joblib>=0.11'), LinkCandidate('https://files.pythonhosted.org/packages/40/d3/206905d836cd496c1f78a15ef92a0f0477d74113b4f349342bf31dfd62ca/scikit_learn-1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=bc3744dabc56b50bec73624aeca02e0def06b03cb287de26836e730659c5d29c (from https://pypi.org/simple/scikit-learn/) (requires-python:>=3.7)')) Reporter.adding_requirement(SpecifierRequirement('threadpoolctl>=2.0.0'), LinkCandidate('https://files.pythonhosted.org/packages/40/d3/206905d836cd496c1f78a15ef92a0f0477d74113b4f349342bf31dfd62ca/scikit_learn-1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=bc3744dabc56b50bec73624aeca02e0def06b03cb287de26836e730659c5d29c (from https://pypi.org/simple/scikit-learn/) (requires-python:>=3.7)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('threadpoolctl>=2.0.0'), LinkCandidate('https://files.pythonhosted.org/packages/40/d3/206905d836cd496c1f78a15ef92a0f0477d74113b4f349342bf31dfd62ca/scikit_learn-1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=bc3744dabc56b50bec73624aeca02e0def06b03cb287de26836e730659c5d29c (from https://pypi.org/simple/scikit-learn/) (requires-python:>=3.7)')) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/40/d3/206905d836cd496c1f78a15ef92a0f0477d74113b4f349342bf31dfd62ca/scikit_learn-1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=bc3744dabc56b50bec73624aeca02e0def06b03cb287de26836e730659c5d29c (from https://pypi.org/simple/scikit-learn/) (requires-python:>=3.7)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/40/d3/206905d836cd496c1f78a15ef92a0f0477d74113b4f349342bf31dfd62ca/scikit_learn-1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=bc3744dabc56b50bec73624aeca02e0def06b03cb287de26836e730659c5d29c (from https://pypi.org/simple/scikit-learn/) (requires-python:>=3.7)')) Reporter.ending_round(1, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(1, state) Reporter.starting_round(2) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(2) Reporter.adding_requirement(SpecifierRequirement('numpy<1.25.0,>=1.17.3'), LinkCandidate('https://files.pythonhosted.org/packages/d2/27/b2648569175ba233cb6ad13029f8df4049a581c268156c5dd1db5ca44a8c/scipy-1.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=ad5be4039147c808e64f99c0e8a9641eb5d2fa079ff5894dcd8240e94e347af4 (from https://pypi.org/simple/scipy/) (requires-python:>=3.8,<3.11)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy<1.25.0,>=1.17.3'), LinkCandidate('https://files.pythonhosted.org/packages/d2/27/b2648569175ba233cb6ad13029f8df4049a581c268156c5dd1db5ca44a8c/scipy-1.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=ad5be4039147c808e64f99c0e8a9641eb5d2fa079ff5894dcd8240e94e347af4 (from https://pypi.org/simple/scipy/) (requires-python:>=3.8,<3.11)')) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/d2/27/b2648569175ba233cb6ad13029f8df4049a581c268156c5dd1db5ca44a8c/scipy-1.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=ad5be4039147c808e64f99c0e8a9641eb5d2fa079ff5894dcd8240e94e347af4 (from https://pypi.org/simple/scipy/) (requires-python:>=3.8,<3.11)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/d2/27/b2648569175ba233cb6ad13029f8df4049a581c268156c5dd1db5ca44a8c/scipy-1.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=ad5be4039147c808e64f99c0e8a9641eb5d2fa079ff5894dcd8240e94e347af4 (from https://pypi.org/simple/scipy/) (requires-python:>=3.8,<3.11)')) Reporter.ending_round(2, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(2, state) Reporter.starting_round(3) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(3) Reporter.adding_requirement(SpecifierRequirement('scikit-learn'), LinkCandidate('https://files.pythonhosted.org/packages/93/58/289d1e68065e0bc7d765ae42b3360a60d21504e82a39b1019c40dc4a7d19/neurokit2-0.1.7-py2.py3-none-any.whl#sha256=000d908fa90441673fa7cdfb0bd4c5326c701daf260e2c612fb0900fd8421e75 (from https://pypi.org/simple/neurokit2/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('scikit-learn'), LinkCandidate('https://files.pythonhosted.org/packages/93/58/289d1e68065e0bc7d765ae42b3360a60d21504e82a39b1019c40dc4a7d19/neurokit2-0.1.7-py2.py3-none-any.whl#sha256=000d908fa90441673fa7cdfb0bd4c5326c701daf260e2c612fb0900fd8421e75 (from https://pypi.org/simple/neurokit2/)')) Reporter.adding_requirement(SpecifierRequirement('scipy'), LinkCandidate('https://files.pythonhosted.org/packages/93/58/289d1e68065e0bc7d765ae42b3360a60d21504e82a39b1019c40dc4a7d19/neurokit2-0.1.7-py2.py3-none-any.whl#sha256=000d908fa90441673fa7cdfb0bd4c5326c701daf260e2c612fb0900fd8421e75 (from https://pypi.org/simple/neurokit2/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('scipy'), LinkCandidate('https://files.pythonhosted.org/packages/93/58/289d1e68065e0bc7d765ae42b3360a60d21504e82a39b1019c40dc4a7d19/neurokit2-0.1.7-py2.py3-none-any.whl#sha256=000d908fa90441673fa7cdfb0bd4c5326c701daf260e2c612fb0900fd8421e75 (from https://pypi.org/simple/neurokit2/)')) Reporter.adding_requirement(SpecifierRequirement('matplotlib'), LinkCandidate('https://files.pythonhosted.org/packages/93/58/289d1e68065e0bc7d765ae42b3360a60d21504e82a39b1019c40dc4a7d19/neurokit2-0.1.7-py2.py3-none-any.whl#sha256=000d908fa90441673fa7cdfb0bd4c5326c701daf260e2c612fb0900fd8421e75 (from https://pypi.org/simple/neurokit2/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('matplotlib'), LinkCandidate('https://files.pythonhosted.org/packages/93/58/289d1e68065e0bc7d765ae42b3360a60d21504e82a39b1019c40dc4a7d19/neurokit2-0.1.7-py2.py3-none-any.whl#sha256=000d908fa90441673fa7cdfb0bd4c5326c701daf260e2c612fb0900fd8421e75 (from https://pypi.org/simple/neurokit2/)')) Reporter.adding_requirement(SpecifierRequirement('pandas'), LinkCandidate('https://files.pythonhosted.org/packages/93/58/289d1e68065e0bc7d765ae42b3360a60d21504e82a39b1019c40dc4a7d19/neurokit2-0.1.7-py2.py3-none-any.whl#sha256=000d908fa90441673fa7cdfb0bd4c5326c701daf260e2c612fb0900fd8421e75 (from https://pypi.org/simple/neurokit2/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('pandas'), LinkCandidate('https://files.pythonhosted.org/packages/93/58/289d1e68065e0bc7d765ae42b3360a60d21504e82a39b1019c40dc4a7d19/neurokit2-0.1.7-py2.py3-none-any.whl#sha256=000d908fa90441673fa7cdfb0bd4c5326c701daf260e2c612fb0900fd8421e75 (from https://pypi.org/simple/neurokit2/)')) Reporter.adding_requirement(SpecifierRequirement('numpy'), LinkCandidate('https://files.pythonhosted.org/packages/93/58/289d1e68065e0bc7d765ae42b3360a60d21504e82a39b1019c40dc4a7d19/neurokit2-0.1.7-py2.py3-none-any.whl#sha256=000d908fa90441673fa7cdfb0bd4c5326c701daf260e2c612fb0900fd8421e75 (from https://pypi.org/simple/neurokit2/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy'), LinkCandidate('https://files.pythonhosted.org/packages/93/58/289d1e68065e0bc7d765ae42b3360a60d21504e82a39b1019c40dc4a7d19/neurokit2-0.1.7-py2.py3-none-any.whl#sha256=000d908fa90441673fa7cdfb0bd4c5326c701daf260e2c612fb0900fd8421e75 (from https://pypi.org/simple/neurokit2/)')) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/93/58/289d1e68065e0bc7d765ae42b3360a60d21504e82a39b1019c40dc4a7d19/neurokit2-0.1.7-py2.py3-none-any.whl#sha256=000d908fa90441673fa7cdfb0bd4c5326c701daf260e2c612fb0900fd8421e75 (from https://pypi.org/simple/neurokit2/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/93/58/289d1e68065e0bc7d765ae42b3360a60d21504e82a39b1019c40dc4a7d19/neurokit2-0.1.7-py2.py3-none-any.whl#sha256=000d908fa90441673fa7cdfb0bd4c5326c701daf260e2c612fb0900fd8421e75 (from https://pypi.org/simple/neurokit2/)')) Reporter.ending_round(3, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(3, state) Reporter.starting_round(4) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(4) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/38/c0/c45c5eb0e25247d5fbb333fd0b56e570ba21cf0e3dca3abad174fb780e8c/numpy-1.22.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=3ca688e1b9b95d80250bca34b11a05e389b1420d00e87a0d12dc45f131f704a1 (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/38/c0/c45c5eb0e25247d5fbb333fd0b56e570ba21cf0e3dca3abad174fb780e8c/numpy-1.22.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=3ca688e1b9b95d80250bca34b11a05e389b1420d00e87a0d12dc45f131f704a1 (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)')) Reporter.ending_round(4, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(4, state) Reporter.starting_round(5) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(5) Reporter.adding_requirement(SpecifierRequirement('scikit-learn>=0.22'), LinkCandidate('https://files.pythonhosted.org/packages/72/3a/bcde1bb45a3d38f633d455428d6224a520d7ab08f8a7f5cbeda57cf19024/scikit_learn_intelex-2021.5.3-py38-none-manylinux1_x86_64.whl#sha256=a2f57d8a88d20b6c17216a9ca406fd333ec5722eb2b07b4d6720dedefc126d2c (from https://pypi.org/simple/scikit-learn-intelex/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('scikit-learn>=0.22'), LinkCandidate('https://files.pythonhosted.org/packages/72/3a/bcde1bb45a3d38f633d455428d6224a520d7ab08f8a7f5cbeda57cf19024/scikit_learn_intelex-2021.5.3-py38-none-manylinux1_x86_64.whl#sha256=a2f57d8a88d20b6c17216a9ca406fd333ec5722eb2b07b4d6720dedefc126d2c (from https://pypi.org/simple/scikit-learn-intelex/)')) Reporter.adding_requirement(SpecifierRequirement('daal4py==2021.5.3'), LinkCandidate('https://files.pythonhosted.org/packages/72/3a/bcde1bb45a3d38f633d455428d6224a520d7ab08f8a7f5cbeda57cf19024/scikit_learn_intelex-2021.5.3-py38-none-manylinux1_x86_64.whl#sha256=a2f57d8a88d20b6c17216a9ca406fd333ec5722eb2b07b4d6720dedefc126d2c (from https://pypi.org/simple/scikit-learn-intelex/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('daal4py==2021.5.3'), LinkCandidate('https://files.pythonhosted.org/packages/72/3a/bcde1bb45a3d38f633d455428d6224a520d7ab08f8a7f5cbeda57cf19024/scikit_learn_intelex-2021.5.3-py38-none-manylinux1_x86_64.whl#sha256=a2f57d8a88d20b6c17216a9ca406fd333ec5722eb2b07b4d6720dedefc126d2c (from https://pypi.org/simple/scikit-learn-intelex/)')) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/72/3a/bcde1bb45a3d38f633d455428d6224a520d7ab08f8a7f5cbeda57cf19024/scikit_learn_intelex-2021.5.3-py38-none-manylinux1_x86_64.whl#sha256=a2f57d8a88d20b6c17216a9ca406fd333ec5722eb2b07b4d6720dedefc126d2c (from https://pypi.org/simple/scikit-learn-intelex/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/72/3a/bcde1bb45a3d38f633d455428d6224a520d7ab08f8a7f5cbeda57cf19024/scikit_learn_intelex-2021.5.3-py38-none-manylinux1_x86_64.whl#sha256=a2f57d8a88d20b6c17216a9ca406fd333ec5722eb2b07b4d6720dedefc126d2c (from https://pypi.org/simple/scikit-learn-intelex/)')) Reporter.ending_round(5, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(5, state) Reporter.starting_round(6) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(6) Reporter.adding_requirement(SpecifierRequirement('numpy>=1.15'), LinkCandidate('https://files.pythonhosted.org/packages/66/0c/6eb4860bdeeb8e383dae3b4cf7626498e26a7f837656b38974251529373c/daal4py-2021.5.3-py38-none-manylinux1_x86_64.whl#sha256=e3098c6075d2e544f2e071bb54f9f23d6889e752757d447cdcab476e5b3ac282 (from https://pypi.org/simple/daal4py/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy>=1.15'), LinkCandidate('https://files.pythonhosted.org/packages/66/0c/6eb4860bdeeb8e383dae3b4cf7626498e26a7f837656b38974251529373c/daal4py-2021.5.3-py38-none-manylinux1_x86_64.whl#sha256=e3098c6075d2e544f2e071bb54f9f23d6889e752757d447cdcab476e5b3ac282 (from https://pypi.org/simple/daal4py/)')) Reporter.adding_requirement(SpecifierRequirement('daal==2021.5.3'), LinkCandidate('https://files.pythonhosted.org/packages/66/0c/6eb4860bdeeb8e383dae3b4cf7626498e26a7f837656b38974251529373c/daal4py-2021.5.3-py38-none-manylinux1_x86_64.whl#sha256=e3098c6075d2e544f2e071bb54f9f23d6889e752757d447cdcab476e5b3ac282 (from https://pypi.org/simple/daal4py/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('daal==2021.5.3'), LinkCandidate('https://files.pythonhosted.org/packages/66/0c/6eb4860bdeeb8e383dae3b4cf7626498e26a7f837656b38974251529373c/daal4py-2021.5.3-py38-none-manylinux1_x86_64.whl#sha256=e3098c6075d2e544f2e071bb54f9f23d6889e752757d447cdcab476e5b3ac282 (from https://pypi.org/simple/daal4py/)')) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/66/0c/6eb4860bdeeb8e383dae3b4cf7626498e26a7f837656b38974251529373c/daal4py-2021.5.3-py38-none-manylinux1_x86_64.whl#sha256=e3098c6075d2e544f2e071bb54f9f23d6889e752757d447cdcab476e5b3ac282 (from https://pypi.org/simple/daal4py/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/66/0c/6eb4860bdeeb8e383dae3b4cf7626498e26a7f837656b38974251529373c/daal4py-2021.5.3-py38-none-manylinux1_x86_64.whl#sha256=e3098c6075d2e544f2e071bb54f9f23d6889e752757d447cdcab476e5b3ac282 (from https://pypi.org/simple/daal4py/)')) Reporter.ending_round(6, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(6, state) Reporter.starting_round(7) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(7) Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/84/19/6cd188fc67af7bd9a694cd463461b3c3504f1f67a09d833e28986b1ae8fd/daal-2021.5.3-py2.py3-none-manylinux1_x86_64.whl#sha256=5e9c1cf5936ce5fbc5f34bebce60654f9dd4788ef884aa9ee0f27d4dbd938e2f (from https://pypi.org/simple/daal/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('tbb==2021.*'), LinkCandidate('https://files.pythonhosted.org/packages/84/19/6cd188fc67af7bd9a694cd463461b3c3504f1f67a09d833e28986b1ae8fd/daal-2021.5.3-py2.py3-none-manylinux1_x86_64.whl#sha256=5e9c1cf5936ce5fbc5f34bebce60654f9dd4788ef884aa9ee0f27d4dbd938e2f (from https://pypi.org/simple/daal/)')) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/84/19/6cd188fc67af7bd9a694cd463461b3c3504f1f67a09d833e28986b1ae8fd/daal-2021.5.3-py2.py3-none-manylinux1_x86_64.whl#sha256=5e9c1cf5936ce5fbc5f34bebce60654f9dd4788ef884aa9ee0f27d4dbd938e2f (from https://pypi.org/simple/daal/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/84/19/6cd188fc67af7bd9a694cd463461b3c3504f1f67a09d833e28986b1ae8fd/daal-2021.5.3-py2.py3-none-manylinux1_x86_64.whl#sha256=5e9c1cf5936ce5fbc5f34bebce60654f9dd4788ef884aa9ee0f27d4dbd938e2f (from https://pypi.org/simple/daal/)')) Reporter.ending_round(7, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(7, state) Reporter.starting_round(8) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(8) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/e5/d5/4db63b275cff517522e4e5c4653bfd02d03c39782cba560c780133551f90/tbb-2021.5.1-py2.py3-none-manylinux1_x86_64.whl#sha256=6578ae9485140efc0dccde98ccec03706d5c9aa7645f06ecfe1bb3cd720c0432 (from https://pypi.org/simple/tbb/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/e5/d5/4db63b275cff517522e4e5c4653bfd02d03c39782cba560c780133551f90/tbb-2021.5.1-py2.py3-none-manylinux1_x86_64.whl#sha256=6578ae9485140efc0dccde98ccec03706d5c9aa7645f06ecfe1bb3cd720c0432 (from https://pypi.org/simple/tbb/)')) Reporter.ending_round(8, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(8, state) Reporter.starting_round(9) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(9) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/3e/d5/0163eb0cfa0b673aa4fe1cd3ea9d8a81ea0f32e50807b0c295871e4aab2e/joblib-1.1.0-py2.py3-none-any.whl#sha256=f21f109b3c7ff9d95f8387f752d0d9c34a02aa2f7060c2135f465da0e5160ff6 (from https://pypi.org/simple/joblib/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/3e/d5/0163eb0cfa0b673aa4fe1cd3ea9d8a81ea0f32e50807b0c295871e4aab2e/joblib-1.1.0-py2.py3-none-any.whl#sha256=f21f109b3c7ff9d95f8387f752d0d9c34a02aa2f7060c2135f465da0e5160ff6 (from https://pypi.org/simple/joblib/) (requires-python:>=3.6)')) Reporter.ending_round(9, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(9, state) Reporter.starting_round(10) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(10) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/61/cf/6e354304bcb9c6413c4e02a747b600061c21d38ba51e7e544ac7bc66aecc/threadpoolctl-3.1.0-py3-none-any.whl#sha256=8b99adda265feb6773280df41eece7b2e6561b772d21ffd52e372f999024907b (from https://pypi.org/simple/threadpoolctl/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/61/cf/6e354304bcb9c6413c4e02a747b600061c21d38ba51e7e544ac7bc66aecc/threadpoolctl-3.1.0-py3-none-any.whl#sha256=8b99adda265feb6773280df41eece7b2e6561b772d21ffd52e372f999024907b (from https://pypi.org/simple/threadpoolctl/) (requires-python:>=3.6)')) Reporter.ending_round(10, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(10, state) Reporter.starting_round(11) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(11) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/3d/d0/26033c70d642fbc1e35d3619cf3210986fb953c173b1226709f75056c149/flatbuffers-2.0-py2.py3-none-any.whl#sha256=3751954f0604580d3219ae49a85fafec9d85eec599c0b96226e1bc0b48e57474 (from https://pypi.org/simple/flatbuffers/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/3d/d0/26033c70d642fbc1e35d3619cf3210986fb953c173b1226709f75056c149/flatbuffers-2.0-py2.py3-none-any.whl#sha256=3751954f0604580d3219ae49a85fafec9d85eec599c0b96226e1bc0b48e57474 (from https://pypi.org/simple/flatbuffers/)')) Reporter.ending_round(11, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(11, state) Reporter.starting_round(12) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(12) Reporter.adding_requirement(SpecifierRequirement('fonttools>=4.22.0'), LinkCandidate('https://files.pythonhosted.org/packages/22/1c/d5e535b36c1de4eef4205656e76ac993c6d01b62cfdcac579edb63cd82e0/matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('fonttools>=4.22.0'), LinkCandidate('https://files.pythonhosted.org/packages/22/1c/d5e535b36c1de4eef4205656e76ac993c6d01b62cfdcac579edb63cd82e0/matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)')) Reporter.adding_requirement(SpecifierRequirement('python-dateutil>=2.7'), LinkCandidate('https://files.pythonhosted.org/packages/22/1c/d5e535b36c1de4eef4205656e76ac993c6d01b62cfdcac579edb63cd82e0/matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('python-dateutil>=2.7'), LinkCandidate('https://files.pythonhosted.org/packages/22/1c/d5e535b36c1de4eef4205656e76ac993c6d01b62cfdcac579edb63cd82e0/matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)')) Reporter.adding_requirement(SpecifierRequirement('cycler>=0.10'), LinkCandidate('https://files.pythonhosted.org/packages/22/1c/d5e535b36c1de4eef4205656e76ac993c6d01b62cfdcac579edb63cd82e0/matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('cycler>=0.10'), LinkCandidate('https://files.pythonhosted.org/packages/22/1c/d5e535b36c1de4eef4205656e76ac993c6d01b62cfdcac579edb63cd82e0/matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)')) Reporter.adding_requirement(SpecifierRequirement('packaging>=20.0'), LinkCandidate('https://files.pythonhosted.org/packages/22/1c/d5e535b36c1de4eef4205656e76ac993c6d01b62cfdcac579edb63cd82e0/matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('packaging>=20.0'), LinkCandidate('https://files.pythonhosted.org/packages/22/1c/d5e535b36c1de4eef4205656e76ac993c6d01b62cfdcac579edb63cd82e0/matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)')) Reporter.adding_requirement(SpecifierRequirement('kiwisolver>=1.0.1'), LinkCandidate('https://files.pythonhosted.org/packages/22/1c/d5e535b36c1de4eef4205656e76ac993c6d01b62cfdcac579edb63cd82e0/matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('kiwisolver>=1.0.1'), LinkCandidate('https://files.pythonhosted.org/packages/22/1c/d5e535b36c1de4eef4205656e76ac993c6d01b62cfdcac579edb63cd82e0/matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)')) Reporter.adding_requirement(SpecifierRequirement('pillow>=6.2.0'), LinkCandidate('https://files.pythonhosted.org/packages/22/1c/d5e535b36c1de4eef4205656e76ac993c6d01b62cfdcac579edb63cd82e0/matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('pillow>=6.2.0'), LinkCandidate('https://files.pythonhosted.org/packages/22/1c/d5e535b36c1de4eef4205656e76ac993c6d01b62cfdcac579edb63cd82e0/matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)')) Reporter.adding_requirement(SpecifierRequirement('numpy>=1.17'), LinkCandidate('https://files.pythonhosted.org/packages/22/1c/d5e535b36c1de4eef4205656e76ac993c6d01b62cfdcac579edb63cd82e0/matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy>=1.17'), LinkCandidate('https://files.pythonhosted.org/packages/22/1c/d5e535b36c1de4eef4205656e76ac993c6d01b62cfdcac579edb63cd82e0/matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)')) Reporter.adding_requirement(SpecifierRequirement('pyparsing>=2.2.1'), LinkCandidate('https://files.pythonhosted.org/packages/22/1c/d5e535b36c1de4eef4205656e76ac993c6d01b62cfdcac579edb63cd82e0/matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('pyparsing>=2.2.1'), LinkCandidate('https://files.pythonhosted.org/packages/22/1c/d5e535b36c1de4eef4205656e76ac993c6d01b62cfdcac579edb63cd82e0/matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)')) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/22/1c/d5e535b36c1de4eef4205656e76ac993c6d01b62cfdcac579edb63cd82e0/matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/22/1c/d5e535b36c1de4eef4205656e76ac993c6d01b62cfdcac579edb63cd82e0/matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)')) Reporter.ending_round(12, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(12, state) Reporter.starting_round(13) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(13) Reporter.adding_requirement(SpecifierRequirement('pytz>=2020.1'), LinkCandidate('https://files.pythonhosted.org/packages/20/53/5ad34b9d52f94e1ae8a4a410ead791e74e03d200ec64d9c3f61d83915ec4/pandas-1.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=6105af6533f8b63a43ea9f08a2ede04e8f43e49daef0209ab0d30352bcf08bee (from https://pypi.org/simple/pandas/) (requires-python:>=3.8)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('pytz>=2020.1'), LinkCandidate('https://files.pythonhosted.org/packages/20/53/5ad34b9d52f94e1ae8a4a410ead791e74e03d200ec64d9c3f61d83915ec4/pandas-1.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=6105af6533f8b63a43ea9f08a2ede04e8f43e49daef0209ab0d30352bcf08bee (from https://pypi.org/simple/pandas/) (requires-python:>=3.8)')) Reporter.adding_requirement(SpecifierRequirement('python-dateutil>=2.8.1'), LinkCandidate('https://files.pythonhosted.org/packages/20/53/5ad34b9d52f94e1ae8a4a410ead791e74e03d200ec64d9c3f61d83915ec4/pandas-1.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=6105af6533f8b63a43ea9f08a2ede04e8f43e49daef0209ab0d30352bcf08bee (from https://pypi.org/simple/pandas/) (requires-python:>=3.8)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('python-dateutil>=2.8.1'), LinkCandidate('https://files.pythonhosted.org/packages/20/53/5ad34b9d52f94e1ae8a4a410ead791e74e03d200ec64d9c3f61d83915ec4/pandas-1.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=6105af6533f8b63a43ea9f08a2ede04e8f43e49daef0209ab0d30352bcf08bee (from https://pypi.org/simple/pandas/) (requires-python:>=3.8)')) Reporter.adding_requirement(SpecifierRequirement('numpy>=1.18.5; platform_machine != "aarch64" and platform_machine != "arm64" and python_version < "3.10"'), LinkCandidate('https://files.pythonhosted.org/packages/20/53/5ad34b9d52f94e1ae8a4a410ead791e74e03d200ec64d9c3f61d83915ec4/pandas-1.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=6105af6533f8b63a43ea9f08a2ede04e8f43e49daef0209ab0d30352bcf08bee (from https://pypi.org/simple/pandas/) (requires-python:>=3.8)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('numpy>=1.18.5; platform_machine != "aarch64" and platform_machine != "arm64" and python_version < "3.10"'), LinkCandidate('https://files.pythonhosted.org/packages/20/53/5ad34b9d52f94e1ae8a4a410ead791e74e03d200ec64d9c3f61d83915ec4/pandas-1.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=6105af6533f8b63a43ea9f08a2ede04e8f43e49daef0209ab0d30352bcf08bee (from https://pypi.org/simple/pandas/) (requires-python:>=3.8)')) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/20/53/5ad34b9d52f94e1ae8a4a410ead791e74e03d200ec64d9c3f61d83915ec4/pandas-1.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=6105af6533f8b63a43ea9f08a2ede04e8f43e49daef0209ab0d30352bcf08bee (from https://pypi.org/simple/pandas/) (requires-python:>=3.8)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/20/53/5ad34b9d52f94e1ae8a4a410ead791e74e03d200ec64d9c3f61d83915ec4/pandas-1.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=6105af6533f8b63a43ea9f08a2ede04e8f43e49daef0209ab0d30352bcf08bee (from https://pypi.org/simple/pandas/) (requires-python:>=3.8)')) Reporter.ending_round(13, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(13, state) Reporter.starting_round(14) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(14) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/d5/c8/64de54ef0121a1ff6309f102124c6b5a89260dc584e1871341f5199b7b85/protobuf-3.19.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=bd95d1dfb9c4f4563e6093a9aa19d9c186bf98fa54da5252531cc0d3a07977e7 (from https://pypi.org/simple/protobuf/) (requires-python:>=3.5)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/d5/c8/64de54ef0121a1ff6309f102124c6b5a89260dc584e1871341f5199b7b85/protobuf-3.19.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=bd95d1dfb9c4f4563e6093a9aa19d9c186bf98fa54da5252531cc0d3a07977e7 (from https://pypi.org/simple/protobuf/) (requires-python:>=3.5)')) Reporter.ending_round(14, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(14, state) Reporter.starting_round(15) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(15) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/5c/f9/695d6bedebd747e5eb0fe8fad57b72fdf25411273a39791cde838d5a8f51/cycler-0.11.0-py3-none-any.whl#sha256=3a27e95f763a428a739d2add979fa7494c912a32c17c4c38c4d5f082cad165a3 (from https://pypi.org/simple/cycler/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/5c/f9/695d6bedebd747e5eb0fe8fad57b72fdf25411273a39791cde838d5a8f51/cycler-0.11.0-py3-none-any.whl#sha256=3a27e95f763a428a739d2add979fa7494c912a32c17c4c38c4d5f082cad165a3 (from https://pypi.org/simple/cycler/) (requires-python:>=3.6)')) Reporter.ending_round(15, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(15, state) Reporter.starting_round(16) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(16) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/2d/b3/b359bb3e247bbdaa18892a5d0bc14c24cc3a49166c25622128b6e033b58a/fonttools-4.30.0-py3-none-any.whl#sha256=6985cc5380c06db07fdc73ade15e6adbd4ce6ff850d7561ca00f97090b4b263d (from https://pypi.org/simple/fonttools/) (requires-python:>=3.7)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/2d/b3/b359bb3e247bbdaa18892a5d0bc14c24cc3a49166c25622128b6e033b58a/fonttools-4.30.0-py3-none-any.whl#sha256=6985cc5380c06db07fdc73ade15e6adbd4ce6ff850d7561ca00f97090b4b263d (from https://pypi.org/simple/fonttools/) (requires-python:>=3.7)')) Reporter.ending_round(16, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(16, state) Reporter.starting_round(17) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(17) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/d0/2c/c3cba6c1ec54c82bfc56204c712dd2e9b069e2590f78a18841dafbdf2ced/kiwisolver-1.3.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b6a5431940f28b6de123de42f0eb47b84a073ee3c3345dc109ad550a3307dd28 (from https://pypi.org/simple/kiwisolver/) (requires-python:>=3.7)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/d0/2c/c3cba6c1ec54c82bfc56204c712dd2e9b069e2590f78a18841dafbdf2ced/kiwisolver-1.3.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b6a5431940f28b6de123de42f0eb47b84a073ee3c3345dc109ad550a3307dd28 (from https://pypi.org/simple/kiwisolver/) (requires-python:>=3.7)')) Reporter.ending_round(17, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(17, state) Reporter.starting_round(18) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(18) Reporter.adding_requirement(SpecifierRequirement('pyparsing!=3.0.5,>=2.0.2'), LinkCandidate('https://files.pythonhosted.org/packages/05/8e/8de486cbd03baba4deef4142bd643a3e7bbe954a784dc1bb17142572d127/packaging-21.3-py3-none-any.whl#sha256=ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522 (from https://pypi.org/simple/packaging/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('pyparsing!=3.0.5,>=2.0.2'), LinkCandidate('https://files.pythonhosted.org/packages/05/8e/8de486cbd03baba4deef4142bd643a3e7bbe954a784dc1bb17142572d127/packaging-21.3-py3-none-any.whl#sha256=ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522 (from https://pypi.org/simple/packaging/) (requires-python:>=3.6)')) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/05/8e/8de486cbd03baba4deef4142bd643a3e7bbe954a784dc1bb17142572d127/packaging-21.3-py3-none-any.whl#sha256=ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522 (from https://pypi.org/simple/packaging/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/05/8e/8de486cbd03baba4deef4142bd643a3e7bbe954a784dc1bb17142572d127/packaging-21.3-py3-none-any.whl#sha256=ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522 (from https://pypi.org/simple/packaging/) (requires-python:>=3.6)')) Reporter.ending_round(18, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(18, state) Reporter.starting_round(19) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(19) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/18/7f/58f056f31358956f8aaaf042982693d96f3d35d5a9df94acecdabb1db6f8/Pillow-9.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=14d4b1341ac07ae07eb2cc682f459bec932a380c3b122f5540432d8977e64eae (from https://pypi.org/simple/pillow/) (requires-python:>=3.7)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/18/7f/58f056f31358956f8aaaf042982693d96f3d35d5a9df94acecdabb1db6f8/Pillow-9.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=14d4b1341ac07ae07eb2cc682f459bec932a380c3b122f5540432d8977e64eae (from https://pypi.org/simple/pillow/) (requires-python:>=3.7)')) Reporter.ending_round(19, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(19, state) Reporter.starting_round(20) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(20) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/80/c1/23fd82ad3121656b585351aba6c19761926bb0db2ebed9e4ff09a43a3fcc/pyparsing-3.0.7-py3-none-any.whl#sha256=a6c06a88f252e6c322f65faf8f418b16213b51bdfaece0524c1c1bc30c63c484 (from https://pypi.org/simple/pyparsing/) (requires-python:>=3.6)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/80/c1/23fd82ad3121656b585351aba6c19761926bb0db2ebed9e4ff09a43a3fcc/pyparsing-3.0.7-py3-none-any.whl#sha256=a6c06a88f252e6c322f65faf8f418b16213b51bdfaece0524c1c1bc30c63c484 (from https://pypi.org/simple/pyparsing/) (requires-python:>=3.6)')) Reporter.ending_round(20, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(20, state) Reporter.starting_round(21) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(21) Reporter.adding_requirement(SpecifierRequirement('six>=1.5'), LinkCandidate('https://files.pythonhosted.org/packages/36/7a/87837f39d0296e723bb9b62bbb257d0355c7f6128853c78955f57342a56d/python_dateutil-2.8.2-py2.py3-none-any.whl#sha256=961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9 (from https://pypi.org/simple/python-dateutil/) (requires-python:!=3.0.*,!=3.1.*,!=3.2.*,>=2.7)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.adding_requirement(SpecifierRequirement('six>=1.5'), LinkCandidate('https://files.pythonhosted.org/packages/36/7a/87837f39d0296e723bb9b62bbb257d0355c7f6128853c78955f57342a56d/python_dateutil-2.8.2-py2.py3-none-any.whl#sha256=961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9 (from https://pypi.org/simple/python-dateutil/) (requires-python:!=3.0.*,!=3.1.*,!=3.2.*,>=2.7)')) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/36/7a/87837f39d0296e723bb9b62bbb257d0355c7f6128853c78955f57342a56d/python_dateutil-2.8.2-py2.py3-none-any.whl#sha256=961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9 (from https://pypi.org/simple/python-dateutil/) (requires-python:!=3.0.*,!=3.1.*,!=3.2.*,>=2.7)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/36/7a/87837f39d0296e723bb9b62bbb257d0355c7f6128853c78955f57342a56d/python_dateutil-2.8.2-py2.py3-none-any.whl#sha256=961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9 (from https://pypi.org/simple/python-dateutil/) (requires-python:!=3.0.*,!=3.1.*,!=3.2.*,>=2.7)')) Reporter.ending_round(21, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(21, state) Reporter.starting_round(22) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(22) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/d3/e3/d9f046b5d1c94a3aeab15f1f867aa414f8ee9d196fae6865f1d6a0ee1a0b/pytz-2021.3-py2.py3-none-any.whl#sha256=3672058bc3453457b622aab7a1c3bfd5ab0bdae451512f6cf25f64ed37f5b87c (from https://pypi.org/simple/pytz/)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/d3/e3/d9f046b5d1c94a3aeab15f1f867aa414f8ee9d196fae6865f1d6a0ee1a0b/pytz-2021.3-py2.py3-none-any.whl#sha256=3672058bc3453457b622aab7a1c3bfd5ab0bdae451512f6cf25f64ed37f5b87c (from https://pypi.org/simple/pytz/)')) Reporter.ending_round(22, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(22, state) Reporter.starting_round(23) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(23) Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/d9/5a/e7c31adbe875f2abbb91bd84cf2dc52d792b5a01506781dbcf25c91daf11/six-1.16.0-py2.py3-none-any.whl#sha256=8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254 (from https://pypi.org/simple/six/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*)')) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.pinning(LinkCandidate('https://files.pythonhosted.org/packages/d9/5a/e7c31adbe875f2abbb91bd84cf2dc52d792b5a01506781dbcf25c91daf11/six-1.16.0-py2.py3-none-any.whl#sha256=8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254 (from https://pypi.org/simple/six/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*)')) Reporter.ending_round(23, state) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending_round(23, state) Reporter.starting_round(24) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.starting_round(24) Reporter.ending(State(mapping=OrderedDict([('onnxruntime', LinkCandidate('https://files.pythonhosted.org/packages/8b/74/5b30ee067fba2228d0b6bbf5c8915cadc5ce98b4c97beba978b03128d344/onnxruntime-1.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=3913769691f7f20e13070d65bfddd9f85f862274fcc17312c3b7d3fee8af21d8 (from https://pypi.org/simple/onnxruntime/)')), ('scikit-learn', LinkCandidate('https://files.pythonhosted.org/packages/40/d3/206905d836cd496c1f78a15ef92a0f0477d74113b4f349342bf31dfd62ca/scikit_learn-1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=bc3744dabc56b50bec73624aeca02e0def06b03cb287de26836e730659c5d29c (from https://pypi.org/simple/scikit-learn/) (requires-python:>=3.7)')), ('scipy', LinkCandidate('https://files.pythonhosted.org/packages/d2/27/b2648569175ba233cb6ad13029f8df4049a581c268156c5dd1db5ca44a8c/scipy-1.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=ad5be4039147c808e64f99c0e8a9641eb5d2fa079ff5894dcd8240e94e347af4 (from https://pypi.org/simple/scipy/) (requires-python:>=3.8,<3.11)')), ('neurokit2', LinkCandidate('https://files.pythonhosted.org/packages/93/58/289d1e68065e0bc7d765ae42b3360a60d21504e82a39b1019c40dc4a7d19/neurokit2-0.1.7-py2.py3-none-any.whl#sha256=000d908fa90441673fa7cdfb0bd4c5326c701daf260e2c612fb0900fd8421e75 (from https://pypi.org/simple/neurokit2/)')), ('numpy', LinkCandidate('https://files.pythonhosted.org/packages/38/c0/c45c5eb0e25247d5fbb333fd0b56e570ba21cf0e3dca3abad174fb780e8c/numpy-1.22.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=3ca688e1b9b95d80250bca34b11a05e389b1420d00e87a0d12dc45f131f704a1 (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)')), ('scikit-learn-intelex', LinkCandidate('https://files.pythonhosted.org/packages/72/3a/bcde1bb45a3d38f633d455428d6224a520d7ab08f8a7f5cbeda57cf19024/scikit_learn_intelex-2021.5.3-py38-none-manylinux1_x86_64.whl#sha256=a2f57d8a88d20b6c17216a9ca406fd333ec5722eb2b07b4d6720dedefc126d2c (from https://pypi.org/simple/scikit-learn-intelex/)')), ('daal4py', LinkCandidate('https://files.pythonhosted.org/packages/66/0c/6eb4860bdeeb8e383dae3b4cf7626498e26a7f837656b38974251529373c/daal4py-2021.5.3-py38-none-manylinux1_x86_64.whl#sha256=e3098c6075d2e544f2e071bb54f9f23d6889e752757d447cdcab476e5b3ac282 (from https://pypi.org/simple/daal4py/)')), ('daal', LinkCandidate('https://files.pythonhosted.org/packages/84/19/6cd188fc67af7bd9a694cd463461b3c3504f1f67a09d833e28986b1ae8fd/daal-2021.5.3-py2.py3-none-manylinux1_x86_64.whl#sha256=5e9c1cf5936ce5fbc5f34bebce60654f9dd4788ef884aa9ee0f27d4dbd938e2f (from https://pypi.org/simple/daal/)')), ('tbb', LinkCandidate('https://files.pythonhosted.org/packages/e5/d5/4db63b275cff517522e4e5c4653bfd02d03c39782cba560c780133551f90/tbb-2021.5.1-py2.py3-none-manylinux1_x86_64.whl#sha256=6578ae9485140efc0dccde98ccec03706d5c9aa7645f06ecfe1bb3cd720c0432 (from https://pypi.org/simple/tbb/)')), ('joblib', LinkCandidate('https://files.pythonhosted.org/packages/3e/d5/0163eb0cfa0b673aa4fe1cd3ea9d8a81ea0f32e50807b0c295871e4aab2e/joblib-1.1.0-py2.py3-none-any.whl#sha256=f21f109b3c7ff9d95f8387f752d0d9c34a02aa2f7060c2135f465da0e5160ff6 (from https://pypi.org/simple/joblib/) (requires-python:>=3.6)')), ('threadpoolctl', LinkCandidate('https://files.pythonhosted.org/packages/61/cf/6e354304bcb9c6413c4e02a747b600061c21d38ba51e7e544ac7bc66aecc/threadpoolctl-3.1.0-py3-none-any.whl#sha256=8b99adda265feb6773280df41eece7b2e6561b772d21ffd52e372f999024907b (from https://pypi.org/simple/threadpoolctl/) (requires-python:>=3.6)')), ('flatbuffers', LinkCandidate('https://files.pythonhosted.org/packages/3d/d0/26033c70d642fbc1e35d3619cf3210986fb953c173b1226709f75056c149/flatbuffers-2.0-py2.py3-none-any.whl#sha256=3751954f0604580d3219ae49a85fafec9d85eec599c0b96226e1bc0b48e57474 (from https://pypi.org/simple/flatbuffers/)')), ('matplotlib', LinkCandidate('https://files.pythonhosted.org/packages/22/1c/d5e535b36c1de4eef4205656e76ac993c6d01b62cfdcac579edb63cd82e0/matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)')), ('pandas', LinkCandidate('https://files.pythonhosted.org/packages/20/53/5ad34b9d52f94e1ae8a4a410ead791e74e03d200ec64d9c3f61d83915ec4/pandas-1.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=6105af6533f8b63a43ea9f08a2ede04e8f43e49daef0209ab0d30352bcf08bee (from https://pypi.org/simple/pandas/) (requires-python:>=3.8)')), ('protobuf', LinkCandidate('https://files.pythonhosted.org/packages/d5/c8/64de54ef0121a1ff6309f102124c6b5a89260dc584e1871341f5199b7b85/protobuf-3.19.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=bd95d1dfb9c4f4563e6093a9aa19d9c186bf98fa54da5252531cc0d3a07977e7 (from https://pypi.org/simple/protobuf/) (requires-python:>=3.5)')), ('cycler', LinkCandidate('https://files.pythonhosted.org/packages/5c/f9/695d6bedebd747e5eb0fe8fad57b72fdf25411273a39791cde838d5a8f51/cycler-0.11.0-py3-none-any.whl#sha256=3a27e95f763a428a739d2add979fa7494c912a32c17c4c38c4d5f082cad165a3 (from https://pypi.org/simple/cycler/) (requires-python:>=3.6)')), ('fonttools', LinkCandidate('https://files.pythonhosted.org/packages/2d/b3/b359bb3e247bbdaa18892a5d0bc14c24cc3a49166c25622128b6e033b58a/fonttools-4.30.0-py3-none-any.whl#sha256=6985cc5380c06db07fdc73ade15e6adbd4ce6ff850d7561ca00f97090b4b263d (from https://pypi.org/simple/fonttools/) (requires-python:>=3.7)')), ('kiwisolver', LinkCandidate('https://files.pythonhosted.org/packages/d0/2c/c3cba6c1ec54c82bfc56204c712dd2e9b069e2590f78a18841dafbdf2ced/kiwisolver-1.3.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b6a5431940f28b6de123de42f0eb47b84a073ee3c3345dc109ad550a3307dd28 (from https://pypi.org/simple/kiwisolver/) (requires-python:>=3.7)')), ('packaging', LinkCandidate('https://files.pythonhosted.org/packages/05/8e/8de486cbd03baba4deef4142bd643a3e7bbe954a784dc1bb17142572d127/packaging-21.3-py3-none-any.whl#sha256=ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522 (from https://pypi.org/simple/packaging/) (requires-python:>=3.6)')), ('pillow', LinkCandidate('https://files.pythonhosted.org/packages/18/7f/58f056f31358956f8aaaf042982693d96f3d35d5a9df94acecdabb1db6f8/Pillow-9.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=14d4b1341ac07ae07eb2cc682f459bec932a380c3b122f5540432d8977e64eae (from https://pypi.org/simple/pillow/) (requires-python:>=3.7)')), ('pyparsing', LinkCandidate('https://files.pythonhosted.org/packages/80/c1/23fd82ad3121656b585351aba6c19761926bb0db2ebed9e4ff09a43a3fcc/pyparsing-3.0.7-py3-none-any.whl#sha256=a6c06a88f252e6c322f65faf8f418b16213b51bdfaece0524c1c1bc30c63c484 (from https://pypi.org/simple/pyparsing/) (requires-python:>=3.6)')), ('python-dateutil', LinkCandidate('https://files.pythonhosted.org/packages/36/7a/87837f39d0296e723bb9b62bbb257d0355c7f6128853c78955f57342a56d/python_dateutil-2.8.2-py2.py3-none-any.whl#sha256=961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9 (from https://pypi.org/simple/python-dateutil/) (requires-python:!=3.0.*,!=3.1.*,!=3.2.*,>=2.7)')), ('pytz', LinkCandidate('https://files.pythonhosted.org/packages/d3/e3/d9f046b5d1c94a3aeab15f1f867aa414f8ee9d196fae6865f1d6a0ee1a0b/pytz-2021.3-py2.py3-none-any.whl#sha256=3672058bc3453457b622aab7a1c3bfd5ab0bdae451512f6cf25f64ed37f5b87c (from https://pypi.org/simple/pytz/)')), ('six', LinkCandidate('https://files.pythonhosted.org/packages/d9/5a/e7c31adbe875f2abbb91bd84cf2dc52d792b5a01506781dbcf25c91daf11/six-1.16.0-py2.py3-none-any.whl#sha256=8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254 (from https://pypi.org/simple/six/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*)'))]), criteria={'onnxruntime': Criterion((SpecifierRequirement('onnxruntime'), via=None)), 'scikit-learn': Criterion((SpecifierRequirement('scikit-learn'), via=None), (SpecifierRequirement('scikit-learn'), via=LinkCandidate('https://files.pythonhosted.org/packages/93/58/289d1e68065e0bc7d765ae42b3360a60d21504e82a39b1019c40dc4a7d19/neurokit2-0.1.7-py2.py3-none-any.whl#sha256=000d908fa90441673fa7cdfb0bd4c5326c701daf260e2c612fb0900fd8421e75 (from https://pypi.org/simple/neurokit2/)')), (SpecifierRequirement('scikit-learn>=0.22'), via=LinkCandidate('https://files.pythonhosted.org/packages/72/3a/bcde1bb45a3d38f633d455428d6224a520d7ab08f8a7f5cbeda57cf19024/scikit_learn_intelex-2021.5.3-py38-none-manylinux1_x86_64.whl#sha256=a2f57d8a88d20b6c17216a9ca406fd333ec5722eb2b07b4d6720dedefc126d2c (from https://pypi.org/simple/scikit-learn-intelex/)'))), 'scipy': Criterion((SpecifierRequirement('scipy'), via=None), (SpecifierRequirement('scipy>=1.1.0'), via=LinkCandidate('https://files.pythonhosted.org/packages/40/d3/206905d836cd496c1f78a15ef92a0f0477d74113b4f349342bf31dfd62ca/scikit_learn-1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=bc3744dabc56b50bec73624aeca02e0def06b03cb287de26836e730659c5d29c (from https://pypi.org/simple/scikit-learn/) (requires-python:>=3.7)')), (SpecifierRequirement('scipy'), via=LinkCandidate('https://files.pythonhosted.org/packages/93/58/289d1e68065e0bc7d765ae42b3360a60d21504e82a39b1019c40dc4a7d19/neurokit2-0.1.7-py2.py3-none-any.whl#sha256=000d908fa90441673fa7cdfb0bd4c5326c701daf260e2c612fb0900fd8421e75 (from https://pypi.org/simple/neurokit2/)'))), 'neurokit2': Criterion((SpecifierRequirement('neurokit2'), via=None)), 'numpy': Criterion((SpecifierRequirement('numpy'), via=None), (SpecifierRequirement('numpy>=1.16.6'), via=LinkCandidate('https://files.pythonhosted.org/packages/8b/74/5b30ee067fba2228d0b6bbf5c8915cadc5ce98b4c97beba978b03128d344/onnxruntime-1.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=3913769691f7f20e13070d65bfddd9f85f862274fcc17312c3b7d3fee8af21d8 (from https://pypi.org/simple/onnxruntime/)')), (SpecifierRequirement('numpy>=1.14.6'), via=LinkCandidate('https://files.pythonhosted.org/packages/40/d3/206905d836cd496c1f78a15ef92a0f0477d74113b4f349342bf31dfd62ca/scikit_learn-1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=bc3744dabc56b50bec73624aeca02e0def06b03cb287de26836e730659c5d29c (from https://pypi.org/simple/scikit-learn/) (requires-python:>=3.7)')), (SpecifierRequirement('numpy<1.25.0,>=1.17.3'), via=LinkCandidate('https://files.pythonhosted.org/packages/d2/27/b2648569175ba233cb6ad13029f8df4049a581c268156c5dd1db5ca44a8c/scipy-1.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=ad5be4039147c808e64f99c0e8a9641eb5d2fa079ff5894dcd8240e94e347af4 (from https://pypi.org/simple/scipy/) (requires-python:>=3.8,<3.11)')), (SpecifierRequirement('numpy'), via=LinkCandidate('https://files.pythonhosted.org/packages/93/58/289d1e68065e0bc7d765ae42b3360a60d21504e82a39b1019c40dc4a7d19/neurokit2-0.1.7-py2.py3-none-any.whl#sha256=000d908fa90441673fa7cdfb0bd4c5326c701daf260e2c612fb0900fd8421e75 (from https://pypi.org/simple/neurokit2/)')), (SpecifierRequirement('numpy>=1.15'), via=LinkCandidate('https://files.pythonhosted.org/packages/66/0c/6eb4860bdeeb8e383dae3b4cf7626498e26a7f837656b38974251529373c/daal4py-2021.5.3-py38-none-manylinux1_x86_64.whl#sha256=e3098c6075d2e544f2e071bb54f9f23d6889e752757d447cdcab476e5b3ac282 (from https://pypi.org/simple/daal4py/)')), (SpecifierRequirement('numpy>=1.17'), via=LinkCandidate('https://files.pythonhosted.org/packages/22/1c/d5e535b36c1de4eef4205656e76ac993c6d01b62cfdcac579edb63cd82e0/matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)')), (SpecifierRequirement('numpy>=1.18.5; platform_machine != "aarch64" and platform_machine != "arm64" and python_version < "3.10"'), via=LinkCandidate('https://files.pythonhosted.org/packages/20/53/5ad34b9d52f94e1ae8a4a410ead791e74e03d200ec64d9c3f61d83915ec4/pandas-1.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=6105af6533f8b63a43ea9f08a2ede04e8f43e49daef0209ab0d30352bcf08bee (from https://pypi.org/simple/pandas/) (requires-python:>=3.8)'))), 'scikit-learn-intelex': Criterion((SpecifierRequirement('scikit-learn-intelex'), via=None)), 'protobuf': Criterion((SpecifierRequirement('protobuf'), via=LinkCandidate('https://files.pythonhosted.org/packages/8b/74/5b30ee067fba2228d0b6bbf5c8915cadc5ce98b4c97beba978b03128d344/onnxruntime-1.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=3913769691f7f20e13070d65bfddd9f85f862274fcc17312c3b7d3fee8af21d8 (from https://pypi.org/simple/onnxruntime/)'))), 'flatbuffers': Criterion((SpecifierRequirement('flatbuffers'), via=LinkCandidate('https://files.pythonhosted.org/packages/8b/74/5b30ee067fba2228d0b6bbf5c8915cadc5ce98b4c97beba978b03128d344/onnxruntime-1.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=3913769691f7f20e13070d65bfddd9f85f862274fcc17312c3b7d3fee8af21d8 (from https://pypi.org/simple/onnxruntime/)'))), 'joblib': Criterion((SpecifierRequirement('joblib>=0.11'), via=LinkCandidate('https://files.pythonhosted.org/packages/40/d3/206905d836cd496c1f78a15ef92a0f0477d74113b4f349342bf31dfd62ca/scikit_learn-1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=bc3744dabc56b50bec73624aeca02e0def06b03cb287de26836e730659c5d29c (from https://pypi.org/simple/scikit-learn/) (requires-python:>=3.7)'))), 'threadpoolctl': Criterion((SpecifierRequirement('threadpoolctl>=2.0.0'), via=LinkCandidate('https://files.pythonhosted.org/packages/40/d3/206905d836cd496c1f78a15ef92a0f0477d74113b4f349342bf31dfd62ca/scikit_learn-1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=bc3744dabc56b50bec73624aeca02e0def06b03cb287de26836e730659c5d29c (from https://pypi.org/simple/scikit-learn/) (requires-python:>=3.7)'))), 'matplotlib': Criterion((SpecifierRequirement('matplotlib'), via=LinkCandidate('https://files.pythonhosted.org/packages/93/58/289d1e68065e0bc7d765ae42b3360a60d21504e82a39b1019c40dc4a7d19/neurokit2-0.1.7-py2.py3-none-any.whl#sha256=000d908fa90441673fa7cdfb0bd4c5326c701daf260e2c612fb0900fd8421e75 (from https://pypi.org/simple/neurokit2/)'))), 'pandas': Criterion((SpecifierRequirement('pandas'), via=LinkCandidate('https://files.pythonhosted.org/packages/93/58/289d1e68065e0bc7d765ae42b3360a60d21504e82a39b1019c40dc4a7d19/neurokit2-0.1.7-py2.py3-none-any.whl#sha256=000d908fa90441673fa7cdfb0bd4c5326c701daf260e2c612fb0900fd8421e75 (from https://pypi.org/simple/neurokit2/)'))), 'daal4py': Criterion((SpecifierRequirement('daal4py==2021.5.3'), via=LinkCandidate('https://files.pythonhosted.org/packages/72/3a/bcde1bb45a3d38f633d455428d6224a520d7ab08f8a7f5cbeda57cf19024/scikit_learn_intelex-2021.5.3-py38-none-manylinux1_x86_64.whl#sha256=a2f57d8a88d20b6c17216a9ca406fd333ec5722eb2b07b4d6720dedefc126d2c (from https://pypi.org/simple/scikit-learn-intelex/)'))), 'daal': Criterion((SpecifierRequirement('daal==2021.5.3'), via=LinkCandidate('https://files.pythonhosted.org/packages/66/0c/6eb4860bdeeb8e383dae3b4cf7626498e26a7f837656b38974251529373c/daal4py-2021.5.3-py38-none-manylinux1_x86_64.whl#sha256=e3098c6075d2e544f2e071bb54f9f23d6889e752757d447cdcab476e5b3ac282 (from https://pypi.org/simple/daal4py/)'))), 'tbb': Criterion((SpecifierRequirement('tbb==2021.*'), via=LinkCandidate('https://files.pythonhosted.org/packages/84/19/6cd188fc67af7bd9a694cd463461b3c3504f1f67a09d833e28986b1ae8fd/daal-2021.5.3-py2.py3-none-manylinux1_x86_64.whl#sha256=5e9c1cf5936ce5fbc5f34bebce60654f9dd4788ef884aa9ee0f27d4dbd938e2f (from https://pypi.org/simple/daal/)'))), 'fonttools': Criterion((SpecifierRequirement('fonttools>=4.22.0'), via=LinkCandidate('https://files.pythonhosted.org/packages/22/1c/d5e535b36c1de4eef4205656e76ac993c6d01b62cfdcac579edb63cd82e0/matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)'))), 'python-dateutil': Criterion((SpecifierRequirement('python-dateutil>=2.7'), via=LinkCandidate('https://files.pythonhosted.org/packages/22/1c/d5e535b36c1de4eef4205656e76ac993c6d01b62cfdcac579edb63cd82e0/matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)')), (SpecifierRequirement('python-dateutil>=2.8.1'), via=LinkCandidate('https://files.pythonhosted.org/packages/20/53/5ad34b9d52f94e1ae8a4a410ead791e74e03d200ec64d9c3f61d83915ec4/pandas-1.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=6105af6533f8b63a43ea9f08a2ede04e8f43e49daef0209ab0d30352bcf08bee (from https://pypi.org/simple/pandas/) (requires-python:>=3.8)'))), 'cycler': Criterion((SpecifierRequirement('cycler>=0.10'), via=LinkCandidate('https://files.pythonhosted.org/packages/22/1c/d5e535b36c1de4eef4205656e76ac993c6d01b62cfdcac579edb63cd82e0/matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)'))), 'packaging': Criterion((SpecifierRequirement('packaging>=20.0'), via=LinkCandidate('https://files.pythonhosted.org/packages/22/1c/d5e535b36c1de4eef4205656e76ac993c6d01b62cfdcac579edb63cd82e0/matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)'))), 'kiwisolver': Criterion((SpecifierRequirement('kiwisolver>=1.0.1'), via=LinkCandidate('https://files.pythonhosted.org/packages/22/1c/d5e535b36c1de4eef4205656e76ac993c6d01b62cfdcac579edb63cd82e0/matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)'))), 'pillow': Criterion((SpecifierRequirement('pillow>=6.2.0'), via=LinkCandidate('https://files.pythonhosted.org/packages/22/1c/d5e535b36c1de4eef4205656e76ac993c6d01b62cfdcac579edb63cd82e0/matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)'))), 'pyparsing': Criterion((SpecifierRequirement('pyparsing>=2.2.1'), via=LinkCandidate('https://files.pythonhosted.org/packages/22/1c/d5e535b36c1de4eef4205656e76ac993c6d01b62cfdcac579edb63cd82e0/matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)')), (SpecifierRequirement('pyparsing!=3.0.5,>=2.0.2'), via=LinkCandidate('https://files.pythonhosted.org/packages/05/8e/8de486cbd03baba4deef4142bd643a3e7bbe954a784dc1bb17142572d127/packaging-21.3-py3-none-any.whl#sha256=ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522 (from https://pypi.org/simple/packaging/) (requires-python:>=3.6)'))), 'pytz': Criterion((SpecifierRequirement('pytz>=2020.1'), via=LinkCandidate('https://files.pythonhosted.org/packages/20/53/5ad34b9d52f94e1ae8a4a410ead791e74e03d200ec64d9c3f61d83915ec4/pandas-1.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=6105af6533f8b63a43ea9f08a2ede04e8f43e49daef0209ab0d30352bcf08bee (from https://pypi.org/simple/pandas/) (requires-python:>=3.8)'))), 'six': Criterion((SpecifierRequirement('six>=1.5'), via=LinkCandidate('https://files.pythonhosted.org/packages/36/7a/87837f39d0296e723bb9b62bbb257d0355c7f6128853c78955f57342a56d/python_dateutil-2.8.2-py2.py3-none-any.whl#sha256=961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9 (from https://pypi.org/simple/python-dateutil/) (requires-python:!=3.0.*,!=3.1.*,!=3.2.*,>=2.7)')))}, backtrack_causes=[])) INFO:pipenv.patched.notpip._internal.resolution.resolvelib.reporter:Reporter.ending(State(mapping=OrderedDict([('onnxruntime', LinkCandidate('https://files.pythonhosted.org/packages/8b/74/5b30ee067fba2228d0b6bbf5c8915cadc5ce98b4c97beba978b03128d344/onnxruntime-1.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=3913769691f7f20e13070d65bfddd9f85f862274fcc17312c3b7d3fee8af21d8 (from https://pypi.org/simple/onnxruntime/)')), ('scikit-learn', LinkCandidate('https://files.pythonhosted.org/packages/40/d3/206905d836cd496c1f78a15ef92a0f0477d74113b4f349342bf31dfd62ca/scikit_learn-1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=bc3744dabc56b50bec73624aeca02e0def06b03cb287de26836e730659c5d29c (from https://pypi.org/simple/scikit-learn/) (requires-python:>=3.7)')), ('scipy', LinkCandidate('https://files.pythonhosted.org/packages/d2/27/b2648569175ba233cb6ad13029f8df4049a581c268156c5dd1db5ca44a8c/scipy-1.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=ad5be4039147c808e64f99c0e8a9641eb5d2fa079ff5894dcd8240e94e347af4 (from https://pypi.org/simple/scipy/) (requires-python:>=3.8,<3.11)')), ('neurokit2', LinkCandidate('https://files.pythonhosted.org/packages/93/58/289d1e68065e0bc7d765ae42b3360a60d21504e82a39b1019c40dc4a7d19/neurokit2-0.1.7-py2.py3-none-any.whl#sha256=000d908fa90441673fa7cdfb0bd4c5326c701daf260e2c612fb0900fd8421e75 (from https://pypi.org/simple/neurokit2/)')), ('numpy', LinkCandidate('https://files.pythonhosted.org/packages/38/c0/c45c5eb0e25247d5fbb333fd0b56e570ba21cf0e3dca3abad174fb780e8c/numpy-1.22.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=3ca688e1b9b95d80250bca34b11a05e389b1420d00e87a0d12dc45f131f704a1 (from https://pypi.org/simple/numpy/) (requires-python:>=3.8)')), ('scikit-learn-intelex', LinkCandidate('https://files.pythonhosted.org/packages/72/3a/bcde1bb45a3d38f633d455428d6224a520d7ab08f8a7f5cbeda57cf19024/scikit_learn_intelex-2021.5.3-py38-none-manylinux1_x86_64.whl#sha256=a2f57d8a88d20b6c17216a9ca406fd333ec5722eb2b07b4d6720dedefc126d2c (from https://pypi.org/simple/scikit-learn-intelex/)')), ('daal4py', LinkCandidate('https://files.pythonhosted.org/packages/66/0c/6eb4860bdeeb8e383dae3b4cf7626498e26a7f837656b38974251529373c/daal4py-2021.5.3-py38-none-manylinux1_x86_64.whl#sha256=e3098c6075d2e544f2e071bb54f9f23d6889e752757d447cdcab476e5b3ac282 (from https://pypi.org/simple/daal4py/)')), ('daal', LinkCandidate('https://files.pythonhosted.org/packages/84/19/6cd188fc67af7bd9a694cd463461b3c3504f1f67a09d833e28986b1ae8fd/daal-2021.5.3-py2.py3-none-manylinux1_x86_64.whl#sha256=5e9c1cf5936ce5fbc5f34bebce60654f9dd4788ef884aa9ee0f27d4dbd938e2f (from https://pypi.org/simple/daal/)')), ('tbb', LinkCandidate('https://files.pythonhosted.org/packages/e5/d5/4db63b275cff517522e4e5c4653bfd02d03c39782cba560c780133551f90/tbb-2021.5.1-py2.py3-none-manylinux1_x86_64.whl#sha256=6578ae9485140efc0dccde98ccec03706d5c9aa7645f06ecfe1bb3cd720c0432 (from https://pypi.org/simple/tbb/)')), ('joblib', LinkCandidate('https://files.pythonhosted.org/packages/3e/d5/0163eb0cfa0b673aa4fe1cd3ea9d8a81ea0f32e50807b0c295871e4aab2e/joblib-1.1.0-py2.py3-none-any.whl#sha256=f21f109b3c7ff9d95f8387f752d0d9c34a02aa2f7060c2135f465da0e5160ff6 (from https://pypi.org/simple/joblib/) (requires-python:>=3.6)')), ('threadpoolctl', LinkCandidate('https://files.pythonhosted.org/packages/61/cf/6e354304bcb9c6413c4e02a747b600061c21d38ba51e7e544ac7bc66aecc/threadpoolctl-3.1.0-py3-none-any.whl#sha256=8b99adda265feb6773280df41eece7b2e6561b772d21ffd52e372f999024907b (from https://pypi.org/simple/threadpoolctl/) (requires-python:>=3.6)')), ('flatbuffers', LinkCandidate('https://files.pythonhosted.org/packages/3d/d0/26033c70d642fbc1e35d3619cf3210986fb953c173b1226709f75056c149/flatbuffers-2.0-py2.py3-none-any.whl#sha256=3751954f0604580d3219ae49a85fafec9d85eec599c0b96226e1bc0b48e57474 (from https://pypi.org/simple/flatbuffers/)')), ('matplotlib', LinkCandidate('https://files.pythonhosted.org/packages/22/1c/d5e535b36c1de4eef4205656e76ac993c6d01b62cfdcac579edb63cd82e0/matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)')), ('pandas', LinkCandidate('https://files.pythonhosted.org/packages/20/53/5ad34b9d52f94e1ae8a4a410ead791e74e03d200ec64d9c3f61d83915ec4/pandas-1.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=6105af6533f8b63a43ea9f08a2ede04e8f43e49daef0209ab0d30352bcf08bee (from https://pypi.org/simple/pandas/) (requires-python:>=3.8)')), ('protobuf', LinkCandidate('https://files.pythonhosted.org/packages/d5/c8/64de54ef0121a1ff6309f102124c6b5a89260dc584e1871341f5199b7b85/protobuf-3.19.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=bd95d1dfb9c4f4563e6093a9aa19d9c186bf98fa54da5252531cc0d3a07977e7 (from https://pypi.org/simple/protobuf/) (requires-python:>=3.5)')), ('cycler', LinkCandidate('https://files.pythonhosted.org/packages/5c/f9/695d6bedebd747e5eb0fe8fad57b72fdf25411273a39791cde838d5a8f51/cycler-0.11.0-py3-none-any.whl#sha256=3a27e95f763a428a739d2add979fa7494c912a32c17c4c38c4d5f082cad165a3 (from https://pypi.org/simple/cycler/) (requires-python:>=3.6)')), ('fonttools', LinkCandidate('https://files.pythonhosted.org/packages/2d/b3/b359bb3e247bbdaa18892a5d0bc14c24cc3a49166c25622128b6e033b58a/fonttools-4.30.0-py3-none-any.whl#sha256=6985cc5380c06db07fdc73ade15e6adbd4ce6ff850d7561ca00f97090b4b263d (from https://pypi.org/simple/fonttools/) (requires-python:>=3.7)')), ('kiwisolver', LinkCandidate('https://files.pythonhosted.org/packages/d0/2c/c3cba6c1ec54c82bfc56204c712dd2e9b069e2590f78a18841dafbdf2ced/kiwisolver-1.3.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b6a5431940f28b6de123de42f0eb47b84a073ee3c3345dc109ad550a3307dd28 (from https://pypi.org/simple/kiwisolver/) (requires-python:>=3.7)')), ('packaging', LinkCandidate('https://files.pythonhosted.org/packages/05/8e/8de486cbd03baba4deef4142bd643a3e7bbe954a784dc1bb17142572d127/packaging-21.3-py3-none-any.whl#sha256=ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522 (from https://pypi.org/simple/packaging/) (requires-python:>=3.6)')), ('pillow', LinkCandidate('https://files.pythonhosted.org/packages/18/7f/58f056f31358956f8aaaf042982693d96f3d35d5a9df94acecdabb1db6f8/Pillow-9.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=14d4b1341ac07ae07eb2cc682f459bec932a380c3b122f5540432d8977e64eae (from https://pypi.org/simple/pillow/) (requires-python:>=3.7)')), ('pyparsing', LinkCandidate('https://files.pythonhosted.org/packages/80/c1/23fd82ad3121656b585351aba6c19761926bb0db2ebed9e4ff09a43a3fcc/pyparsing-3.0.7-py3-none-any.whl#sha256=a6c06a88f252e6c322f65faf8f418b16213b51bdfaece0524c1c1bc30c63c484 (from https://pypi.org/simple/pyparsing/) (requires-python:>=3.6)')), ('python-dateutil', LinkCandidate('https://files.pythonhosted.org/packages/36/7a/87837f39d0296e723bb9b62bbb257d0355c7f6128853c78955f57342a56d/python_dateutil-2.8.2-py2.py3-none-any.whl#sha256=961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9 (from https://pypi.org/simple/python-dateutil/) (requires-python:!=3.0.*,!=3.1.*,!=3.2.*,>=2.7)')), ('pytz', LinkCandidate('https://files.pythonhosted.org/packages/d3/e3/d9f046b5d1c94a3aeab15f1f867aa414f8ee9d196fae6865f1d6a0ee1a0b/pytz-2021.3-py2.py3-none-any.whl#sha256=3672058bc3453457b622aab7a1c3bfd5ab0bdae451512f6cf25f64ed37f5b87c (from https://pypi.org/simple/pytz/)')), ('six', LinkCandidate('https://files.pythonhosted.org/packages/d9/5a/e7c31adbe875f2abbb91bd84cf2dc52d792b5a01506781dbcf25c91daf11/six-1.16.0-py2.py3-none-any.whl#sha256=8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254 (from https://pypi.org/simple/six/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*)'))]), criteria={'onnxruntime': Criterion((SpecifierRequirement('onnxruntime'), via=None)), 'scikit-learn': Criterion((SpecifierRequirement('scikit-learn'), via=None), (SpecifierRequirement('scikit-learn'), via=LinkCandidate('https://files.pythonhosted.org/packages/93/58/289d1e68065e0bc7d765ae42b3360a60d21504e82a39b1019c40dc4a7d19/neurokit2-0.1.7-py2.py3-none-any.whl#sha256=000d908fa90441673fa7cdfb0bd4c5326c701daf260e2c612fb0900fd8421e75 (from https://pypi.org/simple/neurokit2/)')), (SpecifierRequirement('scikit-learn>=0.22'), via=LinkCandidate('https://files.pythonhosted.org/packages/72/3a/bcde1bb45a3d38f633d455428d6224a520d7ab08f8a7f5cbeda57cf19024/scikit_learn_intelex-2021.5.3-py38-none-manylinux1_x86_64.whl#sha256=a2f57d8a88d20b6c17216a9ca406fd333ec5722eb2b07b4d6720dedefc126d2c (from https://pypi.org/simple/scikit-learn-intelex/)'))), 'scipy': Criterion((SpecifierRequirement('scipy'), via=None), (SpecifierRequirement('scipy>=1.1.0'), via=LinkCandidate('https://files.pythonhosted.org/packages/40/d3/206905d836cd496c1f78a15ef92a0f0477d74113b4f349342bf31dfd62ca/scikit_learn-1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=bc3744dabc56b50bec73624aeca02e0def06b03cb287de26836e730659c5d29c (from https://pypi.org/simple/scikit-learn/) (requires-python:>=3.7)')), (SpecifierRequirement('scipy'), via=LinkCandidate('https://files.pythonhosted.org/packages/93/58/289d1e68065e0bc7d765ae42b3360a60d21504e82a39b1019c40dc4a7d19/neurokit2-0.1.7-py2.py3-none-any.whl#sha256=000d908fa90441673fa7cdfb0bd4c5326c701daf260e2c612fb0900fd8421e75 (from https://pypi.org/simple/neurokit2/)'))), 'neurokit2': Criterion((SpecifierRequirement('neurokit2'), via=None)), 'numpy': Criterion((SpecifierRequirement('numpy'), via=None), (SpecifierRequirement('numpy>=1.16.6'), via=LinkCandidate('https://files.pythonhosted.org/packages/8b/74/5b30ee067fba2228d0b6bbf5c8915cadc5ce98b4c97beba978b03128d344/onnxruntime-1.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=3913769691f7f20e13070d65bfddd9f85f862274fcc17312c3b7d3fee8af21d8 (from https://pypi.org/simple/onnxruntime/)')), (SpecifierRequirement('numpy>=1.14.6'), via=LinkCandidate('https://files.pythonhosted.org/packages/40/d3/206905d836cd496c1f78a15ef92a0f0477d74113b4f349342bf31dfd62ca/scikit_learn-1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=bc3744dabc56b50bec73624aeca02e0def06b03cb287de26836e730659c5d29c (from https://pypi.org/simple/scikit-learn/) (requires-python:>=3.7)')), (SpecifierRequirement('numpy<1.25.0,>=1.17.3'), via=LinkCandidate('https://files.pythonhosted.org/packages/d2/27/b2648569175ba233cb6ad13029f8df4049a581c268156c5dd1db5ca44a8c/scipy-1.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=ad5be4039147c808e64f99c0e8a9641eb5d2fa079ff5894dcd8240e94e347af4 (from https://pypi.org/simple/scipy/) (requires-python:>=3.8,<3.11)')), (SpecifierRequirement('numpy'), via=LinkCandidate('https://files.pythonhosted.org/packages/93/58/289d1e68065e0bc7d765ae42b3360a60d21504e82a39b1019c40dc4a7d19/neurokit2-0.1.7-py2.py3-none-any.whl#sha256=000d908fa90441673fa7cdfb0bd4c5326c701daf260e2c612fb0900fd8421e75 (from https://pypi.org/simple/neurokit2/)')), (SpecifierRequirement('numpy>=1.15'), via=LinkCandidate('https://files.pythonhosted.org/packages/66/0c/6eb4860bdeeb8e383dae3b4cf7626498e26a7f837656b38974251529373c/daal4py-2021.5.3-py38-none-manylinux1_x86_64.whl#sha256=e3098c6075d2e544f2e071bb54f9f23d6889e752757d447cdcab476e5b3ac282 (from https://pypi.org/simple/daal4py/)')), (SpecifierRequirement('numpy>=1.17'), via=LinkCandidate('https://files.pythonhosted.org/packages/22/1c/d5e535b36c1de4eef4205656e76ac993c6d01b62cfdcac579edb63cd82e0/matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)')), (SpecifierRequirement('numpy>=1.18.5; platform_machine != "aarch64" and platform_machine != "arm64" and python_version < "3.10"'), via=LinkCandidate('https://files.pythonhosted.org/packages/20/53/5ad34b9d52f94e1ae8a4a410ead791e74e03d200ec64d9c3f61d83915ec4/pandas-1.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=6105af6533f8b63a43ea9f08a2ede04e8f43e49daef0209ab0d30352bcf08bee (from https://pypi.org/simple/pandas/) (requires-python:>=3.8)'))), 'scikit-learn-intelex': Criterion((SpecifierRequirement('scikit-learn-intelex'), via=None)), 'protobuf': Criterion((SpecifierRequirement('protobuf'), via=LinkCandidate('https://files.pythonhosted.org/packages/8b/74/5b30ee067fba2228d0b6bbf5c8915cadc5ce98b4c97beba978b03128d344/onnxruntime-1.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=3913769691f7f20e13070d65bfddd9f85f862274fcc17312c3b7d3fee8af21d8 (from https://pypi.org/simple/onnxruntime/)'))), 'flatbuffers': Criterion((SpecifierRequirement('flatbuffers'), via=LinkCandidate('https://files.pythonhosted.org/packages/8b/74/5b30ee067fba2228d0b6bbf5c8915cadc5ce98b4c97beba978b03128d344/onnxruntime-1.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=3913769691f7f20e13070d65bfddd9f85f862274fcc17312c3b7d3fee8af21d8 (from https://pypi.org/simple/onnxruntime/)'))), 'joblib': Criterion((SpecifierRequirement('joblib>=0.11'), via=LinkCandidate('https://files.pythonhosted.org/packages/40/d3/206905d836cd496c1f78a15ef92a0f0477d74113b4f349342bf31dfd62ca/scikit_learn-1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=bc3744dabc56b50bec73624aeca02e0def06b03cb287de26836e730659c5d29c (from https://pypi.org/simple/scikit-learn/) (requires-python:>=3.7)'))), 'threadpoolctl': Criterion((SpecifierRequirement('threadpoolctl>=2.0.0'), via=LinkCandidate('https://files.pythonhosted.org/packages/40/d3/206905d836cd496c1f78a15ef92a0f0477d74113b4f349342bf31dfd62ca/scikit_learn-1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=bc3744dabc56b50bec73624aeca02e0def06b03cb287de26836e730659c5d29c (from https://pypi.org/simple/scikit-learn/) (requires-python:>=3.7)'))), 'matplotlib': Criterion((SpecifierRequirement('matplotlib'), via=LinkCandidate('https://files.pythonhosted.org/packages/93/58/289d1e68065e0bc7d765ae42b3360a60d21504e82a39b1019c40dc4a7d19/neurokit2-0.1.7-py2.py3-none-any.whl#sha256=000d908fa90441673fa7cdfb0bd4c5326c701daf260e2c612fb0900fd8421e75 (from https://pypi.org/simple/neurokit2/)'))), 'pandas': Criterion((SpecifierRequirement('pandas'), via=LinkCandidate('https://files.pythonhosted.org/packages/93/58/289d1e68065e0bc7d765ae42b3360a60d21504e82a39b1019c40dc4a7d19/neurokit2-0.1.7-py2.py3-none-any.whl#sha256=000d908fa90441673fa7cdfb0bd4c5326c701daf260e2c612fb0900fd8421e75 (from https://pypi.org/simple/neurokit2/)'))), 'daal4py': Criterion((SpecifierRequirement('daal4py==2021.5.3'), via=LinkCandidate('https://files.pythonhosted.org/packages/72/3a/bcde1bb45a3d38f633d455428d6224a520d7ab08f8a7f5cbeda57cf19024/scikit_learn_intelex-2021.5.3-py38-none-manylinux1_x86_64.whl#sha256=a2f57d8a88d20b6c17216a9ca406fd333ec5722eb2b07b4d6720dedefc126d2c (from https://pypi.org/simple/scikit-learn-intelex/)'))), 'daal': Criterion((SpecifierRequirement('daal==2021.5.3'), via=LinkCandidate('https://files.pythonhosted.org/packages/66/0c/6eb4860bdeeb8e383dae3b4cf7626498e26a7f837656b38974251529373c/daal4py-2021.5.3-py38-none-manylinux1_x86_64.whl#sha256=e3098c6075d2e544f2e071bb54f9f23d6889e752757d447cdcab476e5b3ac282 (from https://pypi.org/simple/daal4py/)'))), 'tbb': Criterion((SpecifierRequirement('tbb==2021.*'), via=LinkCandidate('https://files.pythonhosted.org/packages/84/19/6cd188fc67af7bd9a694cd463461b3c3504f1f67a09d833e28986b1ae8fd/daal-2021.5.3-py2.py3-none-manylinux1_x86_64.whl#sha256=5e9c1cf5936ce5fbc5f34bebce60654f9dd4788ef884aa9ee0f27d4dbd938e2f (from https://pypi.org/simple/daal/)'))), 'fonttools': Criterion((SpecifierRequirement('fonttools>=4.22.0'), via=LinkCandidate('https://files.pythonhosted.org/packages/22/1c/d5e535b36c1de4eef4205656e76ac993c6d01b62cfdcac579edb63cd82e0/matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)'))), 'python-dateutil': Criterion((SpecifierRequirement('python-dateutil>=2.7'), via=LinkCandidate('https://files.pythonhosted.org/packages/22/1c/d5e535b36c1de4eef4205656e76ac993c6d01b62cfdcac579edb63cd82e0/matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)')), (SpecifierRequirement('python-dateutil>=2.8.1'), via=LinkCandidate('https://files.pythonhosted.org/packages/20/53/5ad34b9d52f94e1ae8a4a410ead791e74e03d200ec64d9c3f61d83915ec4/pandas-1.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=6105af6533f8b63a43ea9f08a2ede04e8f43e49daef0209ab0d30352bcf08bee (from https://pypi.org/simple/pandas/) (requires-python:>=3.8)'))), 'cycler': Criterion((SpecifierRequirement('cycler>=0.10'), via=LinkCandidate('https://files.pythonhosted.org/packages/22/1c/d5e535b36c1de4eef4205656e76ac993c6d01b62cfdcac579edb63cd82e0/matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)'))), 'packaging': Criterion((SpecifierRequirement('packaging>=20.0'), via=LinkCandidate('https://files.pythonhosted.org/packages/22/1c/d5e535b36c1de4eef4205656e76ac993c6d01b62cfdcac579edb63cd82e0/matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)'))), 'kiwisolver': Criterion((SpecifierRequirement('kiwisolver>=1.0.1'), via=LinkCandidate('https://files.pythonhosted.org/packages/22/1c/d5e535b36c1de4eef4205656e76ac993c6d01b62cfdcac579edb63cd82e0/matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)'))), 'pillow': Criterion((SpecifierRequirement('pillow>=6.2.0'), via=LinkCandidate('https://files.pythonhosted.org/packages/22/1c/d5e535b36c1de4eef4205656e76ac993c6d01b62cfdcac579edb63cd82e0/matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)'))), 'pyparsing': Criterion((SpecifierRequirement('pyparsing>=2.2.1'), via=LinkCandidate('https://files.pythonhosted.org/packages/22/1c/d5e535b36c1de4eef4205656e76ac993c6d01b62cfdcac579edb63cd82e0/matplotlib-3.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl#sha256=b71f3a7ca935fc759f2aed7cec06cfe10bc3100fadb5dbd9c435b04e557971e1 (from https://pypi.org/simple/matplotlib/) (requires-python:>=3.7)')), (SpecifierRequirement('pyparsing!=3.0.5,>=2.0.2'), via=LinkCandidate('https://files.pythonhosted.org/packages/05/8e/8de486cbd03baba4deef4142bd643a3e7bbe954a784dc1bb17142572d127/packaging-21.3-py3-none-any.whl#sha256=ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522 (from https://pypi.org/simple/packaging/) (requires-python:>=3.6)'))), 'pytz': Criterion((SpecifierRequirement('pytz>=2020.1'), via=LinkCandidate('https://files.pythonhosted.org/packages/20/53/5ad34b9d52f94e1ae8a4a410ead791e74e03d200ec64d9c3f61d83915ec4/pandas-1.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=6105af6533f8b63a43ea9f08a2ede04e8f43e49daef0209ab0d30352bcf08bee (from https://pypi.org/simple/pandas/) (requires-python:>=3.8)'))), 'six': Criterion((SpecifierRequirement('six>=1.5'), via=LinkCandidate('https://files.pythonhosted.org/packages/36/7a/87837f39d0296e723bb9b62bbb257d0355c7f6128853c78955f57342a56d/python_dateutil-2.8.2-py2.py3-none-any.whl#sha256=961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9 (from https://pypi.org/simple/python-dateutil/) (requires-python:!=3.0.*,!=3.1.*,!=3.2.*,>=2.7)')))}, backtrack_causes=[])) β Έ Locking... βœ” Success! Updated Pipfile.lock (888e3a)! Installing dependencies from Pipfile.lock (888e3a)... Writing supplied requirement line to temporary file: "setuptools==60.9.3; python_version >= '3.7' --hash=sha256:2347b2b432c891a863acadca2da9ac101eae6169b1d3dfee2ec605ecd50dbfe5 --hash=sha256:e4f30b9f84e5ab3decf945113119649fec09c1fc3507c6ebffec75646c56e62b" Installing 'setuptools' $ /home/matteius/.virtualenvs/pipenv-4977-Zx_QPntz/bin/python -m pip install --verbose --upgrade --require-hashes --no-deps --exists-action=i -r /tmp/pipenv-w9cqw236-requirements/pipenv-vaht063c-requirement.txt -i https://pypi.org/simple --extra-index-url https://pypi.anaconda.org/intel/simple Using source directory: '/home/matteius/.virtualenvs/pipenv-4977-Zx_QPntz/src' 🐍 β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰β–‰ 1/1 β€” 00:00:00 Using pip 22.0.3 from /home/matteius/.virtualenvs/pipenv-4977-Zx_QPntz/lib/python3.8/site-packages/pip (python 3.8) Looking in indexes: https://pypi.org/simple, https://pypi.anaconda.org/intel/simple Collecting setuptools==60.9.3 Using cached setuptools-60.9.3-py3-none-any.whl (1.1 MB) Installing collected packages: setuptools Attempting uninstall: setuptools Found existing installation: setuptools 60.8.2 Uninstalling setuptools-60.8.2: Removing file or directory /home/matteius/.virtualenvs/pipenv-4977-Zx_QPntz/lib/python3.8/site-packages/_distutils_hack/ Removing file or directory /home/matteius/.virtualenvs/pipenv-4977-Zx_QPntz/lib/python3.8/site-packages/distutils-precedence.pth Removing file or directory /home/matteius/.virtualenvs/pipenv-4977-Zx_QPntz/lib/python3.8/site-packages/pkg_resources/ Removing file or directory /home/matteius/.virtualenvs/pipenv-4977-Zx_QPntz/lib/python3.8/site-packages/setuptools-60.8.2.dist-info/ Removing file or directory /home/matteius/.virtualenvs/pipenv-4977-Zx_QPntz/lib/python3.8/site-packages/setuptools-60.8.2.virtualenv Removing file or directory /home/matteius/.virtualenvs/pipenv-4977-Zx_QPntz/lib/python3.8/site-packages/setuptools/ Successfully uninstalled setuptools-60.8.2 Successfully installed setuptools-60.9.3 To activate this project's virtualenv, run pipenv shell. Alternatively, run a command inside the virtualenv with pipenv run. ```
pklapperich commented 2 years ago

Sorry, I was away for a bit.

I noted it works if keras is unpinned or the intel repo removed. We probably don't need that pinned anymore, so I think that's workable for us.

But what I found that was weird (and looked like a bug) is that tensorflow could install without --dev but would fail a lock when using --dev. The other thing that's weird is that removing the intel repo is enough to make everything work. There's not much in the intel repo. It does have tensorflow, but nothing in the 2.x series.

With your latest branch things aren't working quite the same, but I do still see some of the same behavior, and it looks like the reason I was able to install tensorflow without --dev is that the keras version pinned in dev was not respected.

[[source]]                                                                                          
url = "https://pypi.org/simple"                                                                     
verify_ssl = true                                                                                   
name = "pypi"                                                                                       

[[source]]                                                                                          
url = "https://pypi.anaconda.org/intel/simple"                                                      
verify_ssl = true                                                                                   
name = "intel"                                                                                      

[packages]                                                                                          
tensorflow = {version="==2.7.0", index="pypi"}                                                      

[dev-packages]                                                                                      
keras = {version="<2.7.0", index="pypi"}                                                            

[requires]                                                                                          
python_version = "3.8"

This locks both tensorflow and keras to ==2.7.0 in both the default and develop sections of the lock file, which seems wrong.


[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]

[dev-packages]
tensorflow = {version="==2.7.0", index="pypi"}
keras = {version="<2.7.0", index="pypi"}

[requires]
python_version = "3.8"

this fails deliberately with an error which says it's impossible. Fair.


[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]

[dev-packages]
tensorflow = {version="=<2.5.0", index="pypi"}
keras = {version="<2.5.0", index="pypi"}

[requires]
python_version = "3.8"

this works and locks keras==2.4.3 and tensorflow==2.4.4


[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[[source]]
url = "https://pypi.anaconda.org/intel/simple"
verify_ssl = true
name = "intel"

[packages]

[dev-packages]
tensorflow = {version="=<2.5.0", index="pypi"}
keras = {version="<2.5.0", index="pypi"}

[requires]
python_version = "3.8"

this fails.


[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[[source]]
url = "https://pypi.anaconda.org/intel/simple"
verify_ssl = true
name = "intel"

[packages]

[dev-packages]
tensorflow = {version="==2.4.4", index="pypi"}
keras = {version="==2.4.3", index="pypi"}

[requires]
python_version = "3.8"

even this fails, when that's specifically what was locked above when the intel repo wasn't present.


$ pipenv --support Pipenv version: `'2022.1.9.dev0'` Pipenv location: `'/home/paulk/.local/lib/python3.10/site-packages/pipenv'` Python location: `'/usr/bin/python'` Python installations found: - `3.10.2`: `/usr/bin/python` - `3.10.2`: `/usr/bin/python3` - `3.8.12`: `/usr/bin/python3.8` - `2.7.18`: `/usr/bin/python2` - `2.7.18`: `/usr/bin/python2.7` PEP 508 Information: ``` {'implementation_name': 'cpython', 'implementation_version': '3.10.2', 'os_name': 'posix', 'platform_machine': 'x86_64', 'platform_python_implementation': 'CPython', 'platform_release': '5.16.0-arch1-1', 'platform_system': 'Linux', 'platform_version': '#1 SMP PREEMPT Mon, 10 Jan 2022 20:11:47 +0000', 'python_full_version': '3.10.2', 'python_version': '3.10', 'sys_platform': 'linux'} ``` System environment variables: - `SHELL` - `SESSION_MANAGER` - `PIPENV_VENV_IN_PROJECT` - `COLORTERM` - `XDG_CONFIG_DIRS` - `LESS` - `XDG_SESSION_PATH` - `NVM_INC` - `XDG_MENU_PREFIX` - `TERM_PROGRAM_VERSION` - `TMUX` - `LANGUAGE` - `DOTNET_ROOT` - `LARCH_PATH` - `DESKTOP_SESSION` - `EDITOR` - `GTK_MODULES` - `ANDROID_NDK` - `XDG_SEAT` - `PWD` - `XDG_SESSION_DESKTOP` - `LOGNAME` - `XDG_SESSION_TYPE` - `XDG_GREETER_DATA_DIR` - `MOTD_SHOWN` - `GDM_LANG` - `HOME` - `LCLIMPORTDIR` - `LANG` - `GITHUB_TOKEN` - `LS_COLORS` - `XDG_CURRENT_DESKTOP` - `PYTHONSTARTUP` - `VTE_VERSION` - `XDG_SEAT_PATH` - `SSH_CONNECTION` - `ANDROID_NDK_HOME` - `DOTNET_BUNDLE_EXTRACT_BASE_DIR` - `JONPROMPT` - `NVM_DIR` - `XDG_SESSION_CLASS` - `ANDROID_HOME` - `TERM` - `KIRBY_IDX` - `USER` - `TMUX_PANE` - `SHLVL` - `NVM_CD_FLAGS` - `PAGER` - `LC_MESSAGES` - `XDG_VTNR` - `HGUSER` - `XDG_SESSION_ID` - `MOZ_PLUGIN_PATH` - `HEROKU_AC_COMMANDS_PATH` - `XDG_RUNTIME_DIR` - `PS1` - `EMAIL` - `XDG_DATA_DIRS` - `PATH` - `HEROKU_AC_ANALYTICS_DIR` - `ABSROOT` - `GDMSESSION` - `DBUS_SESSION_BUS_ADDRESS` - `HG` - `NVM_BIN` - `MAIL` - `HGEDITOR` - `OLDPWD` - `TERM_PROGRAM` - `_` - `PIP_SHIMS_BASE_MODULE` - `PIP_DISABLE_PIP_VERSION_CHECK` - `PYTHONDONTWRITEBYTECODE` - `PIP_PYTHON_PATH` - `PYTHONFINDER_IGNORE_UNSUPPORTED` Pipenv–specific environment variables: - `PIPENV_VENV_IN_PROJECT`: `1` Debug–specific environment variables: - `PATH`: `/usr/local/sbin:/usr/local/bin:/usr/bin:/opt/android-sdk/platform-tools:/usr/lib/jvm/default/bin:/usr/lib32/jvm/default/bin:/opt/ti/msp-flasher:/opt/ti/mspgcc/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl:/home/paulk//bin/:/home/paulk/.gem/ruby/2.3.0/bin:/opt/android-sdk/platform-tools/:/home/paulk/.bin:/home/paulk/.yarn/bin` - `SHELL`: `/bin/bash` - `EDITOR`: `vim` - `LANG`: `en_US.utf8` - `PWD`: `/home/paulk/pipenv-4977/boo` --------------------------- Contents of `Pipfile` ('/home/paulk/pipenv-4977/boo/Pipfile'): ```toml [[source]] url = "https://pypi.org/simple" verify_ssl = true name = "pypi" [[source]] url = "https://pypi.anaconda.org/intel/simple" verify_ssl = true name = "intel" [packages] [dev-packages] tensorflow = {version="<2.4.4", index="pypi"} keras = {version="<2.4.3", index="pypi"} [requires] python_version = "3.8" ``` Contents of `Pipfile.lock` ('/home/paulk/pipenv-4977/boo/Pipfile.lock'): ```json { "_meta": { "hash": { "sha256": "15afeb53275a7ac97df385fdebdc9662f378d7341797dba3857e85f55efa58fa" }, "pipfile-spec": 6, "requires": { "python_version": "3.8" }, "sources": [ { "name": "pypi", "url": "https://pypi.org/simple", "verify_ssl": true } ] }, "default": {}, "develop": { "absl-py": { "hashes": [ "sha256:72d782fbeafba66ba3e525d46bccac949b9a174dbf66233e50ece09ee688dc81", "sha256:ea907384af023a7e681368bedb896159ab100c7db593efbbd5cde22af11270cd" ], "markers": "python_version >= '3.6'", "version": "==0.15.0" }, "astunparse": { "hashes": [ "sha256:5ad93a8456f0d084c3456d059fd9a92cce667963232cbf763eac3bc5b7940872", "sha256:c2652417f2c8b5bb325c885ae329bdf3f86424075c4fd1a128674bc6fba4b8e8" ], "version": "==1.6.3" }, "cachetools": { "hashes": [ "sha256:486471dfa8799eb7ec503a8059e263db000cdda20075ce5e48903087f79d5fd6", "sha256:8fecd4203a38af17928be7b90689d8083603073622229ca7077b72d8e5a976e4" ], "markers": "python_version ~= '3.7'", "version": "==5.0.0" }, "certifi": { "hashes": [ "sha256:78884e7c1d4b00ce3cea67b44566851c4343c120abd683433ce934a68ea58872", "sha256:d62a0163eb4c2344ac042ab2bdf75399a71a2d8c7d47eac2e2ee91b9d6339569" ], "version": "==2021.10.8" }, "charset-normalizer": { "hashes": [ "sha256:2857e29ff0d34db842cd7ca3230549d1a697f96ee6d3fb071cfa6c7393832597", "sha256:6881edbebdb17b39b4eaaa821b438bf6eddffb4468cf344f09f89def34a8b1df" ], "markers": "python_version >= '3'", "version": "==2.0.12" }, "flatbuffers": { "hashes": [ "sha256:63bb9a722d5e373701913e226135b28a6f6ac200d5cc7b4d919fa38d73b44610", "sha256:9e9ef47fa92625c4721036e7c4124182668dc6021d9e7c73704edd395648deb9" ], "version": "==1.12" }, "gast": { "hashes": [ "sha256:8f46f5be57ae6889a4e16e2ca113b1703ef17f2b0abceb83793eaba9e1351a45", "sha256:b881ef288a49aa81440d2c5eb8aeefd4c2bb8993d5f50edae7413a85bfdb3b57" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==0.3.3" }, "google-auth": { "hashes": [ "sha256:218ca03d7744ca0c8b6697b6083334be7df49b7bf76a69d555962fd1a7657b5f", "sha256:ad160fc1ea8f19e331a16a14a79f3d643d813a69534ba9611d2c80dc10439dad" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5'", "version": "==2.6.0" }, "google-auth-oauthlib": { "hashes": [ "sha256:3f2a6e802eebbb6fb736a370fbf3b055edcb6b52878bf2f26330b5e041316c73", "sha256:a90a072f6993f2c327067bf65270046384cda5a8ecb20b94ea9a687f1f233a7a" ], "markers": "python_version >= '3.6'", "version": "==0.4.6" }, "google-pasta": { "hashes": [ "sha256:4612951da876b1a10fe3960d7226f0c7682cf901e16ac06e473b267a5afa8954", "sha256:b32482794a366b5366a32c92a9a9201b107821889935a02b3e51f6b432ea84ed", "sha256:c9f2c8dfc8f96d0d5808299920721be30c9eec37f2389f28904f454565c8a16e" ], "version": "==0.2.0" }, "grpcio": { "hashes": [ "sha256:01d3046fe980be25796d368f8fc5ff34b7cf5e1444f3789a017a7fe794465639", "sha256:07b430fa68e5eecd78e2ad529ab80f6a234b55fc1b675fe47335ccbf64c6c6c8", "sha256:0e3edd8cdb71809d2455b9dbff66b4dd3d36c321e64bfa047da5afdfb0db332b", "sha256:0f3f09269ffd3fded430cd89ba2397eabbf7e47be93983b25c187cdfebb302a7", "sha256:1376a60f9bfce781b39973f100b5f67e657b5be479f2fd8a7d2a408fc61c085c", "sha256:14c0f017bfebbc18139551111ac58ecbde11f4bc375b73a53af38927d60308b6", "sha256:182c64ade34c341398bf71ec0975613970feb175090760ab4f51d1e9a5424f05", "sha256:1ada89326a364a299527c7962e5c362dbae58c67b283fe8383c4d952b26565d5", "sha256:1ce6f5ff4f4a548c502d5237a071fa617115df58ea4b7bd41dac77c1ab126e9c", "sha256:1d384a61f96a1fc6d5d3e0b62b0a859abc8d4c3f6d16daba51ebf253a3e7df5d", "sha256:25959a651420dd4a6fd7d3e8dee53f4f5fd8c56336a64963428e78b276389a59", "sha256:28677f057e2ef11501860a7bc15de12091d40b95dd0fddab3c37ff1542e6b216", "sha256:378fe80ec5d9353548eb2a8a43ea03747a80f2e387c4f177f2b3ff6c7d898753", "sha256:3afb058b6929eba07dba9ae6c5b555aa1d88cb140187d78cc510bd72d0329f28", "sha256:4396b1d0f388ae875eaf6dc05cdcb612c950fd9355bc34d38b90aaa0665a0d4b", "sha256:4775bc35af9cd3b5033700388deac2e1d611fa45f4a8dcb93667d94cb25f0444", "sha256:5bddf9d53c8df70061916c3bfd2f468ccf26c348bb0fb6211531d895ed5e4c72", "sha256:6d869a3e8e62562b48214de95e9231c97c53caa7172802236cd5d60140d7cddd", "sha256:6f7947dad606c509d067e5b91a92b250aa0530162ab99e4737090f6b17eb12c4", "sha256:7cda998b7b551503beefc38db9be18c878cfb1596e1418647687575cdefa9273", "sha256:99bac0e2c820bf446662365df65841f0c2a55b0e2c419db86eaf5d162ddae73e", "sha256:9c0d8f2346c842088b8cbe3e14985b36e5191a34bf79279ba321a4bf69bd88b7", "sha256:a8004b34f600a8a51785e46859cd88f3386ef67cccd1cfc7598e3d317608c643", "sha256:ac7028d363d2395f3d755166d0161556a3f99500a5b44890421ccfaaf2aaeb08", "sha256:be98e3198ec765d0a1e27f69d760f69374ded8a33b953dcfe790127731f7e690", "sha256:c31e8a219650ddae1cd02f5a169e1bffe66a429a8255d3ab29e9363c73003b62", "sha256:c4966d746dccb639ef93f13560acbe9630681c07f2b320b7ec03fe2c8f0a1f15", "sha256:c58825a3d8634cd634d8f869afddd4d5742bdb59d594aea4cea17b8f39269a55", "sha256:ce617e1c4a39131f8527964ac9e700eb199484937d7a0b3e52655a3ba50d5fb9", "sha256:e28e4c0d4231beda5dee94808e3a224d85cbaba3cfad05f2192e6f4ec5318053", "sha256:e467af6bb8f5843f5a441e124b43474715cfb3981264e7cd227343e826dcc3ce", "sha256:e6786f6f7be0937614577edcab886ddce91b7c1ea972a07ef9972e9f9ecbbb78", "sha256:e811ce5c387256609d56559d944a974cc6934a8eea8c76e7c86ec388dc06192d", "sha256:ec10d5f680b8e95a06f1367d73c5ddcc0ed04a3f38d6e4c9346988fb0cea2ffa", "sha256:ef9bd7fdfc0a063b4ed0efcab7906df5cae9bbcf79d05c583daa2eba56752b00", "sha256:f03dfefa9075dd1c6c5cc27b1285c521434643b09338d8b29e1d6a27b386aa82", "sha256:f12900be4c3fd2145ba94ab0d80b7c3d71c9e6414cfee2f31b1c20188b5c281f", "sha256:f53f2dfc8ff9a58a993e414a016c8b21af333955ae83960454ad91798d467c7b", "sha256:f7d508691301027033215d3662dab7e178f54d5cca2329f26a71ae175d94b83f" ], "markers": "python_version >= '3.6'", "version": "==1.32.0" }, "h5py": { "hashes": [ "sha256:063947eaed5f271679ed4ffa36bb96f57bc14f44dd4336a827d9a02702e6ce6b", "sha256:13c87efa24768a5e24e360a40e0bc4c49bcb7ce1bb13a3a7f9902cec302ccd36", "sha256:16ead3c57141101e3296ebeed79c9c143c32bdd0e82a61a2fc67e8e6d493e9d1", "sha256:3dad1730b6470fad853ef56d755d06bb916ee68a3d8272b3bab0c1ddf83bb99e", "sha256:51ae56894c6c93159086ffa2c94b5b3388c0400548ab26555c143e7cfa05b8e5", "sha256:54817b696e87eb9e403e42643305f142cd8b940fe9b3b490bbf98c3b8a894cf4", "sha256:549ad124df27c056b2e255ea1c44d30fb7a17d17676d03096ad5cd85edb32dc1", "sha256:64f74da4a1dd0d2042e7d04cf8294e04ddad686f8eba9bb79e517ae582f6668d", "sha256:6998be619c695910cb0effe5eb15d3a511d3d1a5d217d4bd0bebad1151ec2262", "sha256:6ef7ab1089e3ef53ca099038f3c0a94d03e3560e6aff0e9d6c64c55fb13fc681", "sha256:769e141512b54dee14ec76ed354fcacfc7d97fea5a7646b709f7400cf1838630", "sha256:79b23f47c6524d61f899254f5cd5e486e19868f1823298bc0c29d345c2447172", "sha256:7be5754a159236e95bd196419485343e2b5875e806fe68919e087b6351f40a70", "sha256:84412798925dc870ffd7107f045d7659e60f5d46d1c70c700375248bf6bf512d", "sha256:86868dc07b9cc8cb7627372a2e6636cdc7a53b7e2854ad020c9e9d8a4d3fd0f5", "sha256:8bb1d2de101f39743f91512a9750fb6c351c032e5cd3204b4487383e34da7f75", "sha256:a5f82cd4938ff8761d9760af3274acf55afc3c91c649c50ab18fcff5510a14a5", "sha256:aac4b57097ac29089f179bbc2a6e14102dd210618e94d77ee4831c65f82f17c0", "sha256:bffbc48331b4a801d2f4b7dac8a72609f0b10e6e516e5c480a3e3241e091c878", "sha256:c0d4b04bbf96c47b6d360cd06939e72def512b20a18a8547fa4af810258355d5", "sha256:c54a2c0dd4957776ace7f95879d81582298c5daf89e77fb8bee7378f132951de", "sha256:cbf28ae4b5af0f05aa6e7551cee304f1d317dbed1eb7ac1d827cee2f1ef97a99", "sha256:d35f7a3a6cefec82bfdad2785e78359a0e6a5fbb3f605dd5623ce88082ccd681", "sha256:d3c59549f90a891691991c17f8e58c8544060fdf3ccdea267100fa5f561ff62f", "sha256:d7ae7a0576b06cb8e8a1c265a8bc4b73d05fdee6429bffc9a26a6eb531e79d72", "sha256:ecf4d0b56ee394a0984de15bceeb97cbe1fe485f1ac205121293fc44dcf3f31f", "sha256:f0e25bb91e7a02efccb50aba6591d3fe2c725479e34769802fcdd4076abfa917", "sha256:f23951a53d18398ef1344c186fb04b26163ca6ce449ebd23404b153fd111ded9", "sha256:ff7d241f866b718e4584fa95f520cb19405220c501bd3a53ee11871ba5166ea2" ], "markers": "python_version >= '3.7'", "version": "==2.10.0" }, "idna": { "hashes": [ "sha256:84d9dd047ffa80596e0f246e2eab0b391788b0503584e8945f2368256d2735ff", "sha256:9d643ff0a55b762d5cdb124b8eaa99c66322e2157b69160bc32796e824360e6d" ], "markers": "python_version >= '3'", "version": "==3.3" }, "importlib-metadata": { "hashes": [ "sha256:1208431ca90a8cca1a6b8af391bb53c1a2db74e5d1cef6ddced95d4b2062edc6", "sha256:ea4c597ebf37142f827b8f39299579e31685c31d3a438b59f469406afd0f2539" ], "markers": "python_version < '3.10'", "version": "==4.11.3" }, "keras": { "hashes": [ "sha256:05e2faf6885f7899482a7d18fc00ba9655fe2c9296a35ad96949a07a9c27d1bb", "sha256:fedd729b52572fb108a98e3d97e1bac10a81d3917d2103cc20ab2a5f03beb973" ], "index": "pypi", "version": "==2.4.3" }, "keras-preprocessing": { "hashes": [ "sha256:7b82029b130ff61cc99b55f3bd27427df4838576838c5b2f65940e4fcec99a7b", "sha256:add82567c50c8bc648c14195bf544a5ce7c1f76761536956c3d2978970179ef3" ], "version": "==1.1.2" }, "markdown": { "hashes": [ "sha256:76df8ae32294ec39dcf89340382882dfa12975f87f45c3ed1ecdb1e8cefc7006", "sha256:9923332318f843411e9932237530df53162e29dc7a4e2b91e35764583c46c9a3" ], "markers": "python_version >= '3.6'", "version": "==3.3.6" }, "numpy": { "hashes": [ "sha256:012426a41bc9ab63bb158635aecccc7610e3eff5d31d1eb43bc099debc979d94", "sha256:06fab248a088e439402141ea04f0fffb203723148f6ee791e9c75b3e9e82f080", "sha256:0eef32ca3132a48e43f6a0f5a82cb508f22ce5a3d6f67a8329c81c8e226d3f6e", "sha256:1ded4fce9cfaaf24e7a0ab51b7a87be9038ea1ace7f34b841fe3b6894c721d1c", "sha256:2e55195bc1c6b705bfd8ad6f288b38b11b1af32f3c8289d6c50d47f950c12e76", "sha256:2ea52bd92ab9f768cc64a4c3ef8f4b2580a17af0a5436f6126b08efbd1838371", "sha256:36674959eed6957e61f11c912f71e78857a8d0604171dfd9ce9ad5cbf41c511c", "sha256:384ec0463d1c2671170901994aeb6dce126de0a95ccc3976c43b0038a37329c2", "sha256:39b70c19ec771805081578cc936bbe95336798b7edf4732ed102e7a43ec5c07a", "sha256:400580cbd3cff6ffa6293df2278c75aef2d58d8d93d3c5614cd67981dae68ceb", "sha256:43d4c81d5ffdff6bae58d66a3cd7f54a7acd9a0e7b18d97abb255defc09e3140", "sha256:50a4a0ad0111cc1b71fa32dedd05fa239f7fb5a43a40663269bb5dc7877cfd28", "sha256:603aa0706be710eea8884af807b1b3bc9fb2e49b9f4da439e76000f3b3c6ff0f", "sha256:6149a185cece5ee78d1d196938b2a8f9d09f5a5ebfbba66969302a778d5ddd1d", "sha256:759e4095edc3c1b3ac031f34d9459fa781777a93ccc633a472a5468587a190ff", "sha256:7fb43004bce0ca31d8f13a6eb5e943fa73371381e53f7074ed21a4cb786c32f8", "sha256:811daee36a58dc79cf3d8bdd4a490e4277d0e4b7d103a001a4e73ddb48e7e6aa", "sha256:8b5e972b43c8fc27d56550b4120fe6257fdc15f9301914380b27f74856299fea", "sha256:99abf4f353c3d1a0c7a5f27699482c987cf663b1eac20db59b8c7b061eabd7fc", "sha256:a0d53e51a6cb6f0d9082decb7a4cb6dfb33055308c4c44f53103c073f649af73", "sha256:a12ff4c8ddfee61f90a1633a4c4afd3f7bcb32b11c52026c92a12e1325922d0d", "sha256:a4646724fba402aa7504cd48b4b50e783296b5e10a524c7a6da62e4a8ac9698d", "sha256:a76f502430dd98d7546e1ea2250a7360c065a5fdea52b2dffe8ae7180909b6f4", "sha256:a9d17f2be3b427fbb2bce61e596cf555d6f8a56c222bd2ca148baeeb5e5c783c", "sha256:ab83f24d5c52d60dbc8cd0528759532736b56db58adaa7b5f1f76ad551416a1e", "sha256:aeb9ed923be74e659984e321f609b9ba54a48354bfd168d21a2b072ed1e833ea", "sha256:c843b3f50d1ab7361ca4f0b3639bf691569493a56808a0b0c54a051d260b7dbd", "sha256:cae865b1cae1ec2663d8ea56ef6ff185bad091a5e33ebbadd98de2cfa3fa668f", "sha256:cc6bd4fd593cb261332568485e20a0712883cf631f6f5e8e86a52caa8b2b50ff", "sha256:cf2402002d3d9f91c8b01e66fbb436a4ed01c6498fffed0e4c7566da1d40ee1e", "sha256:d051ec1c64b85ecc69531e1137bb9751c6830772ee5c1c426dbcfe98ef5788d7", "sha256:d6631f2e867676b13026e2846180e2c13c1e11289d67da08d71cacb2cd93d4aa", "sha256:dbd18bcf4889b720ba13a27ec2f2aac1981bd41203b3a3b27ba7a33f88ae4827", "sha256:df609c82f18c5b9f6cb97271f03315ff0dbe481a2a02e56aeb1b1a985ce38e60" ], "markers": "python_version >= '3.6'", "version": "==1.19.5" }, "oauthlib": { "hashes": [ "sha256:23a8208d75b902797ea29fd31fa80a15ed9dc2c6c16fe73f5d346f83f6fa27a2", "sha256:6db33440354787f9b7f3a6dbd4febf5d0f93758354060e802f6c06cb493022fe" ], "markers": "python_version >= '3.6'", "version": "==3.2.0" }, "opt-einsum": { "hashes": [ "sha256:2455e59e3947d3c275477df7f5205b30635e266fe6dc300e3d9f9646bfcea147", "sha256:59f6475f77bbc37dcf7cd748519c0ec60722e91e63ca114e68821c0c54a46549" ], "markers": "python_version >= '3.5'", "version": "==3.3.0" }, "protobuf": { "hashes": [ "sha256:072fbc78d705d3edc7ccac58a62c4c8e0cec856987da7df8aca86e647be4e35c", "sha256:09297b7972da685ce269ec52af761743714996b4381c085205914c41fcab59fb", "sha256:16f519de1313f1b7139ad70772e7db515b1420d208cb16c6d7858ea989fc64a9", "sha256:1c91ef4110fdd2c590effb5dca8fdbdcb3bf563eece99287019c4204f53d81a4", "sha256:3112b58aac3bac9c8be2b60a9daf6b558ca3f7681c130dcdd788ade7c9ffbdca", "sha256:36cecbabbda242915529b8ff364f2263cd4de7c46bbe361418b5ed859677ba58", "sha256:4276cdec4447bd5015453e41bdc0c0c1234eda08420b7c9a18b8d647add51e4b", "sha256:435bb78b37fc386f9275a7035fe4fb1364484e38980d0dd91bc834a02c5ec909", "sha256:48ed3877fa43e22bcacc852ca76d4775741f9709dd9575881a373bd3e85e54b2", "sha256:54a1473077f3b616779ce31f477351a45b4fef8c9fd7892d6d87e287a38df368", "sha256:69da7d39e39942bd52848438462674c463e23963a1fdaa84d88df7fbd7e749b2", "sha256:6cbc312be5e71869d9d5ea25147cdf652a6781cf4d906497ca7690b7b9b5df13", "sha256:7bb03bc2873a2842e5ebb4801f5c7ff1bfbdf426f85d0172f7644fcda0671ae0", "sha256:7ca7da9c339ca8890d66958f5462beabd611eca6c958691a8fe6eccbd1eb0c6e", "sha256:835a9c949dc193953c319603b2961c5c8f4327957fe23d914ca80d982665e8ee", "sha256:84123274d982b9e248a143dadd1b9815049f4477dc783bf84efe6250eb4b836a", "sha256:8961c3a78ebfcd000920c9060a262f082f29838682b1f7201889300c1fbe0616", "sha256:96bd766831596d6014ca88d86dc8fe0fb2e428c0b02432fd9db3943202bf8c5e", "sha256:9df0c10adf3e83015ced42a9a7bd64e13d06c4cf45c340d2c63020ea04499d0a", "sha256:b38057450a0c566cbd04890a40edf916db890f2818e8682221611d78dc32ae26", "sha256:bd95d1dfb9c4f4563e6093a9aa19d9c186bf98fa54da5252531cc0d3a07977e7", "sha256:c1068287025f8ea025103e37d62ffd63fec8e9e636246b89c341aeda8a67c934", "sha256:c438268eebb8cf039552897d78f402d734a404f1360592fef55297285f7f953f", "sha256:cdc076c03381f5c1d9bb1abdcc5503d9ca8b53cf0a9d31a9f6754ec9e6c8af0f", "sha256:f358aa33e03b7a84e0d91270a4d4d8f5df6921abe99a377828839e8ed0c04e07", "sha256:f51d5a9f137f7a2cec2d326a74b6e3fc79d635d69ffe1b036d39fc7d75430d37" ], "markers": "python_version >= '3.5'", "version": "==3.19.4" }, "pyasn1": { "hashes": [ "sha256:014c0e9976956a08139dc0712ae195324a75e142284d5f87f1a87ee1b068a359", "sha256:03840c999ba71680a131cfaee6fab142e1ed9bbd9c693e285cc6aca0d555e576", "sha256:0458773cfe65b153891ac249bcf1b5f8f320b7c2ce462151f8fa74de8934becf", "sha256:08c3c53b75eaa48d71cf8c710312316392ed40899cb34710d092e96745a358b7", "sha256:39c7e2ec30515947ff4e87fb6f456dfc6e84857d34be479c9d4a4ba4bf46aa5d", "sha256:5c9414dcfede6e441f7e8f81b43b34e834731003427e5b09e4e00e3172a10f00", "sha256:6e7545f1a61025a4e58bb336952c5061697da694db1cae97b116e9c46abcf7c8", "sha256:78fa6da68ed2727915c4767bb386ab32cdba863caa7dbe473eaae45f9959da86", "sha256:7ab8a544af125fb704feadb008c99a88805126fb525280b2270bb25cc1d78a12", "sha256:99fcc3c8d804d1bc6d9a099921e39d827026409a58f2a720dcdb89374ea0c776", "sha256:aef77c9fb94a3ac588e87841208bdec464471d9871bd5050a287cc9a475cd0ba", "sha256:e89bf84b5437b532b0803ba5c9a5e054d21fec423a89952a74f87fa2c9b7bce2", "sha256:fec3e9d8e36808a28efb59b489e4528c10ad0f480e57dcc32b4de5c9d8c9fdf3" ], "version": "==0.4.8" }, "pyasn1-modules": { "hashes": [ "sha256:0845a5582f6a02bb3e1bde9ecfc4bfcae6ec3210dd270522fee602365430c3f8", "sha256:0fe1b68d1e486a1ed5473f1302bd991c1611d319bba158e98b106ff86e1d7199", "sha256:15b7c67fabc7fc240d87fb9aabf999cf82311a6d6fb2c70d00d3d0604878c811", "sha256:426edb7a5e8879f1ec54a1864f16b882c2837bfd06eee62f2c982315ee2473ed", "sha256:65cebbaffc913f4fe9e4808735c95ea22d7a7775646ab690518c056784bc21b4", "sha256:905f84c712230b2c592c19470d3ca8d552de726050d1d1716282a1f6146be65e", "sha256:a50b808ffeb97cb3601dd25981f6b016cbb3d31fbf57a8b8a87428e6158d0c74", "sha256:a99324196732f53093a84c4369c996713eb8c89d360a496b599fb1a9c47fc3eb", "sha256:b80486a6c77252ea3a3e9b1e360bc9cf28eaac41263d173c032581ad2f20fe45", "sha256:c29a5e5cc7a3f05926aff34e097e84f8589cd790ce0ed41b67aed6857b26aafd", "sha256:cbac4bc38d117f2a49aeedec4407d23e8866ea4ac27ff2cf7fb3e5b570df19e0", "sha256:f39edd8c4ecaa4556e989147ebf219227e2cd2e8a43c7e7fcb1f1c18c5fd6a3d", "sha256:fe0644d9ab041506b62782e92b06b8c68cca799e1a9636ec398675459e031405" ], "version": "==0.2.8" }, "pyyaml": { "hashes": [ "sha256:0283c35a6a9fbf047493e3a0ce8d79ef5030852c51e9d911a27badfde0605293", "sha256:055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b", "sha256:07751360502caac1c067a8132d150cf3d61339af5691fe9e87803040dbc5db57", "sha256:0b4624f379dab24d3725ffde76559cff63d9ec94e1736b556dacdfebe5ab6d4b", "sha256:0ce82d761c532fe4ec3f87fc45688bdd3a4c1dc5e0b4a19814b9009a29baefd4", "sha256:1e4747bc279b4f613a09eb64bba2ba602d8a6664c6ce6396a4d0cd413a50ce07", "sha256:213c60cd50106436cc818accf5baa1aba61c0189ff610f64f4a3e8c6726218ba", "sha256:231710d57adfd809ef5d34183b8ed1eeae3f76459c18fb4a0b373ad56bedcdd9", "sha256:277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287", "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513", "sha256:40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0", "sha256:473f9edb243cb1935ab5a084eb238d842fb8f404ed2193a915d1784b5a6b5fc0", "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92", "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f", "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2", "sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc", "sha256:819b3830a1543db06c4d4b865e70ded25be52a2e0631ccd2f6a47a2822f2fd7c", "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86", "sha256:98c4d36e99714e55cfbaaee6dd5badbc9a1ec339ebfc3b1f52e293aee6bb71a4", "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c", "sha256:9fa600030013c4de8165339db93d182b9431076eb98eb40ee068700c9c813e34", "sha256:a80a78046a72361de73f8f395f1f1e49f956c6be882eed58505a15f3e430962b", "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c", "sha256:b5b9eccad747aabaaffbc6064800670f0c297e52c12754eb1d976c57e4f74dcb", "sha256:c5687b8d43cf58545ade1fe3e055f70eac7a5a1a0bf42824308d868289a95737", "sha256:cba8c411ef271aa037d7357a2bc8f9ee8b58b9965831d9e51baf703280dc73d3", "sha256:d15a181d1ecd0d4270dc32edb46f7cb7733c7c508857278d3d378d14d606db2d", "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53", "sha256:d4eccecf9adf6fbcc6861a38015c2a64f38b9d94838ac1810a9023a0609e1b78", "sha256:d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803", "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a", "sha256:e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174", "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5" ], "markers": "python_version >= '3.6'", "version": "==6.0" }, "requests": { "hashes": [ "sha256:68d7c56fd5a8999887728ef304a6d12edc7be74f1cfa47714fc8b414525c9a61", "sha256:f22fa1e554c9ddfd16e6e41ac79759e17be9e492b3587efa038054674760e72d" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5'", "version": "==2.27.1" }, "requests-oauthlib": { "hashes": [ "sha256:2577c501a2fb8d05a304c09d090d6e47c306fef15809d102b327cf8364bddab5", "sha256:75beac4a47881eeb94d5ea5d6ad31ef88856affe2332b9aafb52c6452ccf0d7a" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==1.3.1" }, "rsa": { "hashes": [ "sha256:5c6bd9dc7a543b7fe4304a631f8a8a3b674e2bbfc49c2ae96200cdbe55df6b17", "sha256:95c5d300c4e879ee69708c428ba566c59478fd653cc3a22243eeb8ed846950bb" ], "markers": "python_version >= '3.6'", "version": "==4.8" }, "scipy": { "hashes": [ "sha256:011d4386b53b933142f58a652aa0f149c9b9242abd4f900b9f4ea5fbafc86b89", "sha256:16e09ef68b352d73befa8bcaf3ebe25d3941fe1a58c82909d5589856e6bc8174", "sha256:31d4f2d6b724bc9a98e527b5849b8a7e589bf1ea630c33aa563eda912c9ff0bd", "sha256:38aa39b6724cb65271e469013aeb6f2ce66fd44f093e241c28a9c6bc64fd79ed", "sha256:3d573228c10a3a8c32b9037be982e6440e411b443a6267b067cac72f690b8d56", "sha256:3d9dd6c8b93a22bf9a3a52d1327aca7e092b1299fb3afc4f89e8eba381be7b59", "sha256:559a8a4c03a5ba9fe3232f39ed24f86457e4f3f6c0abbeae1fb945029f092720", "sha256:5e73343c5e0d413c1f937302b2e04fb07872f5843041bcfd50699aef6e95e399", "sha256:723b9f878095ed994756fa4ee3060c450e2db0139c5ba248ee3f9628bd64e735", "sha256:87b01c7d5761e8a266a0fbdb9d88dcba0910d63c1c671bdb4d99d29f469e9e03", "sha256:8f4d059a97b29c91afad46b1737274cb282357a305a80bdd9e8adf3b0ca6a3f0", "sha256:92b2c2af4183ed09afb595709a8ef5783b2baf7f41e26ece24e1329c109691a7", "sha256:937d28722f13302febde29847bbe554b89073fbb924a30475e5ed7b028898b5f", "sha256:a279e27c7f4566ef18bab1b1e2c37d168e365080974758d107e7d237d3f0f484", "sha256:ad5be4039147c808e64f99c0e8a9641eb5d2fa079ff5894dcd8240e94e347af4", "sha256:ae3e327da323d82e918e593460e23babdce40d7ab21490ddf9fc06dec6b91a18", "sha256:bb7088e89cd751acf66195d2f00cf009a1ea113f3019664032d9075b1e727b6c", "sha256:c17a1878d00a5dd2797ccd73623ceca9d02375328f6218ee6d921e1325e61aff", "sha256:c2bae431d127bf0b1da81fc24e4bba0a84d058e3a96b9dd6475dfcb3c5e8761e", "sha256:de2e80ee1d925984c2504812a310841c241791c5279352be4707cdcd7c255039", "sha256:e6f0cd9c0bd374ef834ee1e0f0999678d49dcc400ea6209113d81528958f97c7", "sha256:f3720d0124aced49f6f2198a6900304411dbbeed12f56951d7c66ebef05e3df6", "sha256:f4a6d3b9f9797eb2d43938ac2c5d96d02aed17ef170c8b38f11798717523ddba" ], "markers": "python_version < '3.11' and python_version >= '3.8'", "version": "==1.8.0" }, "setuptools": { "hashes": [ "sha256:6599055eeb23bfef457d5605d33a4d68804266e6cb430b0fb12417c5efeae36c", "sha256:782ef48d58982ddb49920c11a0c5c9c0b02e7d7d1c2ad0aa44e1a1e133051c96" ], "markers": "python_version >= '3.7'", "version": "==60.10.0" }, "six": { "hashes": [ "sha256:30639c035cdb23534cd4aa2dd52c3bf48f06e5f4a941509c8bafd8ce11080259", "sha256:8b74bedcbbbaca38ff6d7491d76f2b06b3592611af620f8426e82dddb04a5ced" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==1.15.0" }, "tensorboard": { "hashes": [ "sha256:65a338e4424e9079f2604923bdbe301792adce2ace1be68da6b3ddf005170def" ], "markers": "python_version >= '3.6'", "version": "==2.8.0" }, "tensorboard-data-server": { "hashes": [ "sha256:809fe9887682d35c1f7d1f54f0f40f98bb1f771b14265b453ca051e2ce58fca7", "sha256:d8237580755e58eff68d1f3abefb5b1e39ae5c8b127cc40920f9c4fb33f4b98a", "sha256:fa8cef9be4fcae2f2363c88176638baf2da19c5ec90addb49b1cde05c95c88ee" ], "markers": "python_version >= '3.6'", "version": "==0.6.1" }, "tensorboard-plugin-wit": { "hashes": [ "sha256:ff26bdd583d155aa951ee3b152b3d0cffae8005dc697f72b44a8e8c2a77a8cbe" ], "version": "==1.8.1" }, "tensorflow": { "hashes": [ "sha256:18325c0de3547438d699dac4c5a75aa8a8593162dd4e68d63ea5ef4576f1c6ff", "sha256:3e0094895778e48df293ff15528dc8c326f5fa4bc8978e455977b06efabc5e1f", "sha256:61707169c42c24d801bf625874ebb2b1f3a83dc2a6b15aa5bd1747e50b11a828", "sha256:7ef4d5f4dfd653152962a81b85c1ae8c9c3f3c83f183371448ff8b2cb8eb8bce", "sha256:a2b1a9f3ccbd3d6b51dc5934616d1eab5456e0c2e220a3ba1e587e093928c829", "sha256:a7b5572b5221e7260efe8a2e4af8a24b8b1f6fd120ae2138a719a89db1e355f3", "sha256:b72de6816d57086097f0a58aac73588fa8f3fa3ff0dff0dde355beac57018cef", "sha256:d130f829e6245fd825262d191d222e31f29d19cf9f7824401bee5e40350bef86", "sha256:d5e1fe9dcbc3094a824b26a6e5e3faaa0755993e7e1c7ef2ff9c41092c7cbb74" ], "index": "pypi", "version": "==2.4.4" }, "tensorflow-estimator": { "hashes": [ "sha256:5b7b7bf2debe19a8794adacc43e8ba6459daa4efaf54d3302623994a359b17f0" ], "version": "==2.4.0" }, "termcolor": { "hashes": [ "sha256:1d6d69ce66211143803fbc56652b41d73b4a400a2891d7bf7a1cdf4c02de613b" ], "version": "==1.1.0" }, "typing-extensions": { "hashes": [ "sha256:7cb407020f00f7bfc3cb3e7881628838e69d8f3fcab2f64742a5e76b2f841918", "sha256:99d4073b617d30288f569d3f13d2bd7548c3a7e4c8de87db09a9d29bb3a4a60c", "sha256:dafc7639cde7f1b6e1acc0f457842a83e722ccca8eef5270af2d74792619a89f" ], "markers": "python_version >= '3.6'", "version": "==3.7.4.3" }, "urllib3": { "hashes": [ "sha256:44ece4d53fb1706f667c9bd1c648f5469a2ec925fcf3a776667042d645472c14", "sha256:aabaf16477806a5e1dd19aa41f8c2b7950dd3c746362d7e3223dbe6de6ac448e" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4' and python_version < '4'", "version": "==1.26.9" }, "werkzeug": { "hashes": [ "sha256:1421ebfc7648a39a5c58c601b154165d05cf47a3cd0ccb70857cbdacf6c8f2b8", "sha256:b863f8ff057c522164b6067c9e28b041161b4be5ba4d0daceeaa50a163822d3c" ], "markers": "python_version >= '3.6'", "version": "==2.0.3" }, "wheel": { "hashes": [ "sha256:4bdcd7d840138086126cd09254dc6195fb4fc6f01c050a1d7236f2630db1d22a", "sha256:e9a504e793efbca1b8e0e9cb979a249cf4a0a7b5b8c9e8b65a5e39d49529c1c4" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", "version": "==0.37.1" }, "wrapt": { "hashes": [ "sha256:b62ffa81fb85f4332a4f609cab4ac40709470da05643a082ec1eb88e6d9b97d7" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", "version": "==1.12.1" }, "zipp": { "hashes": [ "sha256:9f50f446828eb9d45b267433fd3e9da8d801f614129124863f9c51ebceafb87d", "sha256:b47250dd24f92b7dd6a0a8fc5244da14608f3ca90a5efcd37a3b1642fac9a375" ], "markers": "python_version >= '3.7'", "version": "==3.7.0" } } } ```
matteius commented 2 years ago

I wonder if this outstanding PR will essentially fix this issue: https://github.com/pypa/pipenv/pull/5234

matteius commented 2 years ago

Can you try new version of pipenv==2022.8.15?