question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Locking fails when adding module as dev dependency.

See original GitHub issue

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

  • Comment out the [[sources]] section for intel, leaving behind only pypi defined. Step 3 is successful.
  • Leave both [[sources]] but instead of step 3, do pipenv install tensorflow. This successfully locks.

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 <module>
    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

Issue Analytics

  • State:closed
  • Created 2 years ago
  • Comments:10

github_iconTop GitHub Comments

1reaction
pklapperichcommented, Mar 17, 2022

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’):

[[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’):

{
    "_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"
        }
    }
}

1reaction
matteiuscommented, Mar 9, 2022

@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

Read more comments on GitHub >

github_iconTop Results From Across the Web

How to fix locking failed in pipenv? - Stack Overflow
It seems like a library is requiring a version >= importlib-metadata 2.0 . When I pinned the following dependencies it didn't work at...
Read more >
Common Pipenv Errors and How to Solve Them: Why Won't it ...
The second most common reason locking fails is that we attempt to install a package that is a pre-release version. You can resolve...
Read more >
Advanced Usage of Pipenv - Python Packaging Authority
Dependencies of wheels provided in a Pipfile will not be captured by $ pipenv lock . There are some known issues with using...
Read more >
Installing Dev Dependencies with npm: Beginners' Guide
In this case, you can delete this node-module along with the package-lock.json file and run the below command to reinstall the npm modules....
Read more >
Locking dependency versions - Gradle User Manual
Modifications to your build that would impact the resolved set of dependencies will cause it to fail. This makes sure that changes, either...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found