Pipenv: 11.1.8+ broke pipenv lock/install of --dev -e .

Created on 10 Mar 2018  ·  101Comments  ·  Source: pypa/pipenv

Sorry I don’t have the time for the full template dance, but I woke up to a broken pipenv update and could pinpoint it to:

  • pipenv install --dev -e .
  • pipenv lock if the Pipfile contains -e .
  • starting with 11.1.8

This is what I get with latest pipenv on lock:

Locking [dev-packages] dependencies…
ate(resolver.resolve(max_rounds=PIPENV_MAX_ROUNDS))
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/../pipenv/patched/piptools/resolver.py", line 102, in resolve
    has_changed, best_matches = self._resolve_one_round()
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/../pipenv/patched/piptools/resolver.py", line 200, in _resolve_one_round
    for dep in self._iter_dependencies(best_match):
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/../pipenv/patched/piptools/resolver.py", line 275, in _iter_dependencies
    for dependency in self.repository.get_dependencies(ireq):
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/../pipenv/patched/piptools/repositories/pypi.py", line 182, in get_dependencies
    'Please run "$ pipenv-resolver {0!r} --verbose" to debug.'.format(str(ireq.req))
ValueError: Your dependencies could not be resolved.
Please run "$ pipenv-resolver 'None' --verbose" to debug.

This is what I get with latest pipenv on pipenv install --dev -e . :

Installing -e .…
Obtaining file:///Users/hynek/tmp/t
Installing collected packages: t
  Found existing installation: t 1.0
    Uninstalling t-1.0:
      Successfully uninstalled t-1.0
  Running setup.py develop for t
Successfully installed t

Adding -e . to Pipfile's [dev-packages]…
Pipfile.lock not found, creating…
Locking [dev-packages] dependencies…
ate(resolver.resolve(max_rounds=PIPENV_MAX_ROUNDS))
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/../pipenv/patched/piptools/resolver.py", line 102, in resolve
    has_changed, best_matches = self._resolve_one_round()
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/../pipenv/patched/piptools/resolver.py", line 200, in _resolve_one_round
    for dep in self._iter_dependencies(best_match):
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/../pipenv/patched/piptools/resolver.py", line 275, in _iter_dependencies
    for dependency in self.repository.get_dependencies(ireq):
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/../pipenv/patched/piptools/repositories/pypi.py", line 182, in get_dependencies
    'Please run "$ pipenv-resolver {0!r} --verbose" to debug.'.format(str(ireq.req))
ValueError: Your dependencies could not be resolved.
Please run "$ pipenv-resolver 'None' --verbose" to debug.
Type

All 101 comments

Cannot reproduce — do you have anything else in your Pipfile?

Yeah, I cannot reproduce this at all. Please run $ python -m pipenv.help which will give us all the information we need to debug.

Based on your traceback though, even though I can't reproduce, I'm making this change...

Could it be related to using a private (devpi) PyPI? That was my original suspicion but I only could trigger it with -e .

Possibly. I think my patch will fix it, regardless. Will have a release out shortly.

I have no idea how ireq could ever be None at that codepath, as it's never been so in my testing. That could be related to devpi. A copy of your Pipfile would be really useful for testing, if it's not sensitive.

Try this one:

[[source]]

url = "https://pypi.fcio.net/simple/"
verify_ssl = true
name = "pypi"


[packages]


[dev-packages]


[requires]

python_version = "3.6"

then run pipenv install -e ..

https://pypi.fcio.net/simple/ is AFAIK bandersnatch FWIW but it break too for me.

P.S. It’s obviously also just pipenv lock that’s broken here. The talking about install was kind of a red herring.

That worked fine (in master). I think I fixed the bug.

Going to cut a release.

Could you double check with last release it breaks for you too? I’m not at my Mac to test.

sure

Not reproducing, but this patch should absolutely cover this hard-to-reproduce edge case.

Released, as v11.3.0.

Give that a try, and let me know if this is still happening.

P.S. Resolvers are hard.

And I just forked an existing one :)

Oh man I’m afraid you broke something big time. I cannot investigate heavily but when I run update a bunch of dependencies vanished from the lock files.

Try install-locking this:

[[source]]

url = "https://pypi.fcio.net/simple/"
verify_ssl = true
name = "pypi"


[packages]

"e1839a8" = {path = ".", editable = true}
autobahn = {extras = ["accelerate", "encryption", "asyncio", "serialization"]}


[dev-packages]



[requires]

python_version = "3.6"

Latest pipenv:

{
    "_meta": {
        "hash": {
            "sha256": "b7165fe60d6b304e5e67f2c63317ed2cb2289e3cbd61778c979a8080f9480d57"
        },
        "pipfile-spec": 6,
        "requires": {
            "python_version": "3.6"
        },
        "sources": [
            {
                "name": "pypi",
                "url": "https://pypi.fcio.net/simple/",
                "verify_ssl": true
            }
        ]
    },
    "default": {
        "autobahn": {
            "hashes": [
                "sha256:13199ac8e75bde47e8c2468386ce95c2489d3c7ef3eb25ef9f53094f8a2a5f0f",
                "sha256:fc1d38227bb44a453b54cffa48de8b2e6ce48ddc5e97fb5950b0faa27576f385"
            ],
            "version": "==18.3.1"
        },
        "e1839a8": {
            "editable": true,
            "path": "."
        }
    },
    "develop": {}
}

With pipenv 11.1.7 I get:

{
    "_meta": {
        "hash": {
            "sha256": "0f78f89f80f63027edf66ebd3e6f72f3f0de0d10b3d24fc776145d099eed322f"
        },
        "pipfile-spec": 6,
        "requires": {
            "python_version": "3.6"
        },
        "sources": [
            {
                "name": "pypi",
                "url": "https://pypi.fcio.net/simple/",
                "verify_ssl": true
            }
        ]
    },
    "default": {
        "asn1crypto": {
            "hashes": [
                "sha256:2f1adbb7546ed199e3c90ef23ec95c5cf3585bac7d11fb7eb562a3fe89c64e87",
                "sha256:9d5c20441baf0cb60a4ac34cc447c6c189024b6b4c6cd7877034f4965c464e49"
            ],
            "version": "==0.24.0"
        },
        "attrs": {
            "hashes": [
                "sha256:1c7960ccfd6a005cd9f7ba884e6316b5e430a3f1a6c37c5f87d8b43f83b54ec9",
                "sha256:a17a9573a6f475c99b551c0e0a812707ddda1ec9653bed04c13841404ed6f450"
            ],
            "version": "==17.4.0"
        },
        "autobahn": {
            "hashes": [
                "sha256:13199ac8e75bde47e8c2468386ce95c2489d3c7ef3eb25ef9f53094f8a2a5f0f",
                "sha256:fc1d38227bb44a453b54cffa48de8b2e6ce48ddc5e97fb5950b0faa27576f385"
            ],
            "version": "==18.3.1"
        },
        "cbor": {
            "hashes": [
                "sha256:13225a262ddf5615cbd9fd55a76a0d53069d18b07d2e9f19c39e6acb8609bbb6"
            ],
            "version": "==1.0.0"
        },
        "cffi": {
            "hashes": [
                "sha256:151b7eefd035c56b2b2e1eb9963c90c6302dc15fbd8c1c0a83a163ff2c7d7743",
                "sha256:1553d1e99f035ace1c0544050622b7bc963374a00c467edafac50ad7bd276aef",
                "sha256:1b0493c091a1898f1136e3f4f991a784437fac3673780ff9de3bcf46c80b6b50",
                "sha256:2ba8a45822b7aee805ab49abfe7eec16b90587f7f26df20c71dd89e45a97076f",
                "sha256:3c85641778460581c42924384f5e68076d724ceac0f267d66c757f7535069c93",
                "sha256:3eb6434197633b7748cea30bf0ba9f66727cdce45117a712b29a443943733257",
                "sha256:4c91af6e967c2015729d3e69c2e51d92f9898c330d6a851bf8f121236f3defd3",
                "sha256:770f3782b31f50b68627e22f91cb182c48c47c02eb405fd689472aa7b7aa16dc",
                "sha256:79f9b6f7c46ae1f8ded75f68cf8ad50e5729ed4d590c74840471fc2823457d04",
                "sha256:7a33145e04d44ce95bcd71e522b478d282ad0eafaf34fe1ec5bbd73e662f22b6",
                "sha256:857959354ae3a6fa3da6651b966d13b0a8bed6bbc87a0de7b38a549db1d2a359",
                "sha256:87f37fe5130574ff76c17cab61e7d2538a16f843bb7bca8ebbc4b12de3078596",
                "sha256:95d5251e4b5ca00061f9d9f3d6fe537247e145a8524ae9fd30a2f8fbce993b5b",
                "sha256:9d1d3e63a4afdc29bd76ce6aa9d58c771cd1599fbba8cf5057e7860b203710dd",
                "sha256:a36c5c154f9d42ec176e6e620cb0dd275744aa1d804786a71ac37dc3661a5e95",
                "sha256:ae5e35a2c189d397b91034642cb0eab0e346f776ec2eb44a49a459e6615d6e2e",
                "sha256:b0f7d4a3df8f06cf49f9f121bead236e328074de6449866515cea4907bbc63d6",
                "sha256:b75110fb114fa366b29a027d0c9be3709579602ae111ff61674d28c93606acca",
                "sha256:ba5e697569f84b13640c9e193170e89c13c6244c24400fc57e88724ef610cd31",
                "sha256:be2a9b390f77fd7676d80bc3cdc4f8edb940d8c198ed2d8c0be1319018c778e1",
                "sha256:d5d8555d9bfc3f02385c1c37e9f998e2011f0db4f90e250e5bc0c0a85a813085",
                "sha256:e55e22ac0a30023426564b1059b035973ec82186ddddbac867078435801c7801",
                "sha256:e90f17980e6ab0f3c2f3730e56d1fe9bcba1891eeea58966e89d352492cc74f4",
                "sha256:ecbb7b01409e9b782df5ded849c178a0aa7c906cf8c5a67368047daab282b184",
                "sha256:ed01918d545a38998bfa5902c7c00e0fee90e957ce036a4000a88e3fe2264917",
                "sha256:edabd457cd23a02965166026fd9bfd196f4324fe6032e866d0f3bd0301cd486f",
                "sha256:fdf1c1dc5bafc32bc5d08b054f94d659422b05aba244d6be4ddc1c72d9aa70fb"
            ],
            "version": "==1.11.5"
        },
        "cryptography": {
            "hashes": [
                "sha256:0d39a93cf25edeae1f796bbc5960e587f34513a852564f6345ea4491a86c5997",
                "sha256:18d0b0fc21f39b35ea469a82584f55eeecec1f65a92d85af712c425bdef627b3",
                "sha256:27a208b9600166976182351174948e128818e7fc95cbdba18143f3106a211546",
                "sha256:28e4e9a97713aa47b5ef9c5003def2eb58aec89781ef3ef82b1c2916a8b0639b",
                "sha256:2cfcee8829c5dec55597826d52c26bc26e7ce39adb4771584459d0636b0b7108",
                "sha256:33b564196dcd563e309a0b07444e31611368afe3a3822160c046f5e4c3b5cdd7",
                "sha256:41f94194ae78f83fd94ca94fb8ad65f92210a76a2421169ffa5c33c3ec7605f4",
                "sha256:4f385ee7d39ee1ed74f1d6b1da03d0734ea82855a7b28a9e6e88c4091bc58664",
                "sha256:55555d784cfdf9033e81f044c0df04babed2aa141213765d960d233b0139e353",
                "sha256:69285f5615507b6625f89ea1048addd1d9218585fb886eb90bdebb1d2b2d26f5",
                "sha256:6cb1224da391fa90f1be524eafb375b62baf8d3df9690b32e8cc475ccfccee5e",
                "sha256:6fb22f63e17813f3d1d8e30dd1e249e2c34233ba1d3de977fd31cb5db764c7d0",
                "sha256:7a2409f1564c84bcf2563d379c9b6148c5bc6b0ae46e109f6a7b4bebadf551df",
                "sha256:8487524a1212223ca6dc7e2c8913024618f7ff29855c98869088e3818d5f6733",
                "sha256:9a2945efcff84830c8e237ab037d0269380d75d400a89cc9e5628e52647e21be",
                "sha256:9a47a80f65f4feaaf8415a40c339806c7d7d867152ddccc6ca87f707c8b7b565",
                "sha256:a3c180d12ffb1d8ee5b33a514a5bcb2a9cc06cc89aa74038015591170c82f55d",
                "sha256:a5f2c681fd040ed648513939a1dd2242af19bd5e9e79e53b6dcfa33bdae61217",
                "sha256:b984523d28737e373c7c35c8b6db6001537609d47534892de189bebebaa42a47",
                "sha256:d18df9cf3f3212df28d445ea82ce702c4d7a35817ef7a38ee38879ffa8f7e857",
                "sha256:e4d967371c5b6b2e67855066471d844c5d52d210c36c28d49a8507b96e2c5291",
                "sha256:ee245f185fae723133511e2450be08a66c2eebb53ad27c0c19b228029f4748a5",
                "sha256:fc2208d95d9ecc8032f5e38330d5ace2e3b0b998e42b08c30c35b2ab3a4a3bc8"
            ],
            "version": "==2.1.4"
        },
        "e1839a8": {
            "editable": true,
            "path": "."
        },
        "idna": {
            "hashes": [
                "sha256:2c6a5de3089009e3da7c5dde64a141dbc8551d5b7f6cf4ed7c2568d0cc520a8f",
                "sha256:8c7309c718f94b3a625cb648ace320157ad16ff131ae0af362c9f21b80ef6ec4"
            ],
            "version": "==2.6"
        },
        "py-ubjson": {
            "hashes": [
                "sha256:81784e64936c12e218afc49ff4fb90702f298ac16848971d9570c87595860762"
            ],
            "version": "==0.11.0"
        },
        "pyasn1": {
            "hashes": [
                "sha256:d258b0a71994f7770599835249cece1caef3c70def868c4915e6e5ca49b67d15",
                "sha256:d5cd6ed995dba16fad0c521cfe31cd2d68400b53fcc2bce93326829be73ab6d1"
            ],
            "version": "==0.4.2"
        },
        "pyasn1-modules": {
            "hashes": [
                "sha256:47fb6757ab78fe966e7c58b2030b546854f78416d653163f0ce9290cf2278e8b",
                "sha256:af00ea8f2022b6287dc375b2c70f31ab5af83989fc6fe9eacd4976ce26cd7ccc"
            ],
            "version": "==0.2.1"
        },
        "pycparser": {
            "hashes": [
                "sha256:99a8ca03e29851d96616ad0404b4aad7d9ee16f25c9f9708a11faf2810f7b226"
            ],
            "version": "==2.18"
        },
        "pynacl": {
            "hashes": [
                "sha256:04e30e5bdeeb2d5b34107f28cd2f5bbfdc6c616f3be88fc6f53582ff1669eeca",
                "sha256:0bfa0d94d2be6874e40f896e0a67e290749151e7de767c5aefbad1121cad7512",
                "sha256:11aa4e141b2456ce5cecc19c130e970793fa3a2c2e6fbb8ad65b28f35aa9e6b6",
                "sha256:13bdc1fe084ff9ac7653ae5a924cae03bf4bb07c6667c9eb5b6eb3c570220776",
                "sha256:14339dc233e7a9dda80a3800e64e7ff89d0878ba23360eea24f1af1b13772cac",
                "sha256:1d33e775fab3f383167afb20b9927aaf4961b953d76eeb271a5703a6d756b65b",
                "sha256:2a42b2399d0428619e58dac7734838102d35f6dcdee149e0088823629bf99fbb",
                "sha256:2dce05ac8b3c37b9e2f65eab56c544885607394753e9613fd159d5e2045c2d98",
                "sha256:6453b0dae593163ffc6db6f9c9c1597d35c650598e2c39c0590d1757207a1ac2",
                "sha256:73a5a96fb5fbf2215beee2353a128d382dbca83f5341f0d3c750877a236569ef",
                "sha256:8abb4ef79161a5f58848b30ab6fb98d8c466da21fdd65558ce1d7afc02c70b5f",
                "sha256:8ac1167195b32a8755de06efd5b2d2fe76fc864517dab66aaf65662cc59e1988",
                "sha256:8f505f42f659012794414fa57c498404e64db78f1d98dfd40e318c569f3c783b",
                "sha256:be71cd5fce04061e1f3d39597f93619c80cdd3558a6c9ba99a546f144a8d8101",
                "sha256:cf6877124ae6a0698404e169b3ba534542cfbc43f939d46b927d956daf0a373a",
                "sha256:d0eb5b2795b7ee2cbcfcadacbe95a13afbda048a262bd369da9904fecb568975",
                "sha256:d795f506bcc9463efb5ebb0f65ed77921dcc9e0a50499dedd89f208445de9ecb",
                "sha256:d8aaf7e5d6b0e0ef7d6dbf7abeb75085713d0100b4eb1a4e4e857de76d77ac45",
                "sha256:e0d38fa0a75f65f556fb912f2c6790d1fa29b7dd27a1d9cc5591b281321eaaa9",
                "sha256:eb2acabbd487a46b38540a819ef67e477a674481f84a82a7ba2234b9ba46f752",
                "sha256:eeee629828d0eb4f6d98ac41e9a3a6461d114d1d0aa111a8931c049359298da0",
                "sha256:f5ce9e26d25eb0b2d96f3ef0ad70e1d3ae89b5d60255c462252a3e456a48c053",
                "sha256:fabf73d5d0286f9e078774f3435601d2735c94ce9e514ac4fb945701edead7e4"
            ],
            "version": "==1.2.1"
        },
        "pyopenssl": {
            "hashes": [
                "sha256:07a2de1a54de07448732a81e38a55df7da109b2f47f599f8bb35b0cbec69d4bd",
                "sha256:2c10cfba46a52c0b0950118981d61e72c1e5b1aac451ca1bc77de1a679456773"
            ],
            "version": "==17.5.0"
        },
        "pyqrcode": {
            "hashes": [
                "sha256:1b2812775fa6ff5c527977c4cd2ccb07051ca7d0bc0aecf937a43864abe5eff6",
                "sha256:fdbf7634733e56b72e27f9bce46e4550b75a3a2c420414035cae9d9d26b234d5"
            ],
            "version": "==1.2.1"
        },
        "pytrie": {
            "hashes": [
                "sha256:0c1bd0cb7c301b193da4bcf31bdf68bbdbea88be4bea5f680caecc56d9b74020"
            ],
            "version": "==0.3"
        },
        "service-identity": {
            "hashes": [
                "sha256:0e76f3c042cc0f5c7e6da002cf646f59dc4023962d1d1166343ce53bdad39e17",
                "sha256:4001fbb3da19e0df22c47a06d29681a398473af4aa9d745eca525b3b2c2302ab"
            ],
            "version": "==17.0.0"
        },
        "six": {
            "hashes": [
                "sha256:70e8a77beed4562e7f14fe23a786b54f6296e34344c23bc42f07b15018ff98e9",
                "sha256:832dc0e10feb1aa2c68dcc57dbb658f1c7e65b9b61af69048abc87a2db00a0eb"
            ],
            "version": "==1.11.0"
        },
        "sortedcontainers": {
            "hashes": [
                "sha256:844daced0f20d75c02ce53f373d048ea2e401ad8a7b3a4c43b2aa544b569efb3",
                "sha256:fb9e22cd6ee4b459f0d7b9b4189b19631031c72ac05715563139162014c13672"
            ],
            "version": "==1.5.9"
        },
        "txaio": {
            "hashes": [
                "sha256:31fcc61962fef04841968a516abc20891a9387c91be4db75c0a0a092b191006e",
                "sha256:dfc3a7d04b4b484ae5ff241affab5bb01306b1e950dd6f54fd036cfca94345d0"
            ],
            "version": "==2.9.0"
        },
        "u-msgpack-python": {
            "hashes": [
                "sha256:2f31fc1b6dd8632c230ea7012470e40f77119f20999274dda6f1afa9c305e590",
                "sha256:4b509782648fc563f85cef03887389c7fba3b077a47920a13d3d4ea78652ffd2"
            ],
            "version": "==2.4.1"
        },
        "wsaccel": {
            "hashes": [
                "sha256:425706acf0724d2f6bfa391ec37b4ef121d3432c956029de3cea4e101c218e0c"
            ],
            "version": "==0.6.2"
        }
    },
    "develop": {}
}

Seems like dependency resolution is fucked real good. :|

deps of editable installs only get installed when the deps are installed.

so,

$ pipenv install
$ pipenv lock

The editable doesn’t matter now. I get the same behavior if I remove it.

I'm getting the full graph on this side.

Try $ pipenv lock --clear

➤ pipenv --version
pipenv, version 11.3.0
~/tmp/t
➤ cat Pipfile
[[source]]

url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"


[packages]

autobahn = {extras = ["serialization", "asyncio", "encryption", "accelerate"]}


[dev-packages]



[requires]

python_version = "3.6"
~/tmp/t
➤ pipenv install
Creating a virtualenv for this project…
Using /Users/hynek/.pyenv/versions/3.6.4/bin/python3.6m (3.6.4) to create virtualenv…
⠋Running virtualenv with interpreter /Users/hynek/.pyenv/versions/3.6.4/bin/python3.6m
Using base prefix '/Users/hynek/.pyenv/versions/3.6.4'
New python executable in /Users/hynek/.local/share/virtualenvs/t-_JNsdux9/bin/python3.6m
Also creating executable in /Users/hynek/.local/share/virtualenvs/t-_JNsdux9/bin/python
Installing setuptools, pip, wheel...done.

Virtualenv location: /Users/hynek/.local/share/virtualenvs/t-_JNsdux9
Pipfile.lock not found, creating…
Locking [dev-packages] dependencies…
Locking [packages] dependencies…
Updated Pipfile.lock (7a9322)!
Installing dependencies from Pipfile.lock (7a9322)…
  🐍   ▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ 1/1 — 00:00:01
To activate this project's virtualenv, run the following:
 $ pipenv shell
~/tmp/t
➤ cat Pipfile.lock
{
    "_meta": {
        "hash": {
            "sha256": "60d37d17c6ad622a1aa4a4cffe89d1d7a129e0684f3d8aab9e2fdf9b4f7a9322"
        },
        "pipfile-spec": 6,
        "requires": {
            "python_version": "3.6"
        },
        "sources": [
            {
                "name": "pypi",
                "url": "https://pypi.python.org/simple",
                "verify_ssl": true
            }
        ]
    },
    "default": {
        "autobahn": {
            "hashes": [
                "sha256:13199ac8e75bde47e8c2468386ce95c2489d3c7ef3eb25ef9f53094f8a2a5f0f",
                "sha256:fc1d38227bb44a453b54cffa48de8b2e6ce48ddc5e97fb5950b0faa27576f385"
            ],
            "version": "==18.3.1"
        }
    },
    "develop": {}
}

Run $ pipenv lock --clear — we have a dependency cache — yours may be polluted from the previous bug.

In a fresh directory:

$ pipenv install autobahn[encryption,asyncio,accelerate,serialization]
Creating a virtualenv for this project…
Using /Users/hynek/.pyenv/versions/3.6.4/bin/python3.6m (3.6.4) to create virtualenv…
⠋Running virtualenv with interpreter /Users/hynek/.pyenv/versions/3.6.4/bin/python3.6m
Using base prefix '/Users/hynek/.pyenv/versions/3.6.4'
New python executable in /Users/hynek/.local/share/virtualenvs/tmp-sGUhoYWZ/bin/python3.6m
Also creating executable in /Users/hynek/.local/share/virtualenvs/tmp-sGUhoYWZ/bin/python
Installing setuptools, pip, wheel...done.

Virtualenv location: /Users/hynek/.local/share/virtualenvs/tmp-sGUhoYWZ
Creating a Pipfile for this project…
Installing autobahn[encryption,asyncio,accelerate,serialization]…
Collecting autobahn[accelerate,asyncio,encryption,serialization]
  Using cached autobahn-18.3.1-py2.py3-none-any.whl
Collecting txaio>=2.7.0 (from autobahn[accelerate,asyncio,encryption,serialization])
  Using cached txaio-2.9.0-py2.py3-none-any.whl
Collecting six>=1.10.0 (from autobahn[accelerate,asyncio,encryption,serialization])
  Using cached six-1.11.0-py2.py3-none-any.whl
Collecting wsaccel>=0.6.2; extra == "accelerate" (from autobahn[accelerate,asyncio,encryption,serialization])
Collecting pyopenssl>=16.2.0; extra == "encryption" (from autobahn[accelerate,asyncio,encryption,serialization])
  Using cached pyOpenSSL-17.5.0-py2.py3-none-any.whl
Collecting service-identity>=16.0.0; extra == "encryption" (from autobahn[accelerate,asyncio,encryption,serialization])
  Using cached service_identity-17.0.0-py2.py3-none-any.whl
Collecting pynacl>=1.0.1; extra == "encryption" (from autobahn[accelerate,asyncio,encryption,serialization])
  Using cached PyNaCl-1.2.1-cp36-cp36m-macosx_10_6_intel.whl
Collecting pyqrcode>=1.1; extra == "encryption" (from autobahn[accelerate,asyncio,encryption,serialization])
Collecting pytrie>=0.2; extra == "encryption" (from autobahn[accelerate,asyncio,encryption,serialization])
Collecting py-ubjson>=0.8.4; extra == "serialization" (from autobahn[accelerate,asyncio,encryption,serialization])
Collecting u-msgpack-python>=2.1; extra == "serialization" (from autobahn[accelerate,asyncio,encryption,serialization])
  Using cached u_msgpack_python-2.4.1-py2.py3-none-any.whl
Collecting cbor>=1.0.0; extra == "serialization" (from autobahn[accelerate,asyncio,encryption,serialization])
Collecting cryptography>=2.1.4 (from pyopenssl>=16.2.0; extra == "encryption"->autobahn[accelerate,asyncio,encryption,serialization])
  Using cached cryptography-2.1.4-cp36-cp36m-macosx_10_6_intel.whl
Collecting pyasn1-modules (from service-identity>=16.0.0; extra == "encryption"->autobahn[accelerate,asyncio,encryption,serialization])
  Using cached pyasn1_modules-0.2.1-py2.py3-none-any.whl
Collecting attrs (from service-identity>=16.0.0; extra == "encryption"->autobahn[accelerate,asyncio,encryption,serialization])
  Using cached attrs-17.4.0-py2.py3-none-any.whl
Collecting pyasn1 (from service-identity>=16.0.0; extra == "encryption"->autobahn[accelerate,asyncio,encryption,serialization])
  Using cached pyasn1-0.4.2-py2.py3-none-any.whl
Collecting cffi>=1.4.1 (from pynacl>=1.0.1; extra == "encryption"->autobahn[accelerate,asyncio,encryption,serialization])
  Using cached cffi-1.11.5-cp36-cp36m-macosx_10_6_intel.whl
Collecting sortedcontainers (from pytrie>=0.2; extra == "encryption"->autobahn[accelerate,asyncio,encryption,serialization])
  Using cached sortedcontainers-1.5.9-py2.py3-none-any.whl
Collecting idna>=2.1 (from cryptography>=2.1.4->pyopenssl>=16.2.0; extra == "encryption"->autobahn[accelerate,asyncio,encryption,serialization])
  Using cached idna-2.6-py2.py3-none-any.whl
Collecting asn1crypto>=0.21.0 (from cryptography>=2.1.4->pyopenssl>=16.2.0; extra == "encryption"->autobahn[accelerate,asyncio,encryption,serialization])
  Using cached asn1crypto-0.24.0-py2.py3-none-any.whl
Collecting pycparser (from cffi>=1.4.1->pynacl>=1.0.1; extra == "encryption"->autobahn[accelerate,asyncio,encryption,serialization])
Installing collected packages: six, txaio, wsaccel, pycparser, cffi, idna, asn1crypto, cryptography, pyopenssl, pyasn1, pyasn1-modules, attrs, service-identity, pynacl, pyqrcode, sortedcontainers, pytrie, py-ubjson, u-msgpack-python, cbor, autobahn
Successfully installed asn1crypto-0.24.0 attrs-17.4.0 autobahn-18.3.1 cbor-1.0.0 cffi-1.11.5 cryptography-2.1.4 idna-2.6 py-ubjson-0.11.0 pyasn1-0.4.2 pyasn1-modules-0.2.1 pycparser-2.18 pynacl-1.2.1 pyopenssl-17.5.0 pyqrcode-1.2.1 pytrie-0.3 service-identity-17.0.0 six-1.11.0 sortedcontainers-1.5.9 txaio-2.9.0 u-msgpack-python-2.4.1 wsaccel-0.6.2

Adding autobahn[encryption,asyncio,accelerate,serialization] to Pipfile's [packages]…
Pipfile.lock not found, creating…
Locking [dev-packages] dependencies…
Locking [packages] dependencies…
Updated Pipfile.lock (4bb2c2)!
Installing dependencies from Pipfile.lock (4bb2c2)…
  🐍   ▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ 1/1 — 00:00:00
To activate this project's virtualenv, run the following:
 $ pipenv shell

Please not how much it installs and how little (1) it locks.

I ran pipenv lock --clear right after and it changed nothing.

I ran your exact steps, and I'm getting a full graph.

Please run $ python -m pipenv.help | pbcopy which will provide us with additional debugging information.

Pipenv version: '11.3.0'

Pipenv location: '/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv'

Python location: '/Users/hynek/.local/venvs/pipenv/bin/python3.6'

Other Python installations in PATH:

  • 2.7: /Users/hynek/.pyenv/shims/python2.7
  • 2.7: /Users/hynek/.pyenv/shims/python2.7
  • 2.7: /usr/bin/python2.7
  • 3.4: /Users/hynek/.pyenv/shims/python3.4m
  • 3.4: /Users/hynek/.pyenv/shims/python3.4
  • 3.5: /Users/hynek/.pyenv/shims/python3.5m
  • 3.5: /Users/hynek/.pyenv/shims/python3.5
  • 3.6: /Users/hynek/.pyenv/shims/python3.6m
  • 3.6: /Users/hynek/.pyenv/shims/python3.6
  • 3.6: /usr/local/bin/python3.6

  • 3.6.4: /Users/hynek/.pyenv/shims/python

  • 3.6.4: /usr/local/bin/python
  • 2.7.10: /usr/bin/python
  • 2.7.14: /Users/hynek/.pyenv/shims/python2
  • 3.6.4: /Users/hynek/.pyenv/shims/python3
  • 3.6.4: /usr/local/bin/python3

PEP 508 Information:

{'implementation_name': 'cpython',
 'implementation_version': '3.6.4',
 'os_name': 'posix',
 'platform_machine': 'x86_64',
 'platform_python_implementation': 'CPython',
 'platform_release': '17.4.0',
 'platform_system': 'Darwin',
 'platform_version': 'Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST '
                     '2017; root:xnu-4570.41.2~1/RELEASE_X86_64',
 'python_full_version': '3.6.4',
 'python_version': '3.6',
 'sys_platform': 'darwin'}

System environment variables:

  • ARCHFLAGS
  • Apple_PubSub_Socket_Render
  • CFLAGS
  • COLORFGBG
  • COLORTERM
  • CPPFLAGS
  • DYLD_BIND_AT_LAUNCH
  • DYLD_LIBRARY_PATH
  • EDITOR
  • FZF_ALT_C_COMMAND
  • FZF_CTRL_T_COMMAND
  • FZF_DEFAULT_COMMAND
  • GOPATH
  • HOME
  • ITERM_PROFILE
  • ITERM_SESSION_ID
  • JAVA_HOME
  • LANG
  • LC_ALL
  • LC_CTYPE
  • LDFLAGS
  • LOGNAME
  • LSCOLORS
  • NOMAD_ADDR
  • OMF_CONFIG
  • OMF_PATH
  • OPENSSL
  • PATH
  • PIPENV_DEFAULT_PYTHON_VERSION
  • PIP_INDEX_URL
  • PWD
  • PYENV_SHELL
  • PYTHONDONTWRITEBYTECODE
  • PYTHONSTARTUP
  • RIPGREP_CONFIG_PATH
  • SECURITYSESSIONID
  • SHELL
  • SHLVL
  • SSH_AUTH_SOCK
  • TERM
  • TERM_PROGRAM
  • TERM_PROGRAM_VERSION
  • TERM_SESSION_ID
  • TMPDIR
  • USER
  • VAGRANT_DEFAULT_PROVIDER
  • VAULT_ADDR
  • VCC_ANSIBLE_DIR
  • VRMD_ANSIBLE_DIR
  • XPC_FLAGS
  • XPC_SERVICE_NAME
  • __CF_USER_TEXT_ENCODING
  • PIP_PYTHON_PATH
  • PYTHONUNBUFFERED

Pipenv–specific environment variables:

  • PIPENV_DEFAULT_PYTHON_VERSION: 3.6

Debug–specific environment variables:

  • PATH: /Users/hynek/.pyenv/shims:/Users/hynek/.local/bin:/usr/local/opt/openssl/bin:/Users/hynek/Work/go/bin:/Applications/SQLAnywhere17/System/bin64:/usr/local/opt/perl/bin:/Users/hynek/.cargo/bin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/MacGPG2/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin
  • SHELL: /usr/local/bin/fish
  • EDITOR: vim
  • LANG: en_US.UTF-8
  • PWD: /Users/hynek/tmp

Contents of Pipfile ('/Users/hynek/tmp/Pipfile'):

[[source]]

url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"


[packages]

autobahn = {extras = ["encryption", "accelerate", "asyncio", "serialization"]}


[dev-packages]



[requires]

python_version = "3.6"

Contents of Pipfile.lock ('/Users/hynek/tmp/Pipfile.lock'):

{
    "_meta": {
        "hash": {
            "sha256": "b971c00a9857b53b850aa1369493405ede94d0e9039a7bb771178c30e84bb2c2"
        },
        "pipfile-spec": 6,
        "requires": {
            "python_version": "3.6"
        },
        "sources": [
            {
                "name": "pypi",
                "url": "https://pypi.python.org/simple",
                "verify_ssl": true
            }
        ]
    },
    "default": {
        "autobahn": {
            "hashes": [
                "sha256:13199ac8e75bde47e8c2468386ce95c2489d3c7ef3eb25ef9f53094f8a2a5f0f",
                "sha256:fc1d38227bb44a453b54cffa48de8b2e6ce48ddc5e97fb5950b0faa27576f385"
            ],
            "version": "==18.3.1"
        }
    },
    "develop": {}
}

Fun fact:

$ pipenv graph
autobahn==18.3.1
  - six [required: >=1.10.0, installed: 1.11.0]
  - txaio [required: >=2.7.0, installed: 2.9.0]
    - six [required: Any, installed: 1.11.0]
cbor==1.0.0
py-ubjson==0.11.0
PyNaCl==1.2.1
  - cffi [required: >=1.4.1, installed: 1.11.5]
    - pycparser [required: Any, installed: 2.18]
  - six [required: Any, installed: 1.11.0]
PyQRCode==1.2.1
PyTrie==0.3
  - sortedcontainers [required: Any, installed: 1.5.9]
service-identity==17.0.0
  - attrs [required: Any, installed: 17.4.0]
  - pyasn1 [required: Any, installed: 0.4.2]
  - pyasn1-modules [required: Any, installed: 0.2.1]
    - pyasn1 [required: <0.5.0,>=0.4.1, installed: 0.4.2]
  - pyopenssl [required: >=0.12, installed: 17.5.0]
    - cryptography [required: >=2.1.4, installed: 2.1.4]
      - asn1crypto [required: >=0.21.0, installed: 0.24.0]
      - cffi [required: >=1.7, installed: 1.11.5]
        - pycparser [required: Any, installed: 2.18]
      - idna [required: >=2.1, installed: 2.6]
      - six [required: >=1.4.1, installed: 1.11.0]
    - six [required: >=1.5.2, installed: 1.11.0]
u-msgpack-python==2.4.1
wsaccel==0.6.2

It seems like it’s literally just the dumping of the lock that’s broken.

Okay so the real way to debug what's going on is to run the following command — I apologize for all the back and forth, but everything's working as expected on my end. And I don't see anything out of the ordinary on your side that should be causing this.

$ pipenv-resolver 'autobahn[encryption,accelerate,asyncio,serialization]' --verbose --clear

If that's not helpful enough, then this will absolutely be:

$ pipenv-resolver 'autobahn[encryption,accelerate,asyncio,serialization]' --debug --clear

Please share the results of one of those commands.

Preferably the first one, then we'll move on the second if it's not sufficient.

Using pip: -i https://pypi.python.org/simple

                          ROUND 1                           
Current constraints:
  autobahn[accelerate,asyncio,encryption,serialization]

Finding the best candidates:
  found candidate autobahn[accelerate,asyncio,encryption,serialization]==18.3.1 (constraint was <any>)

Finding secondary dependencies:
------------------------------------------------------------
Result of round 1: stable, done
RESULTS:
[{"name": "autobahn", "version": "18.3.1", "hashes": ["sha256:13199ac8e75bde47e8c2468386ce95c2489d3c7ef3eb25ef9f53094f8a2a5f0f", "sha256:fc1d38227bb44a453b54cffa48de8b2e6ce48ddc5e97fb5950b0faa27576f385"]}]

That doesn’t look helpful. Proceed?

bash-3.2$ pipenv-resolver 'autobahn[encryption,accelerate,asyncio,serialization]' --verbose --clear 2> pbcopy
Using pip: -i https://pypi.python.org/simple

                          ROUND 1
Current constraints:
  autobahn[accelerate,asyncio,encryption,serialization]

Finding the best candidates:
  found candidate autobahn[accelerate,asyncio,encryption,serialization]==18.3.1 (constraint was <any>)

Finding secondary dependencies:

New dependencies found in this round:
  adding ['cbor', '>=1.0.0', '[]']
  adding ['py-ubjson', '>=0.8.4', '[]']
  adding ['pynacl', '>=1.0.1', '[]']
  adding ['pyopenssl', '>=16.2.0', '[]']
  adding ['pyqrcode', '>=1.1', '[]']
  adding ['pytrie', '>=0.2', '[]']
  adding ['service-identity', '>=16.0.0', '[]']
  adding ['six', '>=1.10.0', '[]']
  adding ['txaio', '>=2.7.0', '[]']
  adding ['u-msgpack-python', '>=2.1', '[]']
  adding ['wsaccel', '>=0.6.2', '[]']
Removed dependencies in this round:
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 1: not stable

                          ROUND 2
Current constraints:
  autobahn[accelerate,asyncio,encryption,serialization]
  cbor>=1.0.0; extra == "serialization"
  py-ubjson>=0.8.4; extra == "serialization"
  pynacl>=1.0.1; extra == "encryption"
  pyopenssl>=16.2.0; extra == "encryption"
  pyqrcode>=1.1; extra == "encryption"
  pytrie>=0.2; extra == "encryption"
  service-identity>=16.0.0; extra == "encryption"
  six>=1.10.0
  txaio>=2.7.0
  u-msgpack-python>=2.1; extra == "serialization"
  wsaccel>=0.6.2; extra == "accelerate"

Finding the best candidates:
  found candidate autobahn[accelerate,asyncio,encryption,serialization]==18.3.1 (constraint was <any>)
  found candidate cbor==1.0.0 (constraint was >=1.0.0)
  found candidate py-ubjson==0.11.0 (constraint was >=0.8.4)
  found candidate pynacl==1.2.1 (constraint was >=1.0.1)
  found candidate pyopenssl==17.5.0 (constraint was >=16.2.0)
  found candidate pyqrcode==1.2.1 (constraint was >=1.1)
  found candidate pytrie==0.3 (constraint was >=0.2)
  found candidate service-identity==17.0.0 (constraint was >=16.0.0)
  found candidate six==1.11.0 (constraint was >=1.10.0)
  found candidate txaio==2.9.0 (constraint was >=2.7.0)
  found candidate u-msgpack-python==2.4.1 (constraint was >=2.1)
  found candidate wsaccel==0.6.2 (constraint was >=0.6.2)

Finding secondary dependencies:
  txaio==2.9.0 not in cache, need to check index
  txaio==2.9.0              requires six
  six==1.11.0 not in cache, need to check index
  six==1.11.0               requires -

New dependencies found in this round:
  adding ['attrs', '', '[]']
  adding ['cffi', '>=1.4.1', '[]']
  adding ['cryptography', '>=2.1.4', '[]']
  adding ['pyasn1', '', '[]']
  adding ['pyasn1-modules', '', '[]']
  adding ['pyopenssl', '>=0.12,>=16.2.0', '[]']
  adding ['six', '>=1.10.0,>=1.5.2', '[]']
  adding ['sortedcontainers', '', '[]']
Removed dependencies in this round:
  removing ['pyopenssl', '>=16.2.0', '[]']
  removing ['six', '>=1.10.0', '[]']
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 2: not stable

                          ROUND 3
Current constraints:
  attrs
  autobahn[accelerate,asyncio,encryption,serialization]
  cbor>=1.0.0; extra == "serialization"
  cffi>=1.4.1
  cryptography>=2.1.4
  py-ubjson>=0.8.4; extra == "serialization"
  pyasn1
  pyasn1-modules
  pynacl>=1.0.1; extra == "encryption"
  pyopenssl>=0.12,>=16.2.0; extra == "encryption"
  pyqrcode>=1.1; extra == "encryption"
  pytrie>=0.2; extra == "encryption"
  service-identity>=16.0.0; extra == "encryption"
  six>=1.10.0,>=1.5.2
  sortedcontainers
  txaio>=2.7.0
  u-msgpack-python>=2.1; extra == "serialization"
  wsaccel>=0.6.2; extra == "accelerate"

Finding the best candidates:
  found candidate attrs==17.4.0 (constraint was <any>)
  found candidate autobahn[accelerate,asyncio,encryption,serialization]==18.3.1 (constraint was <any>)
  found candidate cbor==1.0.0 (constraint was >=1.0.0)
  found candidate cffi==1.11.5 (constraint was >=1.4.1)
  found candidate cryptography==2.1.4 (constraint was >=2.1.4)
  found candidate py-ubjson==0.11.0 (constraint was >=0.8.4)
  found candidate pyasn1==0.4.2 (constraint was <any>)
  found candidate pyasn1-modules==0.2.1 (constraint was <any>)
  found candidate pynacl==1.2.1 (constraint was >=1.0.1)
  found candidate pyopenssl==17.5.0 (constraint was >=0.12,>=16.2.0)
  found candidate pyqrcode==1.2.1 (constraint was >=1.1)
  found candidate pytrie==0.3 (constraint was >=0.2)
  found candidate service-identity==17.0.0 (constraint was >=16.0.0)
  found candidate six==1.11.0 (constraint was >=1.10.0,>=1.5.2)
  found candidate sortedcontainers==1.5.9 (constraint was <any>)
  found candidate txaio==2.9.0 (constraint was >=2.7.0)
  found candidate u-msgpack-python==2.4.1 (constraint was >=2.1)
  found candidate wsaccel==0.6.2 (constraint was >=0.6.2)

Finding secondary dependencies:
  attrs==17.4.0 not in cache, need to check index
  attrs==17.4.0             requires -
  pyopenssl==17.5.0 not in cache, need to check index
  pyopenssl==17.5.0         requires cryptography>=2.1.4, six>=1.5.2
  pyasn1-modules==0.2.1 not in cache, need to check index
  pyasn1-modules==0.2.1     requires pyasn1<0.5.0,>=0.4.1
  cffi==1.11.5 not in cache, need to check index
  cffi==1.11.5              requires pycparser
  six==1.11.0               requires -
  pyasn1==0.4.2 not in cache, need to check index
  pyasn1==0.4.2             requires -
  sortedcontainers==1.5.9 not in cache, need to check index
  sortedcontainers==1.5.9   requires -
  cryptography==2.1.4 not in cache, need to check index
  cryptography==2.1.4       requires asn1crypto>=0.21.0, cffi>=1.7; platform_python_implementation != "PyPy"; platform_python_implementation != "PyPy", idna>=2.1, six>=1.4.1
  txaio==2.9.0              requires six

New dependencies found in this round:
  adding ['asn1crypto', '>=0.21.0', '[]']
  adding ['cffi', '>=1.4.1,>=1.7', '[]']
  adding ['idna', '>=2.1', '[]']
  adding ['pyasn1', '<0.5.0,>=0.4.1', '[]']
  adding ['pycparser', '', '[]']
  adding ['six', '>=1.10.0,>=1.4.1,>=1.5.2', '[]']
Removed dependencies in this round:
  removing ['cffi', '>=1.4.1', '[]']
  removing ['pyasn1', '', '[]']
  removing ['six', '>=1.10.0,>=1.5.2', '[]']
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 3: not stable

                          ROUND 4
Current constraints:
  asn1crypto>=0.21.0
  attrs
  autobahn[accelerate,asyncio,encryption,serialization]
  cbor>=1.0.0; extra == "serialization"
  cffi>=1.4.1,>=1.7
  cryptography>=2.1.4
  idna>=2.1
  py-ubjson>=0.8.4; extra == "serialization"
  pyasn1<0.5.0,>=0.4.1
  pyasn1-modules
  pycparser
  pynacl>=1.0.1; extra == "encryption"
  pyopenssl>=0.12,>=16.2.0; extra == "encryption"
  pyqrcode>=1.1; extra == "encryption"
  pytrie>=0.2; extra == "encryption"
  service-identity>=16.0.0; extra == "encryption"
  six>=1.10.0,>=1.4.1,>=1.5.2
  sortedcontainers
  txaio>=2.7.0
  u-msgpack-python>=2.1; extra == "serialization"
  wsaccel>=0.6.2; extra == "accelerate"

Finding the best candidates:
  found candidate asn1crypto==0.24.0 (constraint was >=0.21.0)
  found candidate attrs==17.4.0 (constraint was <any>)
  found candidate autobahn[accelerate,asyncio,encryption,serialization]==18.3.1 (constraint was <any>)
  found candidate cbor==1.0.0 (constraint was >=1.0.0)
  found candidate cffi==1.11.5 (constraint was >=1.4.1,>=1.7)
  found candidate cryptography==2.1.4 (constraint was >=2.1.4)
  found candidate idna==2.6 (constraint was >=2.1)
  found candidate py-ubjson==0.11.0 (constraint was >=0.8.4)
  found candidate pyasn1==0.4.2 (constraint was >=0.4.1,<0.5.0)
  found candidate pyasn1-modules==0.2.1 (constraint was <any>)
  found candidate pycparser==2.18 (constraint was <any>)
  found candidate pynacl==1.2.1 (constraint was >=1.0.1)
  found candidate pyopenssl==17.5.0 (constraint was >=0.12,>=16.2.0)
  found candidate pyqrcode==1.2.1 (constraint was >=1.1)
  found candidate pytrie==0.3 (constraint was >=0.2)
  found candidate service-identity==17.0.0 (constraint was >=16.0.0)
  found candidate six==1.11.0 (constraint was >=1.10.0,>=1.4.1,>=1.5.2)
  found candidate sortedcontainers==1.5.9 (constraint was <any>)
  found candidate txaio==2.9.0 (constraint was >=2.7.0)
  found candidate u-msgpack-python==2.4.1 (constraint was >=2.1)
  found candidate wsaccel==0.6.2 (constraint was >=0.6.2)

Finding secondary dependencies:
  attrs==17.4.0             requires -
  pycparser==2.18 not in cache, need to check index
  pycparser==2.18           requires -
  txaio==2.9.0              requires six
  pyopenssl==17.5.0         requires cryptography>=2.1.4, six>=1.5.2
  six==1.11.0               requires -
  cryptography==2.1.4       requires asn1crypto>=0.21.0, cffi>=1.7; platform_python_implementation != "PyPy"; platform_python_implementation != "PyPy", idna>=2.1, six>=1.4.1
  pyasn1==0.4.2             requires -
  pyasn1-modules==0.2.1     requires pyasn1<0.5.0,>=0.4.1
  idna==2.6 not in cache, need to check index
  idna==2.6                 requires -
  sortedcontainers==1.5.9   requires -
  asn1crypto==0.24.0 not in cache, need to check index
  asn1crypto==0.24.0        requires -
------------------------------------------------------------
Result of round 4: stable, done
RESULTS:
[{"name": "attrs", "version": "17.4.0", "hashes": ["sha256:a17a9573a6f475c99b551c0e0a812707ddda1ec9653bed04c13841404ed6f450", "sha256:1c7960ccfd6a005cd9f7ba884e6316b5e430a3f1a6c37c5f87d8b43f83b54ec9"]}, {"name": "cffi", "version": "1.11.5", "hashes": ["sha256:1b0493c091a1898f1136e3f4f991a784437fac3673780ff9de3bcf46c80b6b50", "sha256:87f37fe5130574ff76c17cab61e7d2538a16f843bb7bca8ebbc4b12de3078596", "sha256:1553d1e99f035ace1c0544050622b7bc963374a00c467edafac50ad7bd276aef", "sha256:151b7eefd035c56b2b2e1eb9963c90c6302dc15fbd8c1c0a83a163ff2c7d7743", "sha256:edabd457cd23a02965166026fd9bfd196f4324fe6032e866d0f3bd0301cd486f", "sha256:ba5e697569f84b13640c9e193170e89c13c6244c24400fc57e88724ef610cd31", "sha256:79f9b6f7c46ae1f8ded75f68cf8ad50e5729ed4d590c74840471fc2823457d04", "sha256:b0f7d4a3df8f06cf49f9f121bead236e328074de6449866515cea4907bbc63d6", "sha256:4c91af6e967c2015729d3e69c2e51d92f9898c330d6a851bf8f121236f3defd3", "sha256:7a33145e04d44ce95bcd71e522b478d282ad0eafaf34fe1ec5bbd73e662f22b6", "sha256:95d5251e4b5ca00061f9d9f3d6fe537247e145a8524ae9fd30a2f8fbce993b5b", "sha256:b75110fb114fa366b29a027d0c9be3709579602ae111ff61674d28c93606acca", "sha256:ae5e35a2c189d397b91034642cb0eab0e346f776ec2eb44a49a459e6615d6e2e", "sha256:fdf1c1dc5bafc32bc5d08b054f94d659422b05aba244d6be4ddc1c72d9aa70fb", "sha256:9d1d3e63a4afdc29bd76ce6aa9d58c771cd1599fbba8cf5057e7860b203710dd", "sha256:be2a9b390f77fd7676d80bc3cdc4f8edb940d8c198ed2d8c0be1319018c778e1", "sha256:ed01918d545a38998bfa5902c7c00e0fee90e957ce036a4000a88e3fe2264917", "sha256:857959354ae3a6fa3da6651b966d13b0a8bed6bbc87a0de7b38a549db1d2a359", "sha256:2ba8a45822b7aee805ab49abfe7eec16b90587f7f26df20c71dd89e45a97076f", "sha256:a36c5c154f9d42ec176e6e620cb0dd275744aa1d804786a71ac37dc3661a5e95", "sha256:e55e22ac0a30023426564b1059b035973ec82186ddddbac867078435801c7801", "sha256:3eb6434197633b7748cea30bf0ba9f66727cdce45117a712b29a443943733257", "sha256:ecbb7b01409e9b782df5ded849c178a0aa7c906cf8c5a67368047daab282b184", "sha256:770f3782b31f50b68627e22f91cb182c48c47c02eb405fd689472aa7b7aa16dc", "sha256:d5d8555d9bfc3f02385c1c37e9f998e2011f0db4f90e250e5bc0c0a85a813085", "sha256:3c85641778460581c42924384f5e68076d724ceac0f267d66c757f7535069c93", "sha256:e90f17980e6ab0f3c2f3730e56d1fe9bcba1891eeea58966e89d352492cc74f4"], "markers": "platform_python_implementation != 'PyPy'"}, {"name": "service-identity", "version": "17.0.0", "hashes": ["sha256:0e76f3c042cc0f5c7e6da002cf646f59dc4023962d1d1166343ce53bdad39e17", "sha256:4001fbb3da19e0df22c47a06d29681a398473af4aa9d745eca525b3b2c2302ab"]}, {"name": "u-msgpack-python", "version": "2.4.1", "hashes": ["sha256:4b509782648fc563f85cef03887389c7fba3b077a47920a13d3d4ea78652ffd2", "sha256:2f31fc1b6dd8632c230ea7012470e40f77119f20999274dda6f1afa9c305e590"]}, {"name": "pytrie", "version": "0.3", "hashes": ["sha256:0c1bd0cb7c301b193da4bcf31bdf68bbdbea88be4bea5f680caecc56d9b74020"]}, {"name": "wsaccel", "version": "0.6.2", "hashes": ["sha256:425706acf0724d2f6bfa391ec37b4ef121d3432c956029de3cea4e101c218e0c"]}, {"name": "autobahn", "version": "18.3.1", "hashes": ["sha256:13199ac8e75bde47e8c2468386ce95c2489d3c7ef3eb25ef9f53094f8a2a5f0f", "sha256:fc1d38227bb44a453b54cffa48de8b2e6ce48ddc5e97fb5950b0faa27576f385"]}, {"name": "pycparser", "version": "2.18", "hashes": ["sha256:99a8ca03e29851d96616ad0404b4aad7d9ee16f25c9f9708a11faf2810f7b226"]}, {"name": "txaio", "version": "2.9.0", "hashes": ["sha256:31fcc61962fef04841968a516abc20891a9387c91be4db75c0a0a092b191006e", "sha256:dfc3a7d04b4b484ae5ff241affab5bb01306b1e950dd6f54fd036cfca94345d0"]}, {"name": "pyasn1-modules", "version": "0.2.1", "hashes": ["sha256:b1f395cae2d669e0830cb023aa86f9f283b7a9aa32317d7f80d8e78aa2745812", "sha256:854700bbdd01394e2ada9c1bfbd0ed9f5d0c551350dbbd023e88b11d2771ae06", "sha256:598a6004ec26a8ab40a39ea955068cf2a3949ad9c0030da970f2e1ca4c9f1cc9", "sha256:f53fe5bcebdf318f51399b250fe8325ef3a26d927f012cc0c8e0f9e9af7f9deb", "sha256:47fb6757ab78fe966e7c58b2030b546854f78416d653163f0ce9290cf2278e8b", "sha256:041e9fbafac548d095f5b6c3b328b80792f006196e15a232b731a83c93d59493", "sha256:0cea139045c38f84abaa803bcb4b5e8775ea12a42af10019d942f227acc426c3", "sha256:0cdca76a68dcb701fff58c397de0ef9922b472b1cb3ea9695ca19d03f1869787", "sha256:72fd8b0c11191da088147c6e4678ec53e573923ecf60b57eeac9e97433e09fc2", "sha256:c6747146e95d2b14cc2a8399b2b0bde3f93778f8f9ec704690d2b589c376c137", "sha256:0f2e50d20bc670be170966638fa0ae603f0bc9ed6ebe8e97a6d1d4cef30cc889", "sha256:af00ea8f2022b6287dc375b2c70f31ab5af83989fc6fe9eacd4976ce26cd7ccc"]}, {"name": "pyopenssl", "version": "17.5.0", "hashes": ["sha256:07a2de1a54de07448732a81e38a55df7da109b2f47f599f8bb35b0cbec69d4bd", "sha256:2c10cfba46a52c0b0950118981d61e72c1e5b1aac451ca1bc77de1a679456773"]}, {"name": "six", "version": "1.11.0", "hashes": ["sha256:832dc0e10feb1aa2c68dcc57dbb658f1c7e65b9b61af69048abc87a2db00a0eb", "sha256:70e8a77beed4562e7f14fe23a786b54f6296e34344c23bc42f07b15018ff98e9"]}, {"name": "cryptography", "version": "2.1.4", "hashes": ["sha256:69285f5615507b6625f89ea1048addd1d9218585fb886eb90bdebb1d2b2d26f5", "sha256:6cb1224da391fa90f1be524eafb375b62baf8d3df9690b32e8cc475ccfccee5e", "sha256:4f385ee7d39ee1ed74f1d6b1da03d0734ea82855a7b28a9e6e88c4091bc58664", "sha256:a5f2c681fd040ed648513939a1dd2242af19bd5e9e79e53b6dcfa33bdae61217", "sha256:fc2208d95d9ecc8032f5e38330d5ace2e3b0b998e42b08c30c35b2ab3a4a3bc8", "sha256:0d39a93cf25edeae1f796bbc5960e587f34513a852564f6345ea4491a86c5997", "sha256:41f94194ae78f83fd94ca94fb8ad65f92210a76a2421169ffa5c33c3ec7605f4", "sha256:7a2409f1564c84bcf2563d379c9b6148c5bc6b0ae46e109f6a7b4bebadf551df", "sha256:55555d784cfdf9033e81f044c0df04babed2aa141213765d960d233b0139e353", "sha256:9a47a80f65f4feaaf8415a40c339806c7d7d867152ddccc6ca87f707c8b7b565", "sha256:6fb22f63e17813f3d1d8e30dd1e249e2c34233ba1d3de977fd31cb5db764c7d0", "sha256:ee245f185fae723133511e2450be08a66c2eebb53ad27c0c19b228029f4748a5", "sha256:9a2945efcff84830c8e237ab037d0269380d75d400a89cc9e5628e52647e21be", "sha256:2cfcee8829c5dec55597826d52c26bc26e7ce39adb4771584459d0636b0b7108", "sha256:33b564196dcd563e309a0b07444e31611368afe3a3822160c046f5e4c3b5cdd7", "sha256:18d0b0fc21f39b35ea469a82584f55eeecec1f65a92d85af712c425bdef627b3", "sha256:d18df9cf3f3212df28d445ea82ce702c4d7a35817ef7a38ee38879ffa8f7e857", "sha256:b984523d28737e373c7c35c8b6db6001537609d47534892de189bebebaa42a47", "sha256:27a208b9600166976182351174948e128818e7fc95cbdba18143f3106a211546", "sha256:28e4e9a97713aa47b5ef9c5003def2eb58aec89781ef3ef82b1c2916a8b0639b", "sha256:a3c180d12ffb1d8ee5b33a514a5bcb2a9cc06cc89aa74038015591170c82f55d", "sha256:8487524a1212223ca6dc7e2c8913024618f7ff29855c98869088e3818d5f6733", "sha256:e4d967371c5b6b2e67855066471d844c5d52d210c36c28d49a8507b96e2c5291"]}, {"name": "idna", "version": "2.6", "hashes": ["sha256:8c7309c718f94b3a625cb648ace320157ad16ff131ae0af362c9f21b80ef6ec4", "sha256:2c6a5de3089009e3da7c5dde64a141dbc8551d5b7f6cf4ed7c2568d0cc520a8f"]}, {"name": "sortedcontainers", "version": "1.5.9", "hashes": ["sha256:fb9e22cd6ee4b459f0d7b9b4189b19631031c72ac05715563139162014c13672", "sha256:844daced0f20d75c02ce53f373d048ea2e401ad8a7b3a4c43b2aa544b569efb3"]}, {"name": "pyqrcode", "version": "1.2.1", "hashes": ["sha256:fdbf7634733e56b72e27f9bce46e4550b75a3a2c420414035cae9d9d26b234d5", "sha256:1b2812775fa6ff5c527977c4cd2ccb07051ca7d0bc0aecf937a43864abe5eff6"]}, {"name": "pyasn1", "version": "0.4.2", "hashes": ["sha256:f81c96761fca60d64b1c9b79ec2e40cf9495a745cf570613079ef324aeb9672b", "sha256:7d626683e3d792cccc608da02498aff37ab4f3dafd8905d6bf755d11f9b26b43", "sha256:e85895087905c65b5b594eb91f7522664c85545b147d5f4d4e7b1b07da8dcbdc", "sha256:5a0db897b311d265cde49615cf783f1c78613138605cdd0f907ecfa5b2aba3ee", "sha256:d5cd6ed995dba16fad0c521cfe31cd2d68400b53fcc2bce93326829be73ab6d1", "sha256:a7efe807c4b83a859e2735c692b92ed7b567cfddc4163763412920041d876c2b", "sha256:b5a9ca48055b9a20f6d1b3d68e38692e5431c86a0f99ea602e61294e891fee5b", "sha256:c07d6e587b2f928366b1f67c09bda026a3e6fcc99e80a744dc67f8fca3895626", "sha256:d84c2aea3cf43780e9e6a19f4e4dddee9f6976519020e64e47c57e5c7a8c3dd2", "sha256:758cb50abddc03e4563fd9e7f03db56e3e87b58c0bd01247360326e5c0c7ffa5", "sha256:0d7f6e959fe53f3960a23d73f35e1fce61348b30915b6664309ca756de7c1f89", "sha256:d258b0a71994f7770599835249cece1caef3c70def868c4915e6e5ca49b67d15"]}, {"name": "cbor", "version": "1.0.0", "hashes": ["sha256:13225a262ddf5615cbd9fd55a76a0d53069d18b07d2e9f19c39e6acb8609bbb6"]}, {"name": "asn1crypto", "version": "0.24.0", "hashes": ["sha256:2f1adbb7546ed199e3c90ef23ec95c5cf3585bac7d11fb7eb562a3fe89c64e87", "sha256:9d5c20441baf0cb60a4ac34cc447c6c189024b6b4c6cd7877034f4965c464e49"]}, {"name": "pynacl", "version": "1.2.1", "hashes": ["sha256:0bfa0d94d2be6874e40f896e0a67e290749151e7de767c5aefbad1121cad7512", "sha256:1d33e775fab3f383167afb20b9927aaf4961b953d76eeb271a5703a6d756b65b", "sha256:eb2acabbd487a46b38540a819ef67e477a674481f84a82a7ba2234b9ba46f752", "sha256:14339dc233e7a9dda80a3800e64e7ff89d0878ba23360eea24f1af1b13772cac", "sha256:cf6877124ae6a0698404e169b3ba534542cfbc43f939d46b927d956daf0a373a", "sha256:eeee629828d0eb4f6d98ac41e9a3a6461d114d1d0aa111a8931c049359298da0", "sha256:d0eb5b2795b7ee2cbcfcadacbe95a13afbda048a262bd369da9904fecb568975", "sha256:11aa4e141b2456ce5cecc19c130e970793fa3a2c2e6fbb8ad65b28f35aa9e6b6", "sha256:8ac1167195b32a8755de06efd5b2d2fe76fc864517dab66aaf65662cc59e1988", "sha256:d795f506bcc9463efb5ebb0f65ed77921dcc9e0a50499dedd89f208445de9ecb", "sha256:be71cd5fce04061e1f3d39597f93619c80cdd3558a6c9ba99a546f144a8d8101", "sha256:2a42b2399d0428619e58dac7734838102d35f6dcdee149e0088823629bf99fbb", "sha256:73a5a96fb5fbf2215beee2353a128d382dbca83f5341f0d3c750877a236569ef", "sha256:d8aaf7e5d6b0e0ef7d6dbf7abeb75085713d0100b4eb1a4e4e857de76d77ac45", "sha256:2dce05ac8b3c37b9e2f65eab56c544885607394753e9613fd159d5e2045c2d98", "sha256:f5ce9e26d25eb0b2d96f3ef0ad70e1d3ae89b5d60255c462252a3e456a48c053", "sha256:6453b0dae593163ffc6db6f9c9c1597d35c650598e2c39c0590d1757207a1ac2", "sha256:fabf73d5d0286f9e078774f3435601d2735c94ce9e514ac4fb945701edead7e4", "sha256:13bdc1fe084ff9ac7653ae5a924cae03bf4bb07c6667c9eb5b6eb3c570220776", "sha256:8f505f42f659012794414fa57c498404e64db78f1d98dfd40e318c569f3c783b", "sha256:04e30e5bdeeb2d5b34107f28cd2f5bbfdc6c616f3be88fc6f53582ff1669eeca", "sha256:8abb4ef79161a5f58848b30ab6fb98d8c466da21fdd65558ce1d7afc02c70b5f", "sha256:e0d38fa0a75f65f556fb912f2c6790d1fa29b7dd27a1d9cc5591b281321eaaa9"]}, {"name": "py-ubjson", "version": "0.11.0", "hashes": ["sha256:81784e64936c12e218afc49ff4fb90702f298ac16848971d9570c87595860762"]}]
bash-3.2$ ls
Pipfile         mypackage.egg-info  setup.py
Pipfile.lock        pbcopy          t.py
bash-3.2$ mate pbcopy
bash: mate: command not found
bash-3.2$ exit
exit
(pipenv-Uf7eyyXP)  127   ³ pipenv-Uf7eyyXP  ~/L/M/c/r/p/pipenv   master $  test  mate pbcopy
(pipenv-Uf7eyyXP)   ³ pipenv-Uf7eyyXP  ~/L/M/c/r/p/pipenv   master $  test 
(pipenv-Uf7eyyXP)   ³ pipenv-Uf7eyyXP  ~/L/M/c/r/p/pipenv   master $  test  bash
bash-3.2$ pipenv-resolver 'autobahn[encryption,accelerate,asyncio,serialization]' --verbose --clear 1>&2 | pbcopy
Using pip: -i https://pypi.python.org/simple

                          ROUND 1
Current constraints:
  autobahn[accelerate,asyncio,encryption,serialization]

Finding the best candidates:
  found candidate autobahn[accelerate,asyncio,encryption,serialization]==18.3.1 (constraint was <any>)

Finding secondary dependencies:
INFO:pip.req.req_set:Collecting autobahn[accelerate,asyncio,encryption,serialization]==18.3.1
INFO:pip.download:Using cached autobahn-18.3.1-py2.py3-none-any.whl
INFO:pip.download:Saved /Volumes/KR/Library/Caches/pipenv/wheels/autobahn-18.3.1-py2.py3-none-any.whl

New dependencies found in this round:
  adding ['cbor', '>=1.0.0', '[]']
  adding ['py-ubjson', '>=0.8.4', '[]']
  adding ['pynacl', '>=1.0.1', '[]']
  adding ['pyopenssl', '>=16.2.0', '[]']
  adding ['pyqrcode', '>=1.1', '[]']
  adding ['pytrie', '>=0.2', '[]']
  adding ['service-identity', '>=16.0.0', '[]']
  adding ['six', '>=1.10.0', '[]']
  adding ['txaio', '>=2.7.0', '[]']
  adding ['u-msgpack-python', '>=2.1', '[]']
  adding ['wsaccel', '>=0.6.2', '[]']
Removed dependencies in this round:
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 1: not stable

                          ROUND 2
Current constraints:
  autobahn[accelerate,asyncio,encryption,serialization]
  cbor>=1.0.0; extra == "serialization"
  py-ubjson>=0.8.4; extra == "serialization"
  pynacl>=1.0.1; extra == "encryption"
  pyopenssl>=16.2.0; extra == "encryption"
  pyqrcode>=1.1; extra == "encryption"
  pytrie>=0.2; extra == "encryption"
  service-identity>=16.0.0; extra == "encryption"
  six>=1.10.0
  txaio>=2.7.0
  u-msgpack-python>=2.1; extra == "serialization"
  wsaccel>=0.6.2; extra == "accelerate"

Finding the best candidates:
  found candidate autobahn[accelerate,asyncio,encryption,serialization]==18.3.1 (constraint was <any>)
  found candidate cbor==1.0.0 (constraint was >=1.0.0)
  found candidate py-ubjson==0.11.0 (constraint was >=0.8.4)
  found candidate pynacl==1.2.1 (constraint was >=1.0.1)
  found candidate pyopenssl==17.5.0 (constraint was >=16.2.0)
  found candidate pyqrcode==1.2.1 (constraint was >=1.1)
  found candidate pytrie==0.3 (constraint was >=0.2)
  found candidate service-identity==17.0.0 (constraint was >=16.0.0)
  found candidate six==1.11.0 (constraint was >=1.10.0)
  found candidate txaio==2.9.0 (constraint was >=2.7.0)
  found candidate u-msgpack-python==2.4.1 (constraint was >=2.1)
  found candidate wsaccel==0.6.2 (constraint was >=0.6.2)

Finding secondary dependencies:
INFO:pip.req.req_set:Collecting cbor==1.0.0
INFO:pip.download:Using cached cbor-1.0.0.tar.gz
INFO:pip.download:Saved /Volumes/KR/Library/Caches/pipenv/pkgs/cbor-1.0.0.tar.gz
WARNING:pip.req.req_set:Ignoring cbor: markers 'extra == "serialization"' don't match your environment
INFO:pip.req.req_set:Collecting autobahn[accelerate,asyncio,encryption,serialization]==18.3.1
INFO:pip.download:File was already downloaded /Volumes/KR/Library/Caches/pipenv/wheels/autobahn-18.3.1-py2.py3-none-any.whl
  six==1.11.0 not in cache, need to check index
INFO:pip.req.req_set:Collecting six==1.11.0
INFO:pip.download:Using cached six-1.11.0-py2.py3-none-any.whl
INFO:pip.download:Saved /Volumes/KR/Library/Caches/pipenv/wheels/six-1.11.0-py2.py3-none-any.whl
  six==1.11.0               requires -
INFO:pip.req.req_set:Collecting service-identity==17.0.0
INFO:pip.download:Using cached service_identity-17.0.0-py2.py3-none-any.whl
INFO:pip.download:Saved /Volumes/KR/Library/Caches/pipenv/wheels/service_identity-17.0.0-py2.py3-none-any.whl
WARNING:pip.req.req_set:Ignoring service-identity: markers 'extra == "encryption"' don't match your environment
  txaio==2.9.0 not in cache, need to check index
INFO:pip.req.req_set:Collecting txaio==2.9.0
INFO:pip.download:Using cached txaio-2.9.0-py2.py3-none-any.whl
INFO:pip.download:Saved /Volumes/KR/Library/Caches/pipenv/wheels/txaio-2.9.0-py2.py3-none-any.whl
  txaio==2.9.0              requires six
INFO:pip.req.req_set:Collecting pyqrcode==1.2.1
INFO:pip.download:Using cached PyQRCode-1.2.1.zip
INFO:pip.download:Saved /Volumes/KR/Library/Caches/pipenv/pkgs/PyQRCode-1.2.1.zip
WARNING:pip.req.req_set:Ignoring pyqrcode: markers 'extra == "encryption"' don't match your environment
INFO:pip.req.req_set:Collecting pytrie==0.3
INFO:pip.download:Using cached PyTrie-0.3.tar.gz
INFO:pip.download:Saved /Volumes/KR/Library/Caches/pipenv/pkgs/PyTrie-0.3.tar.gz
WARNING:pip.req.req_set:Ignoring pytrie: markers 'extra == "encryption"' don't match your environment
INFO:pip.req.req_set:Collecting pyopenssl==17.5.0
INFO:pip.download:Using cached pyOpenSSL-17.5.0-py2.py3-none-any.whl
INFO:pip.download:Saved /Volumes/KR/Library/Caches/pipenv/wheels/pyOpenSSL-17.5.0-py2.py3-none-any.whl
WARNING:pip.req.req_set:Ignoring pyopenssl: markers 'extra == "encryption"' don't match your environment
INFO:pip.req.req_set:Collecting wsaccel==0.6.2
INFO:pip.download:Using cached wsaccel-0.6.2.tar.gz
INFO:pip.download:Saved /Volumes/KR/Library/Caches/pipenv/pkgs/wsaccel-0.6.2.tar.gz
WARNING:pip.req.req_set:Ignoring wsaccel: markers 'extra == "accelerate"' don't match your environment
INFO:pip.req.req_set:Collecting u-msgpack-python==2.4.1
INFO:pip.download:Using cached u_msgpack_python-2.4.1-py2.py3-none-any.whl
INFO:pip.download:Saved /Volumes/KR/Library/Caches/pipenv/wheels/u_msgpack_python-2.4.1-py2.py3-none-any.whl
WARNING:pip.req.req_set:Ignoring u-msgpack-python: markers 'extra == "serialization"' don't match your environment
INFO:pip.req.req_set:Collecting pynacl==1.2.1
INFO:pip.download:Using cached PyNaCl-1.2.1-cp36-cp36m-macosx_10_6_intel.whl
INFO:pip.download:Saved /Volumes/KR/Library/Caches/pipenv/wheels/PyNaCl-1.2.1-cp36-cp36m-macosx_10_6_intel.whl
WARNING:pip.req.req_set:Ignoring pynacl: markers 'extra == "encryption"' don't match your environment
INFO:pip.req.req_set:Collecting py-ubjson==0.11.0
INFO:pip.download:Using cached py-ubjson-0.11.0.tar.gz
INFO:pip.download:Saved /Volumes/KR/Library/Caches/pipenv/pkgs/py-ubjson-0.11.0.tar.gz
WARNING:pip.req.req_set:Ignoring py-ubjson: markers 'extra == "serialization"' don't match your environment

New dependencies found in this round:
  adding ['attrs', '', '[]']
  adding ['cffi', '>=1.4.1', '[]']
  adding ['cryptography', '>=2.1.4', '[]']
  adding ['pyasn1', '', '[]']
  adding ['pyasn1-modules', '', '[]']
  adding ['pyopenssl', '>=0.12,>=16.2.0', '[]']
  adding ['six', '>=1.10.0,>=1.5.2', '[]']
  adding ['sortedcontainers', '', '[]']
Removed dependencies in this round:
  removing ['pyopenssl', '>=16.2.0', '[]']
  removing ['six', '>=1.10.0', '[]']
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 2: not stable

                          ROUND 3
Current constraints:
  attrs
  autobahn[accelerate,asyncio,encryption,serialization]
  cbor>=1.0.0; extra == "serialization"
  cffi>=1.4.1
  cryptography>=2.1.4
  py-ubjson>=0.8.4; extra == "serialization"
  pyasn1
  pyasn1-modules
  pynacl>=1.0.1; extra == "encryption"
  pyopenssl>=0.12,>=16.2.0; extra == "encryption"
  pyqrcode>=1.1; extra == "encryption"
  pytrie>=0.2; extra == "encryption"
  service-identity>=16.0.0; extra == "encryption"
  six>=1.10.0,>=1.5.2
  sortedcontainers
  txaio>=2.7.0
  u-msgpack-python>=2.1; extra == "serialization"
  wsaccel>=0.6.2; extra == "accelerate"

Finding the best candidates:
  found candidate attrs==17.4.0 (constraint was <any>)
  found candidate autobahn[accelerate,asyncio,encryption,serialization]==18.3.1 (constraint was <any>)
  found candidate cbor==1.0.0 (constraint was >=1.0.0)
  found candidate cffi==1.11.5 (constraint was >=1.4.1)
  found candidate cryptography==2.1.4 (constraint was >=2.1.4)
  found candidate py-ubjson==0.11.0 (constraint was >=0.8.4)
  found candidate pyasn1==0.4.2 (constraint was <any>)
  found candidate pyasn1-modules==0.2.1 (constraint was <any>)
  found candidate pynacl==1.2.1 (constraint was >=1.0.1)
  found candidate pyopenssl==17.5.0 (constraint was >=0.12,>=16.2.0)
  found candidate pyqrcode==1.2.1 (constraint was >=1.1)
  found candidate pytrie==0.3 (constraint was >=0.2)
  found candidate service-identity==17.0.0 (constraint was >=16.0.0)
  found candidate six==1.11.0 (constraint was >=1.10.0,>=1.5.2)
  found candidate sortedcontainers==1.5.9 (constraint was <any>)
  found candidate txaio==2.9.0 (constraint was >=2.7.0)
  found candidate u-msgpack-python==2.4.1 (constraint was >=2.1)
  found candidate wsaccel==0.6.2 (constraint was >=0.6.2)

Finding secondary dependencies:
INFO:pip.req.req_set:Collecting wsaccel==0.6.2
INFO:pip.download:File was already downloaded /Volumes/KR/Library/Caches/pipenv/pkgs/wsaccel-0.6.2.tar.gz
WARNING:pip.req.req_set:Ignoring wsaccel: markers 'extra == "accelerate"' don't match your environment
  cryptography==2.1.4 not in cache, need to check index
INFO:pip.req.req_set:Collecting cryptography==2.1.4
INFO:pip.download:Using cached cryptography-2.1.4-cp36-cp36m-macosx_10_6_intel.whl
INFO:pip.download:Saved /Volumes/KR/Library/Caches/pipenv/wheels/cryptography-2.1.4-cp36-cp36m-macosx_10_6_intel.whl
  cryptography==2.1.4       requires asn1crypto>=0.21.0, cffi>=1.7; platform_python_implementation != "PyPy"; platform_python_implementation != "PyPy", idna>=2.1, six>=1.4.1
  attrs==17.4.0 not in cache, need to check index
INFO:pip.req.req_set:Collecting attrs==17.4.0
INFO:pip.download:Using cached attrs-17.4.0-py2.py3-none-any.whl
INFO:pip.download:Saved /Volumes/KR/Library/Caches/pipenv/wheels/attrs-17.4.0-py2.py3-none-any.whl
  attrs==17.4.0             requires -
INFO:pip.req.req_set:Collecting py-ubjson==0.11.0
INFO:pip.download:File was already downloaded /Volumes/KR/Library/Caches/pipenv/pkgs/py-ubjson-0.11.0.tar.gz
WARNING:pip.req.req_set:Ignoring py-ubjson: markers 'extra == "serialization"' don't match your environment
INFO:pip.req.req_set:Collecting autobahn[accelerate,asyncio,encryption,serialization]==18.3.1
INFO:pip.download:File was already downloaded /Volumes/KR/Library/Caches/pipenv/wheels/autobahn-18.3.1-py2.py3-none-any.whl
  pyasn1-modules==0.2.1 not in cache, need to check index
INFO:pip.req.req_set:Collecting pyasn1-modules==0.2.1
INFO:pip.download:Using cached pyasn1_modules-0.2.1-py2.py3-none-any.whl
INFO:pip.download:Saved /Volumes/KR/Library/Caches/pipenv/wheels/pyasn1_modules-0.2.1-py2.py3-none-any.whl
  pyasn1-modules==0.2.1     requires pyasn1<0.5.0,>=0.4.1
INFO:pip.req.req_set:Collecting pynacl==1.2.1
INFO:pip.download:File was already downloaded /Volumes/KR/Library/Caches/pipenv/wheels/PyNaCl-1.2.1-cp36-cp36m-macosx_10_6_intel.whl
WARNING:pip.req.req_set:Ignoring pynacl: markers 'extra == "encryption"' don't match your environment
  six==1.11.0               requires -
  sortedcontainers==1.5.9 not in cache, need to check index
INFO:pip.req.req_set:Collecting sortedcontainers==1.5.9
INFO:pip.download:Using cached sortedcontainers-1.5.9-py2.py3-none-any.whl
INFO:pip.download:Saved /Volumes/KR/Library/Caches/pipenv/wheels/sortedcontainers-1.5.9-py2.py3-none-any.whl
  sortedcontainers==1.5.9   requires -
INFO:pip.req.req_set:Collecting pyqrcode==1.2.1
INFO:pip.download:File was already downloaded /Volumes/KR/Library/Caches/pipenv/pkgs/PyQRCode-1.2.1.zip
WARNING:pip.req.req_set:Ignoring pyqrcode: markers 'extra == "encryption"' don't match your environment
  pyasn1==0.4.2 not in cache, need to check index
INFO:pip.req.req_set:Collecting pyasn1==0.4.2
INFO:pip.download:Using cached pyasn1-0.4.2-py2.py3-none-any.whl
INFO:pip.download:Saved /Volumes/KR/Library/Caches/pipenv/wheels/pyasn1-0.4.2-py2.py3-none-any.whl
  pyasn1==0.4.2             requires -
  txaio==2.9.0              requires six
INFO:pip.req.req_set:Collecting service-identity==17.0.0
INFO:pip.download:File was already downloaded /Volumes/KR/Library/Caches/pipenv/wheels/service_identity-17.0.0-py2.py3-none-any.whl
WARNING:pip.req.req_set:Ignoring service-identity: markers 'extra == "encryption"' don't match your environment
INFO:pip.req.req_set:Collecting u-msgpack-python==2.4.1
INFO:pip.download:File was already downloaded /Volumes/KR/Library/Caches/pipenv/wheels/u_msgpack_python-2.4.1-py2.py3-none-any.whl
WARNING:pip.req.req_set:Ignoring u-msgpack-python: markers 'extra == "serialization"' don't match your environment
  pyopenssl==17.5.0 not in cache, need to check index
INFO:pip.req.req_set:Collecting pyopenssl==17.5.0
INFO:pip.download:File was already downloaded /Volumes/KR/Library/Caches/pipenv/wheels/pyOpenSSL-17.5.0-py2.py3-none-any.whl
  pyopenssl==17.5.0         requires cryptography>=2.1.4, six>=1.5.2
INFO:pip.req.req_set:Collecting pytrie==0.3
INFO:pip.download:File was already downloaded /Volumes/KR/Library/Caches/pipenv/pkgs/PyTrie-0.3.tar.gz
WARNING:pip.req.req_set:Ignoring pytrie: markers 'extra == "encryption"' don't match your environment
INFO:pip.req.req_set:Collecting cbor==1.0.0
INFO:pip.download:File was already downloaded /Volumes/KR/Library/Caches/pipenv/pkgs/cbor-1.0.0.tar.gz
WARNING:pip.req.req_set:Ignoring cbor: markers 'extra == "serialization"' don't match your environment
  cffi==1.11.5 not in cache, need to check index
INFO:pip.req.req_set:Collecting cffi==1.11.5
INFO:pip.download:Using cached cffi-1.11.5-cp36-cp36m-macosx_10_6_intel.whl
INFO:pip.download:Saved /Volumes/KR/Library/Caches/pipenv/wheels/cffi-1.11.5-cp36-cp36m-macosx_10_6_intel.whl
  cffi==1.11.5              requires pycparser

New dependencies found in this round:
  adding ['asn1crypto', '>=0.21.0', '[]']
  adding ['cffi', '>=1.4.1,>=1.7', '[]']
  adding ['idna', '>=2.1', '[]']
  adding ['pyasn1', '<0.5.0,>=0.4.1', '[]']
  adding ['pycparser', '', '[]']
  adding ['six', '>=1.10.0,>=1.4.1,>=1.5.2', '[]']
Removed dependencies in this round:
  removing ['cffi', '>=1.4.1', '[]']
  removing ['pyasn1', '', '[]']
  removing ['six', '>=1.10.0,>=1.5.2', '[]']
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 3: not stable

                          ROUND 4
Current constraints:
  asn1crypto>=0.21.0
  attrs
  autobahn[accelerate,asyncio,encryption,serialization]
  cbor>=1.0.0; extra == "serialization"
  cffi>=1.4.1,>=1.7
  cryptography>=2.1.4
  idna>=2.1
  py-ubjson>=0.8.4; extra == "serialization"
  pyasn1<0.5.0,>=0.4.1
  pyasn1-modules
  pycparser
  pynacl>=1.0.1; extra == "encryption"
  pyopenssl>=0.12,>=16.2.0; extra == "encryption"
  pyqrcode>=1.1; extra == "encryption"
  pytrie>=0.2; extra == "encryption"
  service-identity>=16.0.0; extra == "encryption"
  six>=1.10.0,>=1.4.1,>=1.5.2
  sortedcontainers
  txaio>=2.7.0
  u-msgpack-python>=2.1; extra == "serialization"
  wsaccel>=0.6.2; extra == "accelerate"

Finding the best candidates:
  found candidate asn1crypto==0.24.0 (constraint was >=0.21.0)
  found candidate attrs==17.4.0 (constraint was <any>)
  found candidate autobahn[accelerate,asyncio,encryption,serialization]==18.3.1 (constraint was <any>)
  found candidate cbor==1.0.0 (constraint was >=1.0.0)
  found candidate cffi==1.11.5 (constraint was >=1.4.1,>=1.7)
  found candidate cryptography==2.1.4 (constraint was >=2.1.4)
  found candidate idna==2.6 (constraint was >=2.1)
  found candidate py-ubjson==0.11.0 (constraint was >=0.8.4)
  found candidate pyasn1==0.4.2 (constraint was >=0.4.1,<0.5.0)
  found candidate pyasn1-modules==0.2.1 (constraint was <any>)
  found candidate pycparser==2.18 (constraint was <any>)
  found candidate pynacl==1.2.1 (constraint was >=1.0.1)
  found candidate pyopenssl==17.5.0 (constraint was >=0.12,>=16.2.0)
  found candidate pyqrcode==1.2.1 (constraint was >=1.1)
  found candidate pytrie==0.3 (constraint was >=0.2)
  found candidate service-identity==17.0.0 (constraint was >=16.0.0)
  found candidate six==1.11.0 (constraint was >=1.10.0,>=1.4.1,>=1.5.2)
  found candidate sortedcontainers==1.5.9 (constraint was <any>)
  found candidate txaio==2.9.0 (constraint was >=2.7.0)
  found candidate u-msgpack-python==2.4.1 (constraint was >=2.1)
  found candidate wsaccel==0.6.2 (constraint was >=0.6.2)

Finding secondary dependencies:
  txaio==2.9.0              requires six
  idna==2.6 not in cache, need to check index
INFO:pip.req.req_set:Collecting idna==2.6
INFO:pip.download:Using cached idna-2.6-py2.py3-none-any.whl
INFO:pip.download:Saved /Volumes/KR/Library/Caches/pipenv/wheels/idna-2.6-py2.py3-none-any.whl
  idna==2.6                 requires -
  cffi==1.11.5              requires pycparser
  pycparser==2.18 not in cache, need to check index
INFO:pip.req.req_set:Collecting pycparser==2.18
INFO:pip.download:Using cached pycparser-2.18.tar.gz
INFO:pip.download:Saved /Volumes/KR/Library/Caches/pipenv/pkgs/pycparser-2.18.tar.gz
  pycparser==2.18           requires -
  cryptography==2.1.4       requires asn1crypto>=0.21.0, cffi>=1.7; platform_python_implementation != "PyPy"; platform_python_implementation != "PyPy", idna>=2.1, six>=1.4.1
INFO:pip.req.req_set:Collecting pytrie==0.3
INFO:pip.download:File was already downloaded /Volumes/KR/Library/Caches/pipenv/pkgs/PyTrie-0.3.tar.gz
WARNING:pip.req.req_set:Ignoring pytrie: markers 'extra == "encryption"' don't match your environment
  pyasn1==0.4.2             requires -
INFO:pip.req.req_set:Collecting u-msgpack-python==2.4.1
INFO:pip.download:File was already downloaded /Volumes/KR/Library/Caches/pipenv/wheels/u_msgpack_python-2.4.1-py2.py3-none-any.whl
WARNING:pip.req.req_set:Ignoring u-msgpack-python: markers 'extra == "serialization"' don't match your environment
  asn1crypto==0.24.0 not in cache, need to check index
INFO:pip.req.req_set:Collecting asn1crypto==0.24.0
INFO:pip.download:Using cached asn1crypto-0.24.0-py2.py3-none-any.whl
INFO:pip.download:Saved /Volumes/KR/Library/Caches/pipenv/wheels/asn1crypto-0.24.0-py2.py3-none-any.whl
  asn1crypto==0.24.0        requires -
  pyopenssl==17.5.0         requires cryptography>=2.1.4, six>=1.5.2
INFO:pip.req.req_set:Collecting service-identity==17.0.0
INFO:pip.download:File was already downloaded /Volumes/KR/Library/Caches/pipenv/wheels/service_identity-17.0.0-py2.py3-none-any.whl
WARNING:pip.req.req_set:Ignoring service-identity: markers 'extra == "encryption"' don't match your environment
  six==1.11.0               requires -
INFO:pip.req.req_set:Collecting pyqrcode==1.2.1
INFO:pip.download:File was already downloaded /Volumes/KR/Library/Caches/pipenv/pkgs/PyQRCode-1.2.1.zip
WARNING:pip.req.req_set:Ignoring pyqrcode: markers 'extra == "encryption"' don't match your environment
INFO:pip.req.req_set:Collecting py-ubjson==0.11.0
INFO:pip.download:File was already downloaded /Volumes/KR/Library/Caches/pipenv/pkgs/py-ubjson-0.11.0.tar.gz
WARNING:pip.req.req_set:Ignoring py-ubjson: markers 'extra == "serialization"' don't match your environment
INFO:pip.req.req_set:Collecting cbor==1.0.0
INFO:pip.download:File was already downloaded /Volumes/KR/Library/Caches/pipenv/pkgs/cbor-1.0.0.tar.gz
WARNING:pip.req.req_set:Ignoring cbor: markers 'extra == "serialization"' don't match your environment
  pyasn1-modules==0.2.1     requires pyasn1<0.5.0,>=0.4.1
  attrs==17.4.0             requires -
INFO:pip.req.req_set:Collecting pynacl==1.2.1
INFO:pip.download:File was already downloaded /Volumes/KR/Library/Caches/pipenv/wheels/PyNaCl-1.2.1-cp36-cp36m-macosx_10_6_intel.whl
WARNING:pip.req.req_set:Ignoring pynacl: markers 'extra == "encryption"' don't match your environment
  sortedcontainers==1.5.9   requires -
INFO:pip.req.req_set:Collecting autobahn[accelerate,asyncio,encryption,serialization]==18.3.1
INFO:pip.download:File was already downloaded /Volumes/KR/Library/Caches/pipenv/wheels/autobahn-18.3.1-py2.py3-none-any.whl
INFO:pip.req.req_set:Collecting wsaccel==0.6.2
INFO:pip.download:File was already downloaded /Volumes/KR/Library/Caches/pipenv/pkgs/wsaccel-0.6.2.tar.gz
WARNING:pip.req.req_set:Ignoring wsaccel: markers 'extra == "accelerate"' don't match your environment
------------------------------------------------------------
Result of round 4: stable, done
RESULTS:
[{"name": "py-ubjson", "version": "0.11.0", "hashes": ["sha256:81784e64936c12e218afc49ff4fb90702f298ac16848971d9570c87595860762"]}, {"name": "txaio", "version": "2.9.0", "hashes": ["sha256:31fcc61962fef04841968a516abc20891a9387c91be4db75c0a0a092b191006e", "sha256:dfc3a7d04b4b484ae5ff241affab5bb01306b1e950dd6f54fd036cfca94345d0"]}, {"name": "cbor", "version": "1.0.0", "hashes": ["sha256:13225a262ddf5615cbd9fd55a76a0d53069d18b07d2e9f19c39e6acb8609bbb6"]}, {"name": "pyasn1-modules", "version": "0.2.1", "hashes": ["sha256:b1f395cae2d669e0830cb023aa86f9f283b7a9aa32317d7f80d8e78aa2745812", "sha256:854700bbdd01394e2ada9c1bfbd0ed9f5d0c551350dbbd023e88b11d2771ae06", "sha256:598a6004ec26a8ab40a39ea955068cf2a3949ad9c0030da970f2e1ca4c9f1cc9", "sha256:f53fe5bcebdf318f51399b250fe8325ef3a26d927f012cc0c8e0f9e9af7f9deb", "sha256:47fb6757ab78fe966e7c58b2030b546854f78416d653163f0ce9290cf2278e8b", "sha256:041e9fbafac548d095f5b6c3b328b80792f006196e15a232b731a83c93d59493", "sha256:0cea139045c38f84abaa803bcb4b5e8775ea12a42af10019d942f227acc426c3", "sha256:0cdca76a68dcb701fff58c397de0ef9922b472b1cb3ea9695ca19d03f1869787", "sha256:72fd8b0c11191da088147c6e4678ec53e573923ecf60b57eeac9e97433e09fc2", "sha256:c6747146e95d2b14cc2a8399b2b0bde3f93778f8f9ec704690d2b589c376c137", "sha256:0f2e50d20bc670be170966638fa0ae603f0bc9ed6ebe8e97a6d1d4cef30cc889", "sha256:af00ea8f2022b6287dc375b2c70f31ab5af83989fc6fe9eacd4976ce26cd7ccc"]}, {"name": "idna", "version": "2.6", "hashes": ["sha256:8c7309c718f94b3a625cb648ace320157ad16ff131ae0af362c9f21b80ef6ec4", "sha256:2c6a5de3089009e3da7c5dde64a141dbc8551d5b7f6cf4ed7c2568d0cc520a8f"]}, {"name": "cffi", "version": "1.11.5", "hashes": ["sha256:1b0493c091a1898f1136e3f4f991a784437fac3673780ff9de3bcf46c80b6b50", "sha256:87f37fe5130574ff76c17cab61e7d2538a16f843bb7bca8ebbc4b12de3078596", "sha256:1553d1e99f035ace1c0544050622b7bc963374a00c467edafac50ad7bd276aef", "sha256:151b7eefd035c56b2b2e1eb9963c90c6302dc15fbd8c1c0a83a163ff2c7d7743", "sha256:edabd457cd23a02965166026fd9bfd196f4324fe6032e866d0f3bd0301cd486f", "sha256:ba5e697569f84b13640c9e193170e89c13c6244c24400fc57e88724ef610cd31", "sha256:79f9b6f7c46ae1f8ded75f68cf8ad50e5729ed4d590c74840471fc2823457d04", "sha256:b0f7d4a3df8f06cf49f9f121bead236e328074de6449866515cea4907bbc63d6", "sha256:4c91af6e967c2015729d3e69c2e51d92f9898c330d6a851bf8f121236f3defd3", "sha256:7a33145e04d44ce95bcd71e522b478d282ad0eafaf34fe1ec5bbd73e662f22b6", "sha256:95d5251e4b5ca00061f9d9f3d6fe537247e145a8524ae9fd30a2f8fbce993b5b", "sha256:b75110fb114fa366b29a027d0c9be3709579602ae111ff61674d28c93606acca", "sha256:ae5e35a2c189d397b91034642cb0eab0e346f776ec2eb44a49a459e6615d6e2e", "sha256:fdf1c1dc5bafc32bc5d08b054f94d659422b05aba244d6be4ddc1c72d9aa70fb", "sha256:9d1d3e63a4afdc29bd76ce6aa9d58c771cd1599fbba8cf5057e7860b203710dd", "sha256:be2a9b390f77fd7676d80bc3cdc4f8edb940d8c198ed2d8c0be1319018c778e1", "sha256:ed01918d545a38998bfa5902c7c00e0fee90e957ce036a4000a88e3fe2264917", "sha256:857959354ae3a6fa3da6651b966d13b0a8bed6bbc87a0de7b38a549db1d2a359", "sha256:2ba8a45822b7aee805ab49abfe7eec16b90587f7f26df20c71dd89e45a97076f", "sha256:a36c5c154f9d42ec176e6e620cb0dd275744aa1d804786a71ac37dc3661a5e95", "sha256:e55e22ac0a30023426564b1059b035973ec82186ddddbac867078435801c7801", "sha256:3eb6434197633b7748cea30bf0ba9f66727cdce45117a712b29a443943733257", "sha256:ecbb7b01409e9b782df5ded849c178a0aa7c906cf8c5a67368047daab282b184", "sha256:770f3782b31f50b68627e22f91cb182c48c47c02eb405fd689472aa7b7aa16dc", "sha256:d5d8555d9bfc3f02385c1c37e9f998e2011f0db4f90e250e5bc0c0a85a813085", "sha256:3c85641778460581c42924384f5e68076d724ceac0f267d66c757f7535069c93", "sha256:e90f17980e6ab0f3c2f3730e56d1fe9bcba1891eeea58966e89d352492cc74f4"]}, {"name": "pycparser", "version": "2.18", "hashes": ["sha256:99a8ca03e29851d96616ad0404b4aad7d9ee16f25c9f9708a11faf2810f7b226"]}, {"name": "attrs", "version": "17.4.0", "hashes": ["sha256:a17a9573a6f475c99b551c0e0a812707ddda1ec9653bed04c13841404ed6f450", "sha256:1c7960ccfd6a005cd9f7ba884e6316b5e430a3f1a6c37c5f87d8b43f83b54ec9"]}, {"name": "cryptography", "version": "2.1.4", "hashes": ["sha256:69285f5615507b6625f89ea1048addd1d9218585fb886eb90bdebb1d2b2d26f5", "sha256:6cb1224da391fa90f1be524eafb375b62baf8d3df9690b32e8cc475ccfccee5e", "sha256:4f385ee7d39ee1ed74f1d6b1da03d0734ea82855a7b28a9e6e88c4091bc58664", "sha256:a5f2c681fd040ed648513939a1dd2242af19bd5e9e79e53b6dcfa33bdae61217", "sha256:fc2208d95d9ecc8032f5e38330d5ace2e3b0b998e42b08c30c35b2ab3a4a3bc8", "sha256:0d39a93cf25edeae1f796bbc5960e587f34513a852564f6345ea4491a86c5997", "sha256:41f94194ae78f83fd94ca94fb8ad65f92210a76a2421169ffa5c33c3ec7605f4", "sha256:7a2409f1564c84bcf2563d379c9b6148c5bc6b0ae46e109f6a7b4bebadf551df", "sha256:55555d784cfdf9033e81f044c0df04babed2aa141213765d960d233b0139e353", "sha256:9a47a80f65f4feaaf8415a40c339806c7d7d867152ddccc6ca87f707c8b7b565", "sha256:6fb22f63e17813f3d1d8e30dd1e249e2c34233ba1d3de977fd31cb5db764c7d0", "sha256:ee245f185fae723133511e2450be08a66c2eebb53ad27c0c19b228029f4748a5", "sha256:9a2945efcff84830c8e237ab037d0269380d75d400a89cc9e5628e52647e21be", "sha256:2cfcee8829c5dec55597826d52c26bc26e7ce39adb4771584459d0636b0b7108", "sha256:33b564196dcd563e309a0b07444e31611368afe3a3822160c046f5e4c3b5cdd7", "sha256:18d0b0fc21f39b35ea469a82584f55eeecec1f65a92d85af712c425bdef627b3", "sha256:d18df9cf3f3212df28d445ea82ce702c4d7a35817ef7a38ee38879ffa8f7e857", "sha256:b984523d28737e373c7c35c8b6db6001537609d47534892de189bebebaa42a47", "sha256:27a208b9600166976182351174948e128818e7fc95cbdba18143f3106a211546", "sha256:28e4e9a97713aa47b5ef9c5003def2eb58aec89781ef3ef82b1c2916a8b0639b", "sha256:a3c180d12ffb1d8ee5b33a514a5bcb2a9cc06cc89aa74038015591170c82f55d", "sha256:8487524a1212223ca6dc7e2c8913024618f7ff29855c98869088e3818d5f6733", "sha256:e4d967371c5b6b2e67855066471d844c5d52d210c36c28d49a8507b96e2c5291"]}, {"name": "pytrie", "version": "0.3", "hashes": ["sha256:0c1bd0cb7c301b193da4bcf31bdf68bbdbea88be4bea5f680caecc56d9b74020"]}, {"name": "pynacl", "version": "1.2.1", "hashes": ["sha256:0bfa0d94d2be6874e40f896e0a67e290749151e7de767c5aefbad1121cad7512", "sha256:1d33e775fab3f383167afb20b9927aaf4961b953d76eeb271a5703a6d756b65b", "sha256:eb2acabbd487a46b38540a819ef67e477a674481f84a82a7ba2234b9ba46f752", "sha256:14339dc233e7a9dda80a3800e64e7ff89d0878ba23360eea24f1af1b13772cac", "sha256:cf6877124ae6a0698404e169b3ba534542cfbc43f939d46b927d956daf0a373a", "sha256:eeee629828d0eb4f6d98ac41e9a3a6461d114d1d0aa111a8931c049359298da0", "sha256:d0eb5b2795b7ee2cbcfcadacbe95a13afbda048a262bd369da9904fecb568975", "sha256:11aa4e141b2456ce5cecc19c130e970793fa3a2c2e6fbb8ad65b28f35aa9e6b6", "sha256:8ac1167195b32a8755de06efd5b2d2fe76fc864517dab66aaf65662cc59e1988", "sha256:d795f506bcc9463efb5ebb0f65ed77921dcc9e0a50499dedd89f208445de9ecb", "sha256:be71cd5fce04061e1f3d39597f93619c80cdd3558a6c9ba99a546f144a8d8101", "sha256:2a42b2399d0428619e58dac7734838102d35f6dcdee149e0088823629bf99fbb", "sha256:73a5a96fb5fbf2215beee2353a128d382dbca83f5341f0d3c750877a236569ef", "sha256:d8aaf7e5d6b0e0ef7d6dbf7abeb75085713d0100b4eb1a4e4e857de76d77ac45", "sha256:2dce05ac8b3c37b9e2f65eab56c544885607394753e9613fd159d5e2045c2d98", "sha256:f5ce9e26d25eb0b2d96f3ef0ad70e1d3ae89b5d60255c462252a3e456a48c053", "sha256:6453b0dae593163ffc6db6f9c9c1597d35c650598e2c39c0590d1757207a1ac2", "sha256:fabf73d5d0286f9e078774f3435601d2735c94ce9e514ac4fb945701edead7e4", "sha256:13bdc1fe084ff9ac7653ae5a924cae03bf4bb07c6667c9eb5b6eb3c570220776", "sha256:8f505f42f659012794414fa57c498404e64db78f1d98dfd40e318c569f3c783b", "sha256:04e30e5bdeeb2d5b34107f28cd2f5bbfdc6c616f3be88fc6f53582ff1669eeca", "sha256:8abb4ef79161a5f58848b30ab6fb98d8c466da21fdd65558ce1d7afc02c70b5f", "sha256:e0d38fa0a75f65f556fb912f2c6790d1fa29b7dd27a1d9cc5591b281321eaaa9"]}, {"name": "pyasn1", "version": "0.4.2", "hashes": ["sha256:f81c96761fca60d64b1c9b79ec2e40cf9495a745cf570613079ef324aeb9672b", "sha256:7d626683e3d792cccc608da02498aff37ab4f3dafd8905d6bf755d11f9b26b43", "sha256:e85895087905c65b5b594eb91f7522664c85545b147d5f4d4e7b1b07da8dcbdc", "sha256:5a0db897b311d265cde49615cf783f1c78613138605cdd0f907ecfa5b2aba3ee", "sha256:d5cd6ed995dba16fad0c521cfe31cd2d68400b53fcc2bce93326829be73ab6d1", "sha256:a7efe807c4b83a859e2735c692b92ed7b567cfddc4163763412920041d876c2b", "sha256:b5a9ca48055b9a20f6d1b3d68e38692e5431c86a0f99ea602e61294e891fee5b", "sha256:c07d6e587b2f928366b1f67c09bda026a3e6fcc99e80a744dc67f8fca3895626", "sha256:d84c2aea3cf43780e9e6a19f4e4dddee9f6976519020e64e47c57e5c7a8c3dd2", "sha256:758cb50abddc03e4563fd9e7f03db56e3e87b58c0bd01247360326e5c0c7ffa5", "sha256:0d7f6e959fe53f3960a23d73f35e1fce61348b30915b6664309ca756de7c1f89", "sha256:d258b0a71994f7770599835249cece1caef3c70def868c4915e6e5ca49b67d15"]}, {"name": "u-msgpack-python", "version": "2.4.1", "hashes": ["sha256:4b509782648fc563f85cef03887389c7fba3b077a47920a13d3d4ea78652ffd2", "sha256:2f31fc1b6dd8632c230ea7012470e40f77119f20999274dda6f1afa9c305e590"]}, {"name": "asn1crypto", "version": "0.24.0", "hashes": ["sha256:2f1adbb7546ed199e3c90ef23ec95c5cf3585bac7d11fb7eb562a3fe89c64e87", "sha256:9d5c20441baf0cb60a4ac34cc447c6c189024b6b4c6cd7877034f4965c464e49"]}, {"name": "pyopenssl", "version": "17.5.0", "hashes": ["sha256:07a2de1a54de07448732a81e38a55df7da109b2f47f599f8bb35b0cbec69d4bd", "sha256:2c10cfba46a52c0b0950118981d61e72c1e5b1aac451ca1bc77de1a679456773"]}, {"name": "sortedcontainers", "version": "1.5.9", "hashes": ["sha256:fb9e22cd6ee4b459f0d7b9b4189b19631031c72ac05715563139162014c13672", "sha256:844daced0f20d75c02ce53f373d048ea2e401ad8a7b3a4c43b2aa544b569efb3"]}, {"name": "service-identity", "version": "17.0.0", "hashes": ["sha256:0e76f3c042cc0f5c7e6da002cf646f59dc4023962d1d1166343ce53bdad39e17", "sha256:4001fbb3da19e0df22c47a06d29681a398473af4aa9d745eca525b3b2c2302ab"]}, {"name": "six", "version": "1.11.0", "hashes": ["sha256:832dc0e10feb1aa2c68dcc57dbb658f1c7e65b9b61af69048abc87a2db00a0eb", "sha256:70e8a77beed4562e7f14fe23a786b54f6296e34344c23bc42f07b15018ff98e9"]}, {"name": "autobahn", "version": "18.3.1", "hashes": ["sha256:13199ac8e75bde47e8c2468386ce95c2489d3c7ef3eb25ef9f53094f8a2a5f0f", "sha256:fc1d38227bb44a453b54cffa48de8b2e6ce48ddc5e97fb5950b0faa27576f385"]}, {"name": "pyqrcode", "version": "1.2.1", "hashes": ["sha256:fdbf7634733e56b72e27f9bce46e4550b75a3a2c420414035cae9d9d26b234d5", "sha256:1b2812775fa6ff5c527977c4cd2ccb07051ca7d0bc0aecf937a43864abe5eff6"]}, {"name": "wsaccel", "version": "0.6.2", "hashes": ["sha256:425706acf0724d2f6bfa391ec37b4ef121d3432c956029de3cea4e101c218e0c"]}]

is autobahn installed in your global site packages? (the one where pipenv is installed?)

My pipenv is installed in a pipsi venv.

Okay, time to run the final command:

$ pipenv-resolver 'autobahn[encryption,accelerate,asyncio,serialization]' --debug --clear

Sorry again, and thanks for your help. Really trying to solve this.

I’ve killed the pew venv and rerun the resolver:

Using pip: -i https://pypi.python.org/simple

                          ROUND 1                           
Current constraints:
  autobahn[accelerate,asyncio,encryption,serialization]

Finding the best candidates:
  found candidate autobahn[accelerate,asyncio,encryption,serialization]==18.3.1 (constraint was <any>)

Finding secondary dependencies:
------------------------------------------------------------
Result of round 1: stable, done
Warning: Error generating hash for autobahn
RESULTS:
[{"name": "autobahn", "version": "18.3.1", "hashes": ["sha256:13199ac8e75bde47e8c2468386ce95c2489d3c7ef3eb25ef9f53094f8a2a5f0f", "sha256:fc1d38227bb44a453b54cffa48de8b2e6ce48ddc5e97fb5950b0faa27576f385"]}]

Does the warning mean something to you?

Enjoy the lecture 😂:

DEBUG:pip.index:1 location(s) to search for versions of autobahn:
DEBUG:pip.index:* https://pypi.python.org/simple/autobahn/
DEBUG:pip.index:Getting page https://pypi.python.org/simple/autobahn/
DEBUG:pip._vendor.cachecontrol.controller:Looking up "https://pypi.python.org/simple/autobahn/" in the cache
DEBUG:pip._vendor.cachecontrol.controller:Current age based on date: 555
DEBUG:pip._vendor.cachecontrol.controller:Freshness lifetime from max-age: 600
DEBUG:pip._vendor.cachecontrol.controller:Freshness lifetime from request max-age: 600
DEBUG:pip._vendor.cachecontrol.controller:The response is "fresh", returning cached response
DEBUG:pip._vendor.cachecontrol.controller:600 > 555
DEBUG:pip.index:Analyzing links from page https://pypi.python.org/simple/autobahn/
DEBUG:pip.index:Found link https://pypi.python.org/packages/00/37/72c2a363459d0e9797368a76cc740dba8c12bbe2c266e3699ad56e749a17/autobahn-0.9.4.zip#md5=c4aac8412b7f771dc717c031680a2ef3 (from https://pypi.python.org/simple/autobahn/), version: 0.9.4
DEBUG:pip.index:Found link https://pypi.python.org/packages/02/77/8429ed2f7c9adc911e9f362f1c8058f87e209e5dc0273bac37d22fbe0b10/autobahn-17.6.2.tar.gz#md5=905a07cde5c2eb3566a6d8d40832cac8 (from https://pypi.python.org/simple/autobahn/), version: 17.6.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/04/97/db28c2a0b531730050ac8d2b9f11f501f5d9c54e7ca2a416c9cd649bccbe/autobahn-0.17.0.tar.gz#md5=3b862e5e95eca34f804c2516c300f517 (from https://pypi.python.org/simple/autobahn/), version: 0.17.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/08/3c/2193a7badc3b75d6435e971616bc21b9bf3ed0fc30c30017e1b8d5660b6d/autobahn-0.8.5.zip#md5=1aa9843fa4cbadf9ce35a32b28f0c909 (from https://pypi.python.org/simple/autobahn/), version: 0.8.5
DEBUG:pip.index:Found link https://pypi.python.org/packages/0a/4a/08c6ae25a593ec83d3cf79be42afc47513d39be98ef66af81713e6d790ec/autobahn-0.9.3-3.zip#md5=7a127a317f55a10824b492bf58ebddce (from https://pypi.python.org/simple/autobahn/), version: 0.9.3-3
DEBUG:pip.index:Found link https://pypi.python.org/packages/11/43/921c29555c9ecc7c50993743fbf554bbfcc8bf2755ecf74c917c1cbea6c9/autobahn-0.4.1.zip#md5=d96c11ab9d7053026eefb62712f05c26 (from https://pypi.python.org/simple/autobahn/), version: 0.4.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/12/6e/ace8c9b897f580ce427b720ce898491c0e59a39f8b0ca5cdf9d6bab91bec/autobahn-0.8.15.zip#md5=91757ba066504e94c2aad852caa2f34a (from https://pypi.python.org/simple/autobahn/), version: 0.8.15
DEBUG:pip.index:Found link https://pypi.python.org/packages/17/71/898dbf715057e720b01e351f2b00d881cf1066c0d0dd719446e930de6818/autobahn-17.9.2.tar.gz#md5=89fcff6d03d54d1d802ecccaeefb8db7 (from https://pypi.python.org/simple/autobahn/), version: 17.9.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/17/99/5937aad036a834ad37df4f535bd6bc74490200f078ac6ec1e2f66dd2b581/autobahn-0.8.4-3.zip#md5=ece3f7b2edbd520f3a732d12bc433b45 (from https://pypi.python.org/simple/autobahn/), version: 0.8.4-3
DEBUG:pip.index:Found link https://pypi.python.org/packages/19/c1/8d23bc0bf5837f78e3a7c6c7bd57a16e114557f3cbea68b51444c6ecf454/autobahn-0.9.6.tar.gz#md5=99d70138bf0a4e14818916144fd9e3db (from https://pypi.python.org/simple/autobahn/), version: 0.9.6
DEBUG:pip.index:Found link https://pypi.python.org/packages/1a/91/bb5e28db37a4fdc7c056c352277cd6847849b6a7721be7c458941f480267/autobahn-17.5.1.tar.gz#md5=b5719654e9acc16d0ff2f50abc32c251 (from https://pypi.python.org/simple/autobahn/), version: 17.5.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/1b/c9/b4c8fa9aa92d5a5ea6786b173b1daf5ae57682aeed059987a74637d6e0fe/autobahn-0.17.2.tar.gz#md5=f3632cfbc3766c32a20d3293c62187e1 (from https://pypi.python.org/simple/autobahn/), version: 0.17.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/1c/a6/3cc8ba02b3d94e348b401bafa8765fe350ce6bc47fe79d21da5cbf1344f9/autobahn-0.7.4.zip#md5=5ec8951a1c0b246fc4fba83c709707c1 (from https://pypi.python.org/simple/autobahn/), version: 0.7.4
DEBUG:pip.index:Found link https://pypi.python.org/packages/1d/a7/87b561169edad7367bf6fb9706b3e72855feee954e8e5e34944dfe3bb02e/autobahn-0.9.3.zip#md5=10c9ea1376dcd9fe0b31a4737258aa9e (from https://pypi.python.org/simple/autobahn/), version: 0.9.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/25/f9/89a8e9e9717e7eb5841d5433c4c2764e9a98dfdb610b5ebdd3080a11b604/autobahn-0.16.0-py2.py3-none-any.whl#md5=0b1d7eb6c5f3900255a7a83676c15e20 (from https://pypi.python.org/simple/autobahn/), version: 0.16.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/27/c7/9861ce6fc37ddf1d9dd3508534166a66f91bd710949b358652475ae870e2/autobahn-0.13.1.tar.gz#md5=3f53f6c8a86799c576cc0cc2047d6135 (from https://pypi.python.org/simple/autobahn/), version: 0.13.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/28/36/c146415f70f62ae678c4b6dae64872eb7d55661dbb8830a5fa594143478c/autobahn-0.17.1.tar.gz#md5=f6b3c2684b873ae29111385b695b28fb (from https://pypi.python.org/simple/autobahn/), version: 0.17.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/28/57/d300625e568a1d7c657f4b9520fe192130023432a5d632fbac0dcb236390/autobahn-0.18.2.tar.gz#md5=48cc34f14022a13cf2915466179c7bb7 (from https://pypi.python.org/simple/autobahn/), version: 0.18.2
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/2b/a8/430bd6ee2f891387347cd753fa0f76b915714541cb530cabdb1ea8998817/autobahn-0.5.5-py2.7.egg#md5=43055a412b26ddefa1c753002c416dd7 (from https://pypi.python.org/simple/autobahn/); unsupported archive format: .egg
DEBUG:pip.index:Found link https://pypi.python.org/packages/2b/af/d87485cf49c82b74a4f62b85906ac7beb988cace7e0901e399c6729fe7cb/autobahn-17.6.2-py2.py3-none-any.whl#md5=3059c316f8a8e233b98a6939d6288df3 (from https://pypi.python.org/simple/autobahn/), version: 17.6.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/31/59/b9be3da5edfe903311e3d00cdedbe35f1cad12c090184566cbc9a7515e9e/autobahn-0.3.1.win32.zip#md5=20d2532ddad3b9d66f016223b3c8f65b (from https://pypi.python.org/simple/autobahn/), version: 0.3.1.win32
DEBUG:pip.index:Found link https://pypi.python.org/packages/31/f1/1b2acdee2c082257e4d98bf26bfbd6398c7a2faa74e5feb9225e491dedac/autobahn-0.10.9.tar.gz#md5=fa90fa91f9c0e711ca6e87c7e9d835b7 (from https://pypi.python.org/simple/autobahn/), version: 0.10.9
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/32/94/8251d5e2d1ca96d44f2f923312c14deaa7a8440438e1625329f68413c4be/autobahn-0.6.4.win32.exe#md5=2e349b595e6ee4c307a9a93329c8955b (from https://pypi.python.org/simple/autobahn/); unsupported archive format: .exe
DEBUG:pip.index:Found link https://pypi.python.org/packages/34/1a/cc529fd3f7e78ecc729d3038689260029fcfbd8f39431a08e333411bc9ee/autobahn-0.18.0.tar.gz#md5=5bed3787569ab6b31b827f57c480f2ea (from https://pypi.python.org/simple/autobahn/), version: 0.18.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/34/64/56b69ff88da42b29794a7b6d22f3d55bc2d487443d18a4611e60c1b6d901/autobahn-17.7.1.tar.gz#md5=0458295eff8a05b09982e87125a1a2e8 (from https://pypi.python.org/simple/autobahn/), version: 17.7.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/37/72/4e472d8fbe7f3977efcb357bb627cae1245ee1d4844a42dbfb6d9111c2cd/autobahn-0.6.5.zip#md5=90bfd4391c6ff059e4cc322966145a44 (from https://pypi.python.org/simple/autobahn/), version: 0.6.5
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/3c/0d/d7da10e7cc35f13b23a97571ce45731891fb792c0b3ad5b9c97329a3b48d/autobahn-0.5.9.win32.exe#md5=1dc85de1f0efaef26475bb8842dd2838 (from https://pypi.python.org/simple/autobahn/); unsupported archive format: .exe
DEBUG:pip.index:Found link https://pypi.python.org/packages/3c/e4/cba5f80c53a57fe37f990ceef287e9704cb1be1fb897d30d3d07694d6332/autobahn-0.5.9.zip#md5=f8018b9bae62b47812a551bff1fd14ab (from https://pypi.python.org/simple/autobahn/), version: 0.5.9
DEBUG:pip.index:Found link https://pypi.python.org/packages/3e/5c/343087faca9a0708811a32b75f0fdc4d0ed901cb3863e19c105151caf13d/autobahn-0.7.2.tar.gz#md5=4dd99f507bb2261033a671c3a85252d2 (from https://pypi.python.org/simple/autobahn/), version: 0.7.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/3e/e7/bd787a96631ed5cb148a9f1dd4a4bfa9d2dddee4a44bce8414ad59c620ab/autobahn-0.9.3-2.zip#md5=14caac6a8903be9279f3ad8687d338a6 (from https://pypi.python.org/simple/autobahn/), version: 0.9.3-2
DEBUG:pip.index:Found link https://pypi.python.org/packages/43/7e/4f953892d2660d734e04ab39a2945e9623c3a25d2696d25107bed3a0ab7f/autobahn-0.8.2.zip#md5=a7cff61550397dc6d5e8da62f477304e (from https://pypi.python.org/simple/autobahn/), version: 0.8.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/44/2e/4e3618cab8e70a59370ca3db308e4b533edfe5fce2511784b68423d68517/autobahn-0.16.1-py2.py3-none-any.whl#md5=e36b3584f94586f0e58a9e71feba84f3 (from https://pypi.python.org/simple/autobahn/), version: 0.16.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/49/2d/36749128ef076381e879dd93c13bfeee90888b2b642e20cbf8ca4dcfc0c1/autobahn-0.18.1-py2.py3-none-any.whl#md5=b179c931098ef52e55f84e63d8137716 (from https://pypi.python.org/simple/autobahn/), version: 0.18.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/4a/5c/8a8e35a5c1767f3f42811c549dd3dcf535b3d2bea27839a9fce9f7b85a16/autobahn-0.8.3.zip#md5=111f825423da398ec05ecb9eb1d64c25 (from https://pypi.python.org/simple/autobahn/), version: 0.8.3
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/4e/f8/dff8b91b2cd65be7c932402eed2dcc514b5f469268de1fe1229c65659499/autobahn-0.3.1-py2.6.egg#md5=a16ccad15a8ecf6698b6e719f10f64fc (from https://pypi.python.org/simple/autobahn/); unsupported archive format: .egg
DEBUG:pip.index:Found link https://pypi.python.org/packages/4f/0c/3595e9a3ceadfaf70cc02ca8290a60cde7efa853057d4c50ef0bc074ed09/autobahn-18.3.1-py2.py3-none-any.whl#md5=54d642d49b0defa1bb03452edf99c11f (from https://pypi.python.org/simple/autobahn/), version: 18.3.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/53/62/cd43602f0486d7fdcee28e64cccdc5a2f676b31d4657e609aa8c739d26be/autobahn-0.8.14.zip#md5=1fb0bd2340f4dc9289eee7703b043c30 (from https://pypi.python.org/simple/autobahn/), version: 0.8.14
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/56/f9/0d593d310bb3f5b6984b6083df9e59d00c79e102c950ee1415eed3071d55/autobahn-0.4.3-py2.7.egg#md5=f1ffb6859efa4f1d7b4f8dce03867569 (from https://pypi.python.org/simple/autobahn/); unsupported archive format: .egg
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/5c/0a/74a35ab9d61911aed6fcb789b3bf21c5891360ec36dbb58a93a85545d112/autobahn-0.4.1-py2.7.egg#md5=a19fd288ffe0a8376dcc3f5061d7d6c6 (from https://pypi.python.org/simple/autobahn/); unsupported archive format: .egg
DEBUG:pip.index:Found link https://pypi.python.org/packages/5e/ed/992d09251ae44e82b1c7cc47305b831ef88bb13dc95d436a8670a39f64b3/autobahn-0.14.1-py2.py3-none-any.whl#md5=d52cd6db3097a2e955758369f31794ee (from https://pypi.python.org/simple/autobahn/), version: 0.14.1
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/5f/6c/763f47f89ed9dac6986b25c27c47380783a0e6eee8cc83090bb8b6c19302/autobahn-0.6.3.win32.exe#md5=1826224395e27813cbd574085e56388c (from https://pypi.python.org/simple/autobahn/); unsupported archive format: .exe
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/63/b0/05c8cc3daa504311998647809ff1f0427f3b2d42bf03a419b9cfca08ef79/autobahn-0.5.2.win32.exe#md5=c521bffd080420a36efb477594b066ce (from https://pypi.python.org/simple/autobahn/); unsupported archive format: .exe
DEBUG:pip.index:Found link https://pypi.python.org/packages/63/d2/3280efcb82f6036387b7ea5f81b3071a51a33908efcbba1e211697481f00/autobahn-0.14.0.tar.gz#md5=d0a71655588094fdf9c72074fd8073f8 (from https://pypi.python.org/simple/autobahn/), version: 0.14.0
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/64/3c/31675f787cfc168cb5f55339cfae86863915ecddd7255000b6d95372bb87/autobahn-0.5.2-py2.7.egg#md5=4528c0405fa6fe1c4d575e6f142c9824 (from https://pypi.python.org/simple/autobahn/); unsupported archive format: .egg
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/64/a7/88fbf8632a0095bb08237b558b6f996f789925b9d86e0b293aad266a2316/autobahn-0.5.0.win32.exe#md5=728a64fd1a1b90abf7000e8604c8e2a9 (from https://pypi.python.org/simple/autobahn/); unsupported archive format: .exe
DEBUG:pip.index:Found link https://pypi.python.org/packages/66/21/2d5a340e1c202c43e468c6dd1b4b1f615824e715890e7685fd977ab0354b/autobahn-0.18.0-py2.py3-none-any.whl#md5=d308eeb79af95d58a27b767216927ab3 (from https://pypi.python.org/simple/autobahn/), version: 0.18.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/68/25/e15f18a187fd20deee3c5a1be567e82bc0b2f44f0f5a9e89a9f236dcb9ce/autobahn-17.8.1.tar.gz#md5=a304ab4c6006cd11402429023441bbf6 (from https://pypi.python.org/simple/autobahn/), version: 17.8.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/68/37/2523309412f0fb93a7784c65e5c5639b4b5d7a84f91374ad6c3c2d5af60b/autobahn-0.16.0.tar.gz#md5=9850702d0078c5a4aa17170afe2f233c (from https://pypi.python.org/simple/autobahn/), version: 0.16.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/68/ed/a2e80b4490955f450d8ef7419a1f7052b21681c8ed2c27c15796674484ff/autobahn-17.9.3.tar.gz#md5=26c24d0049c43f902ab0b8d16a3e3ce2 (from https://pypi.python.org/simple/autobahn/), version: 17.9.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/69/f6/2e8a56020038bd0b3a353d81796818d74a93011994fb7a505547dffbd244/autobahn-0.8.9.zip#md5=3abea1f351fe0b675ecf6979311547c6 (from https://pypi.python.org/simple/autobahn/), version: 0.8.9
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/6a/ab/25965f35436621a66f65062f5a9b0862e34e4243954cff5fdc2ad20c648f/autobahn-0.4.1.win32.exe#md5=1d177f3279b2dbd2478682ad0744f169 (from https://pypi.python.org/simple/autobahn/); unsupported archive format: .exe
DEBUG:pip.index:Found link https://pypi.python.org/packages/6c/00/ec94843fc32d91e6be9b1cf4c2c527e83da77eeeb2d044a8a0e8e062b277/autobahn-0.9.5.zip#md5=5a7e16dcad7d8ab544fa7780c3ae55fc (from https://pypi.python.org/simple/autobahn/), version: 0.9.5
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/6c/41/d9be72d858ca65b618714d8e96133601bf1ef1ed2b1a702c15d7f28fc15e/autobahn-0.3.1.win32.exe#md5=52cb982246482ab374530dc3d695b63b (from https://pypi.python.org/simple/autobahn/); unsupported archive format: .exe
DEBUG:pip.index:Found link https://pypi.python.org/packages/6c/b1/e3d55aef5d0328eb9d66b4116b05b1aa80c2aef710333a7d551a443e00a8/autobahn-0.10.5.post2.tar.gz#md5=1e236b887e78c2bf779933c90cf7f06a (from https://pypi.python.org/simple/autobahn/), version: 0.10.5.post2
DEBUG:pip.index:Found link https://pypi.python.org/packages/71/83/484c08f0977f3e332c14f283ee9b6b9cffde86973f3ca40ef9fda659972b/autobahn-0.7.3.tar.gz#md5=c139a6953a1cf3415e49241ade270106 (from https://pypi.python.org/simple/autobahn/), version: 0.7.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/72/03/9ccc09f70f7d557d833799120a6ce9be6b31fb122f3162569b305d0f3d88/autobahn-0.8.7.zip#md5=0f87e3072d6ce3ad9d6e2c771f405665 (from https://pypi.python.org/simple/autobahn/), version: 0.8.7
DEBUG:pip.index:Found link https://pypi.python.org/packages/72/1d/ad29b1cb06bc56854c38a42d907aa5c3de9bfcf078ff870c8ea869024dca/autobahn-0.10.2.tar.gz#md5=516fce82b3b4f70e1ee3545f3546e8e6 (from https://pypi.python.org/simple/autobahn/), version: 0.10.2
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/77/6c/654d00fc66497eafc57d45e6d7b05ea9c9defe9ca348cfd814a4048c747d/autobahn-0.6.5.win32.exe#md5=c7357ab5663056685eb33c9003c05216 (from https://pypi.python.org/simple/autobahn/); unsupported archive format: .exe
DEBUG:pip.index:Found link https://pypi.python.org/packages/79/c2/d831ba6e27b1b1d36e3443b072632cc25df8ba9d74adf4096bfd5a19dd9c/autobahn-18.3.1.tar.gz#md5=b3705aa5b52687cc2730f90623e2de89 (from https://pypi.python.org/simple/autobahn/), version: 18.3.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/7a/29/7b81d1c451fbcb50cc53c03170512b17b53bbc0d560fed01ec4fd5396042/autobahn-0.8.0.zip#md5=c8313cb19ec101a5fa02c6ea0ed61a04 (from https://pypi.python.org/simple/autobahn/), version: 0.8.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/7a/f0/a98cd6c905ec0bfc2f90a888eef1ee6de1c6c52783a6d84c1f6580d81636/autobahn-0.9.0.zip#md5=a45b73d988f3f3c67bd849118808040d (from https://pypi.python.org/simple/autobahn/), version: 0.9.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/7b/82/81a7ce937515c0822628d53eb3c7db8a85882a14f681f09c235f2f29e789/autobahn-0.10.7.tar.gz#md5=43affb94dc2bcdae9d5d9263211972f1 (from https://pypi.python.org/simple/autobahn/), version: 0.10.7
DEBUG:pip.index:Found link https://pypi.python.org/packages/7b/91/96869d981bca61e852289a6db878456b287cba697b9bb2e06c4ee14276ac/autobahn-0.8.4-2.zip#md5=460ccaec1e85301094b19b95d9983023 (from https://pypi.python.org/simple/autobahn/), version: 0.8.4-2
DEBUG:pip.index:Found link https://pypi.python.org/packages/7b/cc/5c702abd1fa4b2c49e1decfb69e9153f0cd226add41143b242f7369cd314/autobahn-0.8.13.zip#md5=834d71e4773ee95a0128c7dd73f18e73 (from https://pypi.python.org/simple/autobahn/), version: 0.8.13
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/7c/c0/30cf7d6544e6f85783fe5458d0ee6367da726ef2266c4284eef3c806563d/autobahn-0.6.5-py2.7.egg#md5=ef4a3ed141529e537b9baf7930de0d7f (from https://pypi.python.org/simple/autobahn/); unsupported archive format: .egg
DEBUG:pip.index:Found link https://pypi.python.org/packages/7e/88/e1c421917688b70733df30008405ec739640d29f19e027f9f2dc00652aa7/autobahn-0.9.4-2.zip#md5=aaf13b602104c12dd26825cd0a0a3523 (from https://pypi.python.org/simple/autobahn/), version: 0.9.4-2
DEBUG:pip.index:Found link https://pypi.python.org/packages/80/40/bab2da78a1805a5039ad9fad2aec6bce8bdaf36e25bd32cd8a547a28c178/autobahn-0.15.0.tar.gz#md5=c45a37a21f2818eb4ca210f3d374aadf (from https://pypi.python.org/simple/autobahn/), version: 0.15.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/80/48/778cb427049f34680a461b80294b438db14e5253af0f833378dc4ce6fc9a/autobahn-17.9.1-py2.py3-none-any.whl#md5=52107dc0e9e0e1e9c6dadcf559ff60aa (from https://pypi.python.org/simple/autobahn/), version: 17.9.1
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/81/90/d4a16aa742bc6adc3d236068d879cb70f0f3c8e8e1a52fdbabc58256fe83/autobahn-0.4.0.win32.exe#md5=3eb197ed4111f892b957b7f83c26756f (from https://pypi.python.org/simple/autobahn/); unsupported archive format: .exe
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/81/bd/29a149cd4506b5597ec589fe0f5520e5e21cdfaf76a80d0d51f25e8ef388/autobahn-0.4.0-py2.7.egg#md5=50de2287efdbaaae19442beadda68738 (from https://pypi.python.org/simple/autobahn/); unsupported archive format: .egg
DEBUG:pip.index:Found link https://pypi.python.org/packages/84/07/bd244a0578552fc03bdad6be4d1a135dacccfbc821c34ad4c734b9ffa988/autobahn-17.9.1.tar.gz#md5=78b40cbbf7c1130bd1241aa51333223f (from https://pypi.python.org/simple/autobahn/), version: 17.9.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/84/c1/5b3f346b6c7138b7eeacba08cababaeecd6035b224ea32770478393151ad/autobahn-0.10.0.tar.gz#md5=6958bb95230ece5e11158e1362b1fe1c (from https://pypi.python.org/simple/autobahn/), version: 0.10.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/85/41/39b3b4fd3f347d8e3a493f979f7662362d6b1a44ef1370603239683573ea/autobahn-0.5.1.zip#md5=92d27b702a269d948b370d41246eff8f (from https://pypi.python.org/simple/autobahn/), version: 0.5.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/87/d7/6abeb1d25e40aec7ad864f07f6be75f1770ffdb3182b88b20c5908f75d8f/autobahn-0.8.8.zip#md5=7dc8c0712e82213c0958d5351932a318 (from https://pypi.python.org/simple/autobahn/), version: 0.8.8
DEBUG:pip.index:Found link https://pypi.python.org/packages/88/a5/2815b197a44851dab6611045047b9aad1827276a8b1c197449e8a43b314c/autobahn-0.17.0-py2.py3-none-any.whl#md5=b11cb348da479049f0b9744407b0ae87 (from https://pypi.python.org/simple/autobahn/), version: 0.17.0
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/8c/4e/9892540a03d194df6addc8f124512640480fb4b51e52daf2bc1d97ec8167/autobahn-0.5.8.win32.exe#md5=ad5ea015993ab0dbed5f516d6ccbf35c (from https://pypi.python.org/simple/autobahn/); unsupported archive format: .exe
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/8e/27/c076b65c0a0ba681d6b96bd26cc1dab03cb1fd1462056fe5dcd72aedb9f6/autobahn-0.5.14.win32.exe#md5=5ff8480157999e204247f65c017f5d2f (from https://pypi.python.org/simple/autobahn/); unsupported archive format: .exe
DEBUG:pip.index:Found link https://pypi.python.org/packages/8f/8f/01f9fc1716d601b52d450d2101946e8b6ecf8ea20a359b3b63efe832e798/autobahn-0.8.1.zip#md5=098179c455947e26608f105ae08c8493 (from https://pypi.python.org/simple/autobahn/), version: 0.8.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/92/8c/5bd1890d8aa23f1a175f98b69120b1ccb548af8da6a78aac73cc89a5c3bd/autobahn-0.17.2-py2.py3-none-any.whl#md5=ac3d7a3d11a877ef0c3f74f7f730e1d9 (from https://pypi.python.org/simple/autobahn/), version: 0.17.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/94/d8/fd93831abdd442fd4e46081f832c61374748aa6a03ee5d00f10fff3635cb/autobahn-0.8.4.zip#md5=4ed7f866edd492ff8dbfce6c5520dc48 (from https://pypi.python.org/simple/autobahn/), version: 0.8.4
DEBUG:pip.index:Found link https://pypi.python.org/packages/9a/65/7feb12c5505a5931a5e21d390ed219aa9869f5a4d471ff449f1fbf9986e3/autobahn-0.7.1.tar.gz#md5=52f71245009e16ad125a9971509d0826 (from https://pypi.python.org/simple/autobahn/), version: 0.7.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/9d/6f/0531d77f44c853a3a7c095617421de675768de91449815d915a9dac6d3d1/autobahn-0.9.2.zip#md5=c1dc7b2f9d96759dc1dc11efd42cd30e (from https://pypi.python.org/simple/autobahn/), version: 0.9.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/9e/a3/9d742d4b3ea49e6b14cbc8e7fc5e29b25d725a56f98ca13f0c930a176ded/autobahn-0.16.1.tar.gz#md5=f43317b5e49e12e818ce9019893a2a88 (from https://pypi.python.org/simple/autobahn/), version: 0.16.1
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/9f/a3/73484939e9484b6a365db56b64d73a7d9944a9caba4841ce7743cc517d76/autobahn-0.5.8-py2.7.egg#md5=217e4e960d5622f2df9fae3f4cc3a4c3 (from https://pypi.python.org/simple/autobahn/); unsupported archive format: .egg
DEBUG:pip.index:Found link https://pypi.python.org/packages/a2/42/f0d00832d29890894899ed63fd02fe80229c3f0ed66bd3d77bac57c0784a/autobahn-0.5.8.zip#md5=fba5a322a290b01a3744e0737b951349 (from https://pypi.python.org/simple/autobahn/), version: 0.5.8
DEBUG:pip.index:Found link https://pypi.python.org/packages/a5/62/1c9fb7765de6b4652442d8196c9be03455c3f62a2a1d93636102ccb8f4e9/autobahn-0.12.1.tar.gz#md5=b4b5445050749c1033b9b58f694f0c64 (from https://pypi.python.org/simple/autobahn/), version: 0.12.1
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/a8/00/f50975a36b1ac638e591242ec62afb3c6cc6c977dbed71affca13446defc/autobahn-0.5.5.win32.exe#md5=01572c75ea9d753d01f352d43701f3eb (from https://pypi.python.org/simple/autobahn/); unsupported archive format: .exe
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/aa/b3/6361d79d351c6fb0d715bf4e60ceba5c93d61c696da80f118024357a1cb0/autobahn-0.5.0-py2.7.egg#md5=5f0c9ff4e54d7de1f7e2652b16f6725a (from https://pypi.python.org/simple/autobahn/); unsupported archive format: .egg
DEBUG:pip.index:Found link https://pypi.python.org/packages/ad/bb/6f5fe41644396f5d53d285c7662edc6b77d9f6b6e3196c90e0eda4fcb3b1/autobahn-0.5.5.zip#md5=237cb4b2b831b6357eeaf028bc5052aa (from https://pypi.python.org/simple/autobahn/), version: 0.5.5
DEBUG:pip.index:Found link https://pypi.python.org/packages/ae/31/a77887511c21418cb704abb612bdb04c2e14fd629fecaf358337d336d546/autobahn-0.10.4.tar.gz#md5=4ae22413ee9ba8f6692e80e171b68777 (from https://pypi.python.org/simple/autobahn/), version: 0.10.4
DEBUG:pip.index:Found link https://pypi.python.org/packages/ae/4d/5a73d3c422c1ad2fc25e94d23e8fd7b2c3d70b13d53f09f0261c913b79e4/autobahn-0.15.0-py2.py3-none-any.whl#md5=53888cabca52ad0babe7da4d561825a2 (from https://pypi.python.org/simple/autobahn/), version: 0.15.0
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/b0/11/bfca2762dd96db3fce98f0d5ddcaf5f49efe20cd8f9da69a371fe3a0bdfa/autobahn-0.5.1.win32.exe#md5=9bd774d18edb08e4ffb7e88377ed174b (from https://pypi.python.org/simple/autobahn/); unsupported archive format: .exe
DEBUG:pip.index:Found link https://pypi.python.org/packages/b1/c5/28af568414afab1227756d17ca0c91e9e54daf0c31a7248698ffbc48fc25/autobahn-0.5.0.zip#md5=3ab33f56fe1f3e209efce7ce9ca517c5 (from https://pypi.python.org/simple/autobahn/), version: 0.5.0
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/b3/c5/e6f451f297c7e895c4e07554302d4802df11b8f76edd47e4b5de5c8793a2/autobahn-0.4.2-py2.7.egg#md5=f0abd9df71eb1f525c39cec0d6321efb (from https://pypi.python.org/simple/autobahn/); unsupported archive format: .egg
DEBUG:pip.index:Found link https://pypi.python.org/packages/be/2f/22f3b701db3c5da0ee03917cd26edbf900ca2228405d119e598f35997cb4/autobahn-0.3.2.zip#md5=7eaafd1f832884893d0554d9159cd1ce (from https://pypi.python.org/simple/autobahn/), version: 0.3.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/c1/11/ce7ef57c4ffbc748f7b9c7db89902613a9cf5fb104d780854f803e2a8d97/autobahn-0.14.0-py2.py3-none-any.whl#md5=e4145f4df02d155ba3f260b15b66c53f (from https://pypi.python.org/simple/autobahn/), version: 0.14.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/c1/2c/bc117ed7b9add78307305a75eef35c7b4b27ae23bb80c571ec789b0ca247/autobahn-0.18.1.tar.gz#md5=b53539eb83b99c0b4a6357909991e5f7 (from https://pypi.python.org/simple/autobahn/), version: 0.18.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/c2/98/d7493e1e8daed9ef65b366ca76692debe6ff971495ba83e2c09dae0d2b5e/autobahn-0.5.2.zip#md5=80e41acfa30e88bbaf71ce5a81be7f1a (from https://pypi.python.org/simple/autobahn/), version: 0.5.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/c2/d7/81264851c2eb444423f830008c47c04f78dba15f957cd0fd1146bb287930/autobahn-17.5.1-py2.py3-none-any.whl#md5=62faa728e097fc502ffb7bdb08c6df43 (from https://pypi.python.org/simple/autobahn/), version: 17.5.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/c5/94/ef891ccbf74172bd7c8ceb36831e5afdb982680c91068ee9d8b6515b9921/autobahn-0.10.8.tar.gz#md5=d0974e68c93df402a603227cffa061a1 (from https://pypi.python.org/simple/autobahn/), version: 0.10.8
DEBUG:pip.index:Found link https://pypi.python.org/packages/c6/ad/893c9255a2c8bd48c33741d28128c5e123f737487d62b54b5273a0404db5/autobahn-0.6.4.zip#md5=23ea0ac72869fa0d2d9d59ef1a02f418 (from https://pypi.python.org/simple/autobahn/), version: 0.6.4
DEBUG:pip.index:Found link https://pypi.python.org/packages/c7/34/c2b1a8c14687b5a01ece9f8124eb9e1ec1720d5c1ac59439bd4d3f1bd1db/autobahn-0.8.10.zip#md5=7fc755975d39b76de882d87aa9f90f95 (from https://pypi.python.org/simple/autobahn/), version: 0.8.10
DEBUG:pip.index:Found link https://pypi.python.org/packages/cc/38/a039379f99c45d70561cc182771981a049ef5e602b43a1aee08e245330a6/autobahn-0.4.0.zip#md5=cecea2dc77512ab37e75ca1a9518ee31 (from https://pypi.python.org/simple/autobahn/), version: 0.4.0
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/cc/42/3f4bef47954aa837631f588ea2144edd680935250a58ab3656f83cbd03f5/autobahn-0.5.9-py2.7.egg#md5=bd8180c513affd89ba0280056ef04bbc (from https://pypi.python.org/simple/autobahn/); unsupported archive format: .egg
DEBUG:pip.index:Found link https://pypi.python.org/packages/cc/5f/4626ac7871e1afa2028c05aba43c21da1afad725b339719c914a9dfdf8a0/autobahn-0.8.12.zip#md5=ebaf51c3f1f250d149f8215e17c02235 (from https://pypi.python.org/simple/autobahn/), version: 0.8.12
DEBUG:pip.index:Found link https://pypi.python.org/packages/cc/da/3f3deb583d9804c9f2597d3af31bdf493167a7a16b6987ba0d4987f839f8/autobahn-0.18.2-py2.py3-none-any.whl#md5=3dc0b5423b9eec0c03a5744a71bbcaed (from https://pypi.python.org/simple/autobahn/), version: 0.18.2
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/cd/1d/f2ac6601f6c276f4fa9d7846badc6490d8ce6d9521bb7ddc06c8d31236ad/autobahn-0.4.10.win32.exe#md5=403cdc1eaa1556257570cf50ee44b70e (from https://pypi.python.org/simple/autobahn/); unsupported archive format: .exe
DEBUG:pip.index:Found link https://pypi.python.org/packages/cd/3f/e28cdc360084f031ecd9268eff8c943fc155171799c7e9ebb3ef51f779ce/autobahn-0.10.6.tar.gz#md5=987a18783dabeeb30c737b278e11d9df (from https://pypi.python.org/simple/autobahn/), version: 0.10.6
DEBUG:pip.index:Found link https://pypi.python.org/packages/cf/7a/cc3e36bd53ef45e4106c9934dbabda23ffa1d6a10535df9d8930213ab050/autobahn-17.8.1-py2.py3-none-any.whl#md5=f66fae375e2dfb6f3beb57f90de2e88c (from https://pypi.python.org/simple/autobahn/), version: 17.8.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/d1/23/50714b9d2f84594a8079d16c54a6f5650b564e8a6830149e141d48963e47/autobahn-0.4.10.zip#md5=fd61709bb3e1025d673ff202d2b8313e (from https://pypi.python.org/simple/autobahn/), version: 0.4.10
DEBUG:pip.index:Found link https://pypi.python.org/packages/d1/75/b57c83ef8753d01925ceb0cbb8517aec10468384ad9e85f9aa1a8d332d4b/autobahn-0.10.5.tar.gz#md5=75cbbead47bdac8ee606ca3ce9ee742e (from https://pypi.python.org/simple/autobahn/), version: 0.10.5
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/d3/1e/713f60f13b2f059caea43e4bbfc31e766882f660ce53b668622c7dbb51af/autobahn-0.3.2-py2.7.egg#md5=8ece067eb38802d007c423a1bf40c1fc (from https://pypi.python.org/simple/autobahn/); unsupported archive format: .egg
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/d3/5e/2b260700a0464df66002639a0d49a4e3f78dc5f99d5cf622793d50cb26cb/autobahn-0.5.1-py2.7.egg#md5=db334934bc3ae5295595d8c2e7ae052f (from https://pypi.python.org/simple/autobahn/); unsupported archive format: .egg
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/d7/b3/8d3653e8b2e06f1e94ee85946c16ea76b116fca8394a22018be51241a628/autobahn-0.5.14-py2.7.egg#md5=941fb279407728f6c737e576024f57f6 (from https://pypi.python.org/simple/autobahn/); unsupported archive format: .egg
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/d8/11/48280991b22494ac3774bda8d03e7ff19946cac2cc49a0c332ce43bccd29/autobahn-0.6.3-py2.7.egg#md5=bcd5ea79f6debc75cd06a4ecbe157b60 (from https://pypi.python.org/simple/autobahn/); unsupported archive format: .egg
DEBUG:pip.index:Found link https://pypi.python.org/packages/d8/a1/c97c15c42451f216f4ae52e4ce88e9075b0bc2cdaa1f89d9a5105ddaca04/autobahn-0.17.1-py2.py3-none-any.whl#md5=e5f586c2a63ab649014322bce8c95bcd (from https://pypi.python.org/simple/autobahn/), version: 0.17.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/db/a9/cd078e81fec0532a84d34ba026ff1fd29f89782a379e795e399ce20b1373/autobahn-0.9.1.zip#md5=48ef10bbff8deef5fd6ebb0fe8d37e32 (from https://pypi.python.org/simple/autobahn/), version: 0.9.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/dc/a6/e9e85477730f6670568e937f9c0bc5ae2bf695ce5d80f41974f17fb43b5e/autobahn-0.5.14.zip#md5=e2c80ba3e46428b32837537609d4d582 (from https://pypi.python.org/simple/autobahn/), version: 0.5.14
DEBUG:pip.index:Found link https://pypi.python.org/packages/dc/df/6b4be8f9243e87fe18a3ec0a4c29beacbb2dde1a66201e0610e9bcdcf5ab/autobahn-0.4.3.zip#md5=7bbb329cc453625e8631a826a9dbca44 (from https://pypi.python.org/simple/autobahn/), version: 0.4.3
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/de/f5/239aeaf0862c70e67bf56bcde8828a1433d0caed4fc87a889ac20ae66ee6/autobahn-0.4.2.win32.exe#md5=fb5a90f9dbbbe110c5fe4183a6211e93 (from https://pypi.python.org/simple/autobahn/); unsupported archive format: .exe
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/e0/c1/31c0dbae43a3a7a0441bca5f9c0cc33b2737458b2c2bcfa9b9fc2e1190f0/autobahn-0.6.4-py2.7.egg#md5=5551fb1b5840c4aea4c045e675684c00 (from https://pypi.python.org/simple/autobahn/); unsupported archive format: .egg
DEBUG:pip.index:Found link https://pypi.python.org/packages/e3/37/1297551d3066ec9b013dd3a1a7e2cca85900d3fe95194779370e8e7a7af7/autobahn-0.14.1.tar.gz#md5=576b63ce7fa7846f64650263842b712b (from https://pypi.python.org/simple/autobahn/), version: 0.14.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/e4/2e/01a64212b1eb580d601fa20f146c962235e3493795f46e3b254597ec635d/autobahn-17.10.1.tar.gz#md5=f8c8d74bf73644719b751e6fb11dc4a3 (from https://pypi.python.org/simple/autobahn/), version: 17.10.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/e5/69/469e67abca605878781985a6c54a0ff5bdcbbf89a04ccd98564c4cd7af24/autobahn-0.7.0.tar.gz#md5=6d82440b1ad61ed6d70649e7937ad403 (from https://pypi.python.org/simple/autobahn/), version: 0.7.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/e5/6f/bb136625581cef64223f507ac8c8d8999f8cc84e3899b80d8d8f91c32d2c/autobahn-0.13.0.tar.gz#md5=6e7206b04455db945dc1e13a5c0e2839 (from https://pypi.python.org/simple/autobahn/), version: 0.13.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/e6/8f/ed2947ea6f0bb16b9131da972b0e4caaf775b30267d7110ebe1188353256/autobahn-17.6.1-py2.py3-none-any.whl#md5=df88833df31c000ab840743445977c9e (from https://pypi.python.org/simple/autobahn/), version: 17.6.1
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/e7/f3/9ecb646a240fba4caba02bd9168d83aaa1fdcfd6057f6d88028f6c7a5ea8/autobahn-0.3.2.win32.exe#md5=e035a331609881e78b73a5a3e1c7fdee (from https://pypi.python.org/simple/autobahn/); unsupported archive format: .exe
DEBUG:pip.index:Found link https://pypi.python.org/packages/e8/c4/baed9f385e20c8325e40df2785f8adca13369cc09891fc4e36fb06de7b82/autobahn-17.9.3-py2.py3-none-any.whl#md5=453eea47592f449f77a6172dcb670107 (from https://pypi.python.org/simple/autobahn/), version: 17.9.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/e8/d7/d87ceac9f755d9289cb303f7520345f07e7eab2f7d32b67b0ec315dd3fe8/autobahn-17.7.1-py2.py3-none-any.whl#md5=d373931a0cdea6c371cfeb4b0eca8574 (from https://pypi.python.org/simple/autobahn/), version: 17.7.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/e9/0e/f2b9cc44e04147b5fbbb3eadd09130b7830c078a8b8efc316891a3a28ce0/autobahn-17.10.1-py2.py3-none-any.whl#md5=7e31bf0993158bdf3847e0070eb22557 (from https://pypi.python.org/simple/autobahn/), version: 17.10.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/ea/f6/7788ae4ad8a7d6c1e6cf83b73d20268bcf63127ea85a36bed3c08a2f151e/autobahn-0.10.3.tar.gz#md5=185c52e8a3afb5350bcd8e152b6229d8 (from https://pypi.python.org/simple/autobahn/), version: 0.10.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/ec/09/eb97e19fd7c318565cb93e1674a76abfc1eb6c21b7127e495951d8501ee1/autobahn-0.8.11.zip#md5=60bacec597210f3289d08f67614d182b (from https://pypi.python.org/simple/autobahn/), version: 0.8.11
DEBUG:pip.index:Found link https://pypi.python.org/packages/ee/06/01d16868ee8279a572bd76e033cec808b2bc2ce9a67d9c77f2c5a9f0b13f/autobahn-0.8.6.zip#md5=160429e7fb043940e79aa7f4ebbab57a (from https://pypi.python.org/simple/autobahn/), version: 0.8.6
DEBUG:pip.index:Found link https://pypi.python.org/packages/ee/d5/b27614e1b32d702c5891580ddccbbf8e6699dfc39938a1b8509000739fef/autobahn-17.9.2-py2.py3-none-any.whl#md5=50781578a8b5f5ba588241bae7476276 (from https://pypi.python.org/simple/autobahn/), version: 17.9.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/ef/47/5e9d13dbc479ad57867269ad561c4b0226fb4cce59c32ba3dd2cbfc42a3c/autobahn-17.6.1.tar.gz#md5=4b93eb98a33e6b5e1cf964ee1d211b75 (from https://pypi.python.org/simple/autobahn/), version: 17.6.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/ef/85/ac5b4331635b184357725aec724f83753d7673b4e90712fe3fdaf2ad3296/autobahn-0.4.2.zip#md5=1697cbacaa4dfc654b19262809ed23ed (from https://pypi.python.org/simple/autobahn/), version: 0.4.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/ef/f4/e5a25ab453409a75a0feabad8295f0ead7e75d7367ecc57e0470aaf161fc/autobahn-0.11.0.tar.gz#md5=13b2d91917b1e272359ed323236565c1 (from https://pypi.python.org/simple/autobahn/), version: 0.11.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/f0/44/51932237559b032d737c012a94e30c1475b02c6396adedd9693d9a70932e/autobahn-0.10.1.tar.gz#md5=c51527a6693396e4e705d064eb57353f (from https://pypi.python.org/simple/autobahn/), version: 0.10.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/f4/05/da53e55973b8de44300edea802640f88285aed86909ad982e6a344dd021e/autobahn-0.6.3.zip#md5=400fe0f8e6adcb31dca970a04817c3c5 (from https://pypi.python.org/simple/autobahn/), version: 0.6.3
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/f5/90/d0f9ebef25e241661f250403f8d76094ba4136d56d1cf466bcedc2b1476e/autobahn-0.4.10-py2.7.egg#md5=33d5f6c70638fe1e8681da9aee69955b (from https://pypi.python.org/simple/autobahn/); unsupported archive format: .egg
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/fd/fa/c25a0c8bde8b58dbc50260cdca41f6e7cf8a6d7db062f471d43a776dd911/autobahn-0.4.3.win32.exe#md5=0b66e9addd3b13dda326adbae7051c12 (from https://pypi.python.org/simple/autobahn/); unsupported archive format: .exe
DEBUG:pip.index:1 location(s) to search for versions of autobahn:
DEBUG:pip.index:* https://pypi.python.org/simple/autobahn/
DEBUG:pip.index:Getting page https://pypi.python.org/simple/autobahn/
DEBUG:pip._vendor.cachecontrol.controller:Looking up "https://pypi.python.org/simple/autobahn/" in the cache
DEBUG:pip._vendor.cachecontrol.controller:Current age based on date: 555
DEBUG:pip._vendor.cachecontrol.controller:Freshness lifetime from max-age: 600
DEBUG:pip._vendor.cachecontrol.controller:Freshness lifetime from request max-age: 600
DEBUG:pip._vendor.cachecontrol.controller:The response is "fresh", returning cached response
DEBUG:pip._vendor.cachecontrol.controller:600 > 555
DEBUG:pip.index:Analyzing links from page https://pypi.python.org/simple/autobahn/
DEBUG:pip.index:Found link https://pypi.python.org/packages/00/37/72c2a363459d0e9797368a76cc740dba8c12bbe2c266e3699ad56e749a17/autobahn-0.9.4.zip#md5=c4aac8412b7f771dc717c031680a2ef3 (from https://pypi.python.org/simple/autobahn/), version: 0.9.4
DEBUG:pip.index:Found link https://pypi.python.org/packages/02/77/8429ed2f7c9adc911e9f362f1c8058f87e209e5dc0273bac37d22fbe0b10/autobahn-17.6.2.tar.gz#md5=905a07cde5c2eb3566a6d8d40832cac8 (from https://pypi.python.org/simple/autobahn/), version: 17.6.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/04/97/db28c2a0b531730050ac8d2b9f11f501f5d9c54e7ca2a416c9cd649bccbe/autobahn-0.17.0.tar.gz#md5=3b862e5e95eca34f804c2516c300f517 (from https://pypi.python.org/simple/autobahn/), version: 0.17.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/08/3c/2193a7badc3b75d6435e971616bc21b9bf3ed0fc30c30017e1b8d5660b6d/autobahn-0.8.5.zip#md5=1aa9843fa4cbadf9ce35a32b28f0c909 (from https://pypi.python.org/simple/autobahn/), version: 0.8.5
DEBUG:pip.index:Found link https://pypi.python.org/packages/0a/4a/08c6ae25a593ec83d3cf79be42afc47513d39be98ef66af81713e6d790ec/autobahn-0.9.3-3.zip#md5=7a127a317f55a10824b492bf58ebddce (from https://pypi.python.org/simple/autobahn/), version: 0.9.3-3
DEBUG:pip.index:Found link https://pypi.python.org/packages/11/43/921c29555c9ecc7c50993743fbf554bbfcc8bf2755ecf74c917c1cbea6c9/autobahn-0.4.1.zip#md5=d96c11ab9d7053026eefb62712f05c26 (from https://pypi.python.org/simple/autobahn/), version: 0.4.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/12/6e/ace8c9b897f580ce427b720ce898491c0e59a39f8b0ca5cdf9d6bab91bec/autobahn-0.8.15.zip#md5=91757ba066504e94c2aad852caa2f34a (from https://pypi.python.org/simple/autobahn/), version: 0.8.15
DEBUG:pip.index:Found link https://pypi.python.org/packages/17/71/898dbf715057e720b01e351f2b00d881cf1066c0d0dd719446e930de6818/autobahn-17.9.2.tar.gz#md5=89fcff6d03d54d1d802ecccaeefb8db7 (from https://pypi.python.org/simple/autobahn/), version: 17.9.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/17/99/5937aad036a834ad37df4f535bd6bc74490200f078ac6ec1e2f66dd2b581/autobahn-0.8.4-3.zip#md5=ece3f7b2edbd520f3a732d12bc433b45 (from https://pypi.python.org/simple/autobahn/), version: 0.8.4-3
DEBUG:pip.index:Found link https://pypi.python.org/packages/19/c1/8d23bc0bf5837f78e3a7c6c7bd57a16e114557f3cbea68b51444c6ecf454/autobahn-0.9.6.tar.gz#md5=99d70138bf0a4e14818916144fd9e3db (from https://pypi.python.org/simple/autobahn/), version: 0.9.6
DEBUG:pip.index:Found link https://pypi.python.org/packages/1a/91/bb5e28db37a4fdc7c056c352277cd6847849b6a7721be7c458941f480267/autobahn-17.5.1.tar.gz#md5=b5719654e9acc16d0ff2f50abc32c251 (from https://pypi.python.org/simple/autobahn/), version: 17.5.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/1b/c9/b4c8fa9aa92d5a5ea6786b173b1daf5ae57682aeed059987a74637d6e0fe/autobahn-0.17.2.tar.gz#md5=f3632cfbc3766c32a20d3293c62187e1 (from https://pypi.python.org/simple/autobahn/), version: 0.17.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/1c/a6/3cc8ba02b3d94e348b401bafa8765fe350ce6bc47fe79d21da5cbf1344f9/autobahn-0.7.4.zip#md5=5ec8951a1c0b246fc4fba83c709707c1 (from https://pypi.python.org/simple/autobahn/), version: 0.7.4
DEBUG:pip.index:Found link https://pypi.python.org/packages/1d/a7/87b561169edad7367bf6fb9706b3e72855feee954e8e5e34944dfe3bb02e/autobahn-0.9.3.zip#md5=10c9ea1376dcd9fe0b31a4737258aa9e (from https://pypi.python.org/simple/autobahn/), version: 0.9.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/25/f9/89a8e9e9717e7eb5841d5433c4c2764e9a98dfdb610b5ebdd3080a11b604/autobahn-0.16.0-py2.py3-none-any.whl#md5=0b1d7eb6c5f3900255a7a83676c15e20 (from https://pypi.python.org/simple/autobahn/), version: 0.16.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/27/c7/9861ce6fc37ddf1d9dd3508534166a66f91bd710949b358652475ae870e2/autobahn-0.13.1.tar.gz#md5=3f53f6c8a86799c576cc0cc2047d6135 (from https://pypi.python.org/simple/autobahn/), version: 0.13.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/28/36/c146415f70f62ae678c4b6dae64872eb7d55661dbb8830a5fa594143478c/autobahn-0.17.1.tar.gz#md5=f6b3c2684b873ae29111385b695b28fb (from https://pypi.python.org/simple/autobahn/), version: 0.17.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/28/57/d300625e568a1d7c657f4b9520fe192130023432a5d632fbac0dcb236390/autobahn-0.18.2.tar.gz#md5=48cc34f14022a13cf2915466179c7bb7 (from https://pypi.python.org/simple/autobahn/), version: 0.18.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/2b/af/d87485cf49c82b74a4f62b85906ac7beb988cace7e0901e399c6729fe7cb/autobahn-17.6.2-py2.py3-none-any.whl#md5=3059c316f8a8e233b98a6939d6288df3 (from https://pypi.python.org/simple/autobahn/), version: 17.6.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/31/59/b9be3da5edfe903311e3d00cdedbe35f1cad12c090184566cbc9a7515e9e/autobahn-0.3.1.win32.zip#md5=20d2532ddad3b9d66f016223b3c8f65b (from https://pypi.python.org/simple/autobahn/), version: 0.3.1.win32
DEBUG:pip.index:Found link https://pypi.python.org/packages/31/f1/1b2acdee2c082257e4d98bf26bfbd6398c7a2faa74e5feb9225e491dedac/autobahn-0.10.9.tar.gz#md5=fa90fa91f9c0e711ca6e87c7e9d835b7 (from https://pypi.python.org/simple/autobahn/), version: 0.10.9
DEBUG:pip.index:Found link https://pypi.python.org/packages/34/1a/cc529fd3f7e78ecc729d3038689260029fcfbd8f39431a08e333411bc9ee/autobahn-0.18.0.tar.gz#md5=5bed3787569ab6b31b827f57c480f2ea (from https://pypi.python.org/simple/autobahn/), version: 0.18.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/34/64/56b69ff88da42b29794a7b6d22f3d55bc2d487443d18a4611e60c1b6d901/autobahn-17.7.1.tar.gz#md5=0458295eff8a05b09982e87125a1a2e8 (from https://pypi.python.org/simple/autobahn/), version: 17.7.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/37/72/4e472d8fbe7f3977efcb357bb627cae1245ee1d4844a42dbfb6d9111c2cd/autobahn-0.6.5.zip#md5=90bfd4391c6ff059e4cc322966145a44 (from https://pypi.python.org/simple/autobahn/), version: 0.6.5
DEBUG:pip.index:Found link https://pypi.python.org/packages/3c/e4/cba5f80c53a57fe37f990ceef287e9704cb1be1fb897d30d3d07694d6332/autobahn-0.5.9.zip#md5=f8018b9bae62b47812a551bff1fd14ab (from https://pypi.python.org/simple/autobahn/), version: 0.5.9
DEBUG:pip.index:Found link https://pypi.python.org/packages/3e/5c/343087faca9a0708811a32b75f0fdc4d0ed901cb3863e19c105151caf13d/autobahn-0.7.2.tar.gz#md5=4dd99f507bb2261033a671c3a85252d2 (from https://pypi.python.org/simple/autobahn/), version: 0.7.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/3e/e7/bd787a96631ed5cb148a9f1dd4a4bfa9d2dddee4a44bce8414ad59c620ab/autobahn-0.9.3-2.zip#md5=14caac6a8903be9279f3ad8687d338a6 (from https://pypi.python.org/simple/autobahn/), version: 0.9.3-2
DEBUG:pip.index:Found link https://pypi.python.org/packages/43/7e/4f953892d2660d734e04ab39a2945e9623c3a25d2696d25107bed3a0ab7f/autobahn-0.8.2.zip#md5=a7cff61550397dc6d5e8da62f477304e (from https://pypi.python.org/simple/autobahn/), version: 0.8.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/44/2e/4e3618cab8e70a59370ca3db308e4b533edfe5fce2511784b68423d68517/autobahn-0.16.1-py2.py3-none-any.whl#md5=e36b3584f94586f0e58a9e71feba84f3 (from https://pypi.python.org/simple/autobahn/), version: 0.16.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/49/2d/36749128ef076381e879dd93c13bfeee90888b2b642e20cbf8ca4dcfc0c1/autobahn-0.18.1-py2.py3-none-any.whl#md5=b179c931098ef52e55f84e63d8137716 (from https://pypi.python.org/simple/autobahn/), version: 0.18.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/4a/5c/8a8e35a5c1767f3f42811c549dd3dcf535b3d2bea27839a9fce9f7b85a16/autobahn-0.8.3.zip#md5=111f825423da398ec05ecb9eb1d64c25 (from https://pypi.python.org/simple/autobahn/), version: 0.8.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/4f/0c/3595e9a3ceadfaf70cc02ca8290a60cde7efa853057d4c50ef0bc074ed09/autobahn-18.3.1-py2.py3-none-any.whl#md5=54d642d49b0defa1bb03452edf99c11f (from https://pypi.python.org/simple/autobahn/), version: 18.3.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/53/62/cd43602f0486d7fdcee28e64cccdc5a2f676b31d4657e609aa8c739d26be/autobahn-0.8.14.zip#md5=1fb0bd2340f4dc9289eee7703b043c30 (from https://pypi.python.org/simple/autobahn/), version: 0.8.14
DEBUG:pip.index:Found link https://pypi.python.org/packages/5e/ed/992d09251ae44e82b1c7cc47305b831ef88bb13dc95d436a8670a39f64b3/autobahn-0.14.1-py2.py3-none-any.whl#md5=d52cd6db3097a2e955758369f31794ee (from https://pypi.python.org/simple/autobahn/), version: 0.14.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/63/d2/3280efcb82f6036387b7ea5f81b3071a51a33908efcbba1e211697481f00/autobahn-0.14.0.tar.gz#md5=d0a71655588094fdf9c72074fd8073f8 (from https://pypi.python.org/simple/autobahn/), version: 0.14.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/66/21/2d5a340e1c202c43e468c6dd1b4b1f615824e715890e7685fd977ab0354b/autobahn-0.18.0-py2.py3-none-any.whl#md5=d308eeb79af95d58a27b767216927ab3 (from https://pypi.python.org/simple/autobahn/), version: 0.18.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/68/25/e15f18a187fd20deee3c5a1be567e82bc0b2f44f0f5a9e89a9f236dcb9ce/autobahn-17.8.1.tar.gz#md5=a304ab4c6006cd11402429023441bbf6 (from https://pypi.python.org/simple/autobahn/), version: 17.8.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/68/37/2523309412f0fb93a7784c65e5c5639b4b5d7a84f91374ad6c3c2d5af60b/autobahn-0.16.0.tar.gz#md5=9850702d0078c5a4aa17170afe2f233c (from https://pypi.python.org/simple/autobahn/), version: 0.16.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/68/ed/a2e80b4490955f450d8ef7419a1f7052b21681c8ed2c27c15796674484ff/autobahn-17.9.3.tar.gz#md5=26c24d0049c43f902ab0b8d16a3e3ce2 (from https://pypi.python.org/simple/autobahn/), version: 17.9.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/69/f6/2e8a56020038bd0b3a353d81796818d74a93011994fb7a505547dffbd244/autobahn-0.8.9.zip#md5=3abea1f351fe0b675ecf6979311547c6 (from https://pypi.python.org/simple/autobahn/), version: 0.8.9
DEBUG:pip.index:Found link https://pypi.python.org/packages/6c/00/ec94843fc32d91e6be9b1cf4c2c527e83da77eeeb2d044a8a0e8e062b277/autobahn-0.9.5.zip#md5=5a7e16dcad7d8ab544fa7780c3ae55fc (from https://pypi.python.org/simple/autobahn/), version: 0.9.5
DEBUG:pip.index:Found link https://pypi.python.org/packages/6c/b1/e3d55aef5d0328eb9d66b4116b05b1aa80c2aef710333a7d551a443e00a8/autobahn-0.10.5.post2.tar.gz#md5=1e236b887e78c2bf779933c90cf7f06a (from https://pypi.python.org/simple/autobahn/), version: 0.10.5.post2
DEBUG:pip.index:Found link https://pypi.python.org/packages/71/83/484c08f0977f3e332c14f283ee9b6b9cffde86973f3ca40ef9fda659972b/autobahn-0.7.3.tar.gz#md5=c139a6953a1cf3415e49241ade270106 (from https://pypi.python.org/simple/autobahn/), version: 0.7.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/72/03/9ccc09f70f7d557d833799120a6ce9be6b31fb122f3162569b305d0f3d88/autobahn-0.8.7.zip#md5=0f87e3072d6ce3ad9d6e2c771f405665 (from https://pypi.python.org/simple/autobahn/), version: 0.8.7
DEBUG:pip.index:Found link https://pypi.python.org/packages/72/1d/ad29b1cb06bc56854c38a42d907aa5c3de9bfcf078ff870c8ea869024dca/autobahn-0.10.2.tar.gz#md5=516fce82b3b4f70e1ee3545f3546e8e6 (from https://pypi.python.org/simple/autobahn/), version: 0.10.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/79/c2/d831ba6e27b1b1d36e3443b072632cc25df8ba9d74adf4096bfd5a19dd9c/autobahn-18.3.1.tar.gz#md5=b3705aa5b52687cc2730f90623e2de89 (from https://pypi.python.org/simple/autobahn/), version: 18.3.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/7a/29/7b81d1c451fbcb50cc53c03170512b17b53bbc0d560fed01ec4fd5396042/autobahn-0.8.0.zip#md5=c8313cb19ec101a5fa02c6ea0ed61a04 (from https://pypi.python.org/simple/autobahn/), version: 0.8.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/7a/f0/a98cd6c905ec0bfc2f90a888eef1ee6de1c6c52783a6d84c1f6580d81636/autobahn-0.9.0.zip#md5=a45b73d988f3f3c67bd849118808040d (from https://pypi.python.org/simple/autobahn/), version: 0.9.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/7b/82/81a7ce937515c0822628d53eb3c7db8a85882a14f681f09c235f2f29e789/autobahn-0.10.7.tar.gz#md5=43affb94dc2bcdae9d5d9263211972f1 (from https://pypi.python.org/simple/autobahn/), version: 0.10.7
DEBUG:pip.index:Found link https://pypi.python.org/packages/7b/91/96869d981bca61e852289a6db878456b287cba697b9bb2e06c4ee14276ac/autobahn-0.8.4-2.zip#md5=460ccaec1e85301094b19b95d9983023 (from https://pypi.python.org/simple/autobahn/), version: 0.8.4-2
DEBUG:pip.index:Found link https://pypi.python.org/packages/7b/cc/5c702abd1fa4b2c49e1decfb69e9153f0cd226add41143b242f7369cd314/autobahn-0.8.13.zip#md5=834d71e4773ee95a0128c7dd73f18e73 (from https://pypi.python.org/simple/autobahn/), version: 0.8.13
DEBUG:pip.index:Found link https://pypi.python.org/packages/7e/88/e1c421917688b70733df30008405ec739640d29f19e027f9f2dc00652aa7/autobahn-0.9.4-2.zip#md5=aaf13b602104c12dd26825cd0a0a3523 (from https://pypi.python.org/simple/autobahn/), version: 0.9.4-2
DEBUG:pip.index:Found link https://pypi.python.org/packages/80/40/bab2da78a1805a5039ad9fad2aec6bce8bdaf36e25bd32cd8a547a28c178/autobahn-0.15.0.tar.gz#md5=c45a37a21f2818eb4ca210f3d374aadf (from https://pypi.python.org/simple/autobahn/), version: 0.15.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/80/48/778cb427049f34680a461b80294b438db14e5253af0f833378dc4ce6fc9a/autobahn-17.9.1-py2.py3-none-any.whl#md5=52107dc0e9e0e1e9c6dadcf559ff60aa (from https://pypi.python.org/simple/autobahn/), version: 17.9.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/84/07/bd244a0578552fc03bdad6be4d1a135dacccfbc821c34ad4c734b9ffa988/autobahn-17.9.1.tar.gz#md5=78b40cbbf7c1130bd1241aa51333223f (from https://pypi.python.org/simple/autobahn/), version: 17.9.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/84/c1/5b3f346b6c7138b7eeacba08cababaeecd6035b224ea32770478393151ad/autobahn-0.10.0.tar.gz#md5=6958bb95230ece5e11158e1362b1fe1c (from https://pypi.python.org/simple/autobahn/), version: 0.10.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/85/41/39b3b4fd3f347d8e3a493f979f7662362d6b1a44ef1370603239683573ea/autobahn-0.5.1.zip#md5=92d27b702a269d948b370d41246eff8f (from https://pypi.python.org/simple/autobahn/), version: 0.5.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/87/d7/6abeb1d25e40aec7ad864f07f6be75f1770ffdb3182b88b20c5908f75d8f/autobahn-0.8.8.zip#md5=7dc8c0712e82213c0958d5351932a318 (from https://pypi.python.org/simple/autobahn/), version: 0.8.8
DEBUG:pip.index:Found link https://pypi.python.org/packages/88/a5/2815b197a44851dab6611045047b9aad1827276a8b1c197449e8a43b314c/autobahn-0.17.0-py2.py3-none-any.whl#md5=b11cb348da479049f0b9744407b0ae87 (from https://pypi.python.org/simple/autobahn/), version: 0.17.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/8f/8f/01f9fc1716d601b52d450d2101946e8b6ecf8ea20a359b3b63efe832e798/autobahn-0.8.1.zip#md5=098179c455947e26608f105ae08c8493 (from https://pypi.python.org/simple/autobahn/), version: 0.8.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/92/8c/5bd1890d8aa23f1a175f98b69120b1ccb548af8da6a78aac73cc89a5c3bd/autobahn-0.17.2-py2.py3-none-any.whl#md5=ac3d7a3d11a877ef0c3f74f7f730e1d9 (from https://pypi.python.org/simple/autobahn/), version: 0.17.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/94/d8/fd93831abdd442fd4e46081f832c61374748aa6a03ee5d00f10fff3635cb/autobahn-0.8.4.zip#md5=4ed7f866edd492ff8dbfce6c5520dc48 (from https://pypi.python.org/simple/autobahn/), version: 0.8.4
DEBUG:pip.index:Found link https://pypi.python.org/packages/9a/65/7feb12c5505a5931a5e21d390ed219aa9869f5a4d471ff449f1fbf9986e3/autobahn-0.7.1.tar.gz#md5=52f71245009e16ad125a9971509d0826 (from https://pypi.python.org/simple/autobahn/), version: 0.7.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/9d/6f/0531d77f44c853a3a7c095617421de675768de91449815d915a9dac6d3d1/autobahn-0.9.2.zip#md5=c1dc7b2f9d96759dc1dc11efd42cd30e (from https://pypi.python.org/simple/autobahn/), version: 0.9.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/9e/a3/9d742d4b3ea49e6b14cbc8e7fc5e29b25d725a56f98ca13f0c930a176ded/autobahn-0.16.1.tar.gz#md5=f43317b5e49e12e818ce9019893a2a88 (from https://pypi.python.org/simple/autobahn/), version: 0.16.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/a2/42/f0d00832d29890894899ed63fd02fe80229c3f0ed66bd3d77bac57c0784a/autobahn-0.5.8.zip#md5=fba5a322a290b01a3744e0737b951349 (from https://pypi.python.org/simple/autobahn/), version: 0.5.8
DEBUG:pip.index:Found link https://pypi.python.org/packages/a5/62/1c9fb7765de6b4652442d8196c9be03455c3f62a2a1d93636102ccb8f4e9/autobahn-0.12.1.tar.gz#md5=b4b5445050749c1033b9b58f694f0c64 (from https://pypi.python.org/simple/autobahn/), version: 0.12.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/ad/bb/6f5fe41644396f5d53d285c7662edc6b77d9f6b6e3196c90e0eda4fcb3b1/autobahn-0.5.5.zip#md5=237cb4b2b831b6357eeaf028bc5052aa (from https://pypi.python.org/simple/autobahn/), version: 0.5.5
DEBUG:pip.index:Found link https://pypi.python.org/packages/ae/31/a77887511c21418cb704abb612bdb04c2e14fd629fecaf358337d336d546/autobahn-0.10.4.tar.gz#md5=4ae22413ee9ba8f6692e80e171b68777 (from https://pypi.python.org/simple/autobahn/), version: 0.10.4
DEBUG:pip.index:Found link https://pypi.python.org/packages/ae/4d/5a73d3c422c1ad2fc25e94d23e8fd7b2c3d70b13d53f09f0261c913b79e4/autobahn-0.15.0-py2.py3-none-any.whl#md5=53888cabca52ad0babe7da4d561825a2 (from https://pypi.python.org/simple/autobahn/), version: 0.15.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/b1/c5/28af568414afab1227756d17ca0c91e9e54daf0c31a7248698ffbc48fc25/autobahn-0.5.0.zip#md5=3ab33f56fe1f3e209efce7ce9ca517c5 (from https://pypi.python.org/simple/autobahn/), version: 0.5.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/be/2f/22f3b701db3c5da0ee03917cd26edbf900ca2228405d119e598f35997cb4/autobahn-0.3.2.zip#md5=7eaafd1f832884893d0554d9159cd1ce (from https://pypi.python.org/simple/autobahn/), version: 0.3.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/c1/11/ce7ef57c4ffbc748f7b9c7db89902613a9cf5fb104d780854f803e2a8d97/autobahn-0.14.0-py2.py3-none-any.whl#md5=e4145f4df02d155ba3f260b15b66c53f (from https://pypi.python.org/simple/autobahn/), version: 0.14.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/c1/2c/bc117ed7b9add78307305a75eef35c7b4b27ae23bb80c571ec789b0ca247/autobahn-0.18.1.tar.gz#md5=b53539eb83b99c0b4a6357909991e5f7 (from https://pypi.python.org/simple/autobahn/), version: 0.18.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/c2/98/d7493e1e8daed9ef65b366ca76692debe6ff971495ba83e2c09dae0d2b5e/autobahn-0.5.2.zip#md5=80e41acfa30e88bbaf71ce5a81be7f1a (from https://pypi.python.org/simple/autobahn/), version: 0.5.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/c2/d7/81264851c2eb444423f830008c47c04f78dba15f957cd0fd1146bb287930/autobahn-17.5.1-py2.py3-none-any.whl#md5=62faa728e097fc502ffb7bdb08c6df43 (from https://pypi.python.org/simple/autobahn/), version: 17.5.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/c5/94/ef891ccbf74172bd7c8ceb36831e5afdb982680c91068ee9d8b6515b9921/autobahn-0.10.8.tar.gz#md5=d0974e68c93df402a603227cffa061a1 (from https://pypi.python.org/simple/autobahn/), version: 0.10.8
DEBUG:pip.index:Found link https://pypi.python.org/packages/c6/ad/893c9255a2c8bd48c33741d28128c5e123f737487d62b54b5273a0404db5/autobahn-0.6.4.zip#md5=23ea0ac72869fa0d2d9d59ef1a02f418 (from https://pypi.python.org/simple/autobahn/), version: 0.6.4
DEBUG:pip.index:Found link https://pypi.python.org/packages/c7/34/c2b1a8c14687b5a01ece9f8124eb9e1ec1720d5c1ac59439bd4d3f1bd1db/autobahn-0.8.10.zip#md5=7fc755975d39b76de882d87aa9f90f95 (from https://pypi.python.org/simple/autobahn/), version: 0.8.10
DEBUG:pip.index:Found link https://pypi.python.org/packages/cc/38/a039379f99c45d70561cc182771981a049ef5e602b43a1aee08e245330a6/autobahn-0.4.0.zip#md5=cecea2dc77512ab37e75ca1a9518ee31 (from https://pypi.python.org/simple/autobahn/), version: 0.4.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/cc/5f/4626ac7871e1afa2028c05aba43c21da1afad725b339719c914a9dfdf8a0/autobahn-0.8.12.zip#md5=ebaf51c3f1f250d149f8215e17c02235 (from https://pypi.python.org/simple/autobahn/), version: 0.8.12
DEBUG:pip.index:Found link https://pypi.python.org/packages/cc/da/3f3deb583d9804c9f2597d3af31bdf493167a7a16b6987ba0d4987f839f8/autobahn-0.18.2-py2.py3-none-any.whl#md5=3dc0b5423b9eec0c03a5744a71bbcaed (from https://pypi.python.org/simple/autobahn/), version: 0.18.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/cd/3f/e28cdc360084f031ecd9268eff8c943fc155171799c7e9ebb3ef51f779ce/autobahn-0.10.6.tar.gz#md5=987a18783dabeeb30c737b278e11d9df (from https://pypi.python.org/simple/autobahn/), version: 0.10.6
DEBUG:pip.index:Found link https://pypi.python.org/packages/cf/7a/cc3e36bd53ef45e4106c9934dbabda23ffa1d6a10535df9d8930213ab050/autobahn-17.8.1-py2.py3-none-any.whl#md5=f66fae375e2dfb6f3beb57f90de2e88c (from https://pypi.python.org/simple/autobahn/), version: 17.8.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/d1/23/50714b9d2f84594a8079d16c54a6f5650b564e8a6830149e141d48963e47/autobahn-0.4.10.zip#md5=fd61709bb3e1025d673ff202d2b8313e (from https://pypi.python.org/simple/autobahn/), version: 0.4.10
DEBUG:pip.index:Found link https://pypi.python.org/packages/d1/75/b57c83ef8753d01925ceb0cbb8517aec10468384ad9e85f9aa1a8d332d4b/autobahn-0.10.5.tar.gz#md5=75cbbead47bdac8ee606ca3ce9ee742e (from https://pypi.python.org/simple/autobahn/), version: 0.10.5
DEBUG:pip.index:Found link https://pypi.python.org/packages/d8/a1/c97c15c42451f216f4ae52e4ce88e9075b0bc2cdaa1f89d9a5105ddaca04/autobahn-0.17.1-py2.py3-none-any.whl#md5=e5f586c2a63ab649014322bce8c95bcd (from https://pypi.python.org/simple/autobahn/), version: 0.17.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/db/a9/cd078e81fec0532a84d34ba026ff1fd29f89782a379e795e399ce20b1373/autobahn-0.9.1.zip#md5=48ef10bbff8deef5fd6ebb0fe8d37e32 (from https://pypi.python.org/simple/autobahn/), version: 0.9.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/dc/a6/e9e85477730f6670568e937f9c0bc5ae2bf695ce5d80f41974f17fb43b5e/autobahn-0.5.14.zip#md5=e2c80ba3e46428b32837537609d4d582 (from https://pypi.python.org/simple/autobahn/), version: 0.5.14
DEBUG:pip.index:Found link https://pypi.python.org/packages/dc/df/6b4be8f9243e87fe18a3ec0a4c29beacbb2dde1a66201e0610e9bcdcf5ab/autobahn-0.4.3.zip#md5=7bbb329cc453625e8631a826a9dbca44 (from https://pypi.python.org/simple/autobahn/), version: 0.4.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/e3/37/1297551d3066ec9b013dd3a1a7e2cca85900d3fe95194779370e8e7a7af7/autobahn-0.14.1.tar.gz#md5=576b63ce7fa7846f64650263842b712b (from https://pypi.python.org/simple/autobahn/), version: 0.14.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/e4/2e/01a64212b1eb580d601fa20f146c962235e3493795f46e3b254597ec635d/autobahn-17.10.1.tar.gz#md5=f8c8d74bf73644719b751e6fb11dc4a3 (from https://pypi.python.org/simple/autobahn/), version: 17.10.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/e5/69/469e67abca605878781985a6c54a0ff5bdcbbf89a04ccd98564c4cd7af24/autobahn-0.7.0.tar.gz#md5=6d82440b1ad61ed6d70649e7937ad403 (from https://pypi.python.org/simple/autobahn/), version: 0.7.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/e5/6f/bb136625581cef64223f507ac8c8d8999f8cc84e3899b80d8d8f91c32d2c/autobahn-0.13.0.tar.gz#md5=6e7206b04455db945dc1e13a5c0e2839 (from https://pypi.python.org/simple/autobahn/), version: 0.13.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/e6/8f/ed2947ea6f0bb16b9131da972b0e4caaf775b30267d7110ebe1188353256/autobahn-17.6.1-py2.py3-none-any.whl#md5=df88833df31c000ab840743445977c9e (from https://pypi.python.org/simple/autobahn/), version: 17.6.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/e8/c4/baed9f385e20c8325e40df2785f8adca13369cc09891fc4e36fb06de7b82/autobahn-17.9.3-py2.py3-none-any.whl#md5=453eea47592f449f77a6172dcb670107 (from https://pypi.python.org/simple/autobahn/), version: 17.9.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/e8/d7/d87ceac9f755d9289cb303f7520345f07e7eab2f7d32b67b0ec315dd3fe8/autobahn-17.7.1-py2.py3-none-any.whl#md5=d373931a0cdea6c371cfeb4b0eca8574 (from https://pypi.python.org/simple/autobahn/), version: 17.7.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/e9/0e/f2b9cc44e04147b5fbbb3eadd09130b7830c078a8b8efc316891a3a28ce0/autobahn-17.10.1-py2.py3-none-any.whl#md5=7e31bf0993158bdf3847e0070eb22557 (from https://pypi.python.org/simple/autobahn/), version: 17.10.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/ea/f6/7788ae4ad8a7d6c1e6cf83b73d20268bcf63127ea85a36bed3c08a2f151e/autobahn-0.10.3.tar.gz#md5=185c52e8a3afb5350bcd8e152b6229d8 (from https://pypi.python.org/simple/autobahn/), version: 0.10.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/ec/09/eb97e19fd7c318565cb93e1674a76abfc1eb6c21b7127e495951d8501ee1/autobahn-0.8.11.zip#md5=60bacec597210f3289d08f67614d182b (from https://pypi.python.org/simple/autobahn/), version: 0.8.11
DEBUG:pip.index:Found link https://pypi.python.org/packages/ee/06/01d16868ee8279a572bd76e033cec808b2bc2ce9a67d9c77f2c5a9f0b13f/autobahn-0.8.6.zip#md5=160429e7fb043940e79aa7f4ebbab57a (from https://pypi.python.org/simple/autobahn/), version: 0.8.6
DEBUG:pip.index:Found link https://pypi.python.org/packages/ee/d5/b27614e1b32d702c5891580ddccbbf8e6699dfc39938a1b8509000739fef/autobahn-17.9.2-py2.py3-none-any.whl#md5=50781578a8b5f5ba588241bae7476276 (from https://pypi.python.org/simple/autobahn/), version: 17.9.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/ef/47/5e9d13dbc479ad57867269ad561c4b0226fb4cce59c32ba3dd2cbfc42a3c/autobahn-17.6.1.tar.gz#md5=4b93eb98a33e6b5e1cf964ee1d211b75 (from https://pypi.python.org/simple/autobahn/), version: 17.6.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/ef/85/ac5b4331635b184357725aec724f83753d7673b4e90712fe3fdaf2ad3296/autobahn-0.4.2.zip#md5=1697cbacaa4dfc654b19262809ed23ed (from https://pypi.python.org/simple/autobahn/), version: 0.4.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/ef/f4/e5a25ab453409a75a0feabad8295f0ead7e75d7367ecc57e0470aaf161fc/autobahn-0.11.0.tar.gz#md5=13b2d91917b1e272359ed323236565c1 (from https://pypi.python.org/simple/autobahn/), version: 0.11.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/f0/44/51932237559b032d737c012a94e30c1475b02c6396adedd9693d9a70932e/autobahn-0.10.1.tar.gz#md5=c51527a6693396e4e705d064eb57353f (from https://pypi.python.org/simple/autobahn/), version: 0.10.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/f4/05/da53e55973b8de44300edea802640f88285aed86909ad982e6a344dd021e/autobahn-0.6.3.zip#md5=400fe0f8e6adcb31dca970a04817c3c5 (from https://pypi.python.org/simple/autobahn/), version: 0.6.3
DEBUG:pip._vendor.cachecontrol.controller:Looking up "https://pypi.python.org/packages/4f/0c/3595e9a3ceadfaf70cc02ca8290a60cde7efa853057d4c50ef0bc074ed09/autobahn-18.3.1-py2.py3-none-any.whl" in the cache
DEBUG:pip._vendor.cachecontrol.controller:Current age based on date: 1182
DEBUG:pip._vendor.cachecontrol.controller:Freshness lifetime from max-age: 31557600
DEBUG:pip._vendor.cachecontrol.controller:The response is "fresh", returning cached response
DEBUG:pip._vendor.cachecontrol.controller:31557600 > 1182
DEBUG:pip._vendor.cachecontrol.controller:Looking up "https://pypi.python.org/packages/79/c2/d831ba6e27b1b1d36e3443b072632cc25df8ba9d74adf4096bfd5a19dd9c/autobahn-18.3.1.tar.gz" in the cache
DEBUG:pip._vendor.cachecontrol.controller:Current age based on date: 79
DEBUG:pip._vendor.cachecontrol.controller:Freshness lifetime from max-age: 31557600
DEBUG:pip._vendor.cachecontrol.controller:The response is "fresh", returning cached response
DEBUG:pip._vendor.cachecontrol.controller:31557600 > 79
RESULTS:
[{"name": "autobahn", "version": "18.3.1", "hashes": ["sha256:fc1d38227bb44a453b54cffa48de8b2e6ce48ddc5e97fb5950b0faa27576f385", "sha256:13199ac8e75bde47e8c2468386ce95c2489d3c7ef3eb25ef9f53094f8a2a5f0f"]}]

Potentially. But… https://status.python.org/incidents/jcg42tnvbfmm wonder if it's related

I'm wondering of the wheel you have in your cache is bad somehow.

One last thing, if you're willing to do it:

$ rm -fr ~/Library/Caches/pip
$ rm -fr ~/Libary/Caches/pipenv

Everything works dandy with 11.1.7 tho.

I’ve tried running it with 11.2.2 btw and it seems that the maintenance could def be part of the problem:

Using pip: -i https://pypi.python.org/simple

                          ROUND 1                           
Current constraints:
  autobahn[accelerate,asyncio,encryption,serialization]

Finding the best candidates:
INFO:pip._vendor.requests.packages.urllib3.connectionpool:Starting new HTTPS connection (1): pypi.python.org
  found candidate autobahn[accelerate,asyncio,encryption,serialization]==18.3.1 (constraint was <any>)

Finding secondary dependencies:
INFO:pip._vendor.requests.packages.urllib3.connectionpool:Starting new HTTPS connection (1): pypi.org
INFO:pip._vendor.requests.packages.urllib3.connectionpool:Forced retry: /pypi/autobahn/json
INFO:pip._vendor.requests.packages.urllib3.connectionpool:Starting new HTTPS connection (2): pypi.org
INFO:pip._vendor.requests.packages.urllib3.connectionpool:Forced retry: /pypi/autobahn/json
INFO:pip._vendor.requests.packages.urllib3.connectionpool:Starting new HTTPS connection (3): pypi.org
INFO:pip._vendor.requests.packages.urllib3.connectionpool:Forced retry: /pypi/autobahn/json
INFO:pip._vendor.requests.packages.urllib3.connectionpool:Starting new HTTPS connection (4): pypi.org
INFO:pip._vendor.requests.packages.urllib3.connectionpool:Forced retry: /pypi/autobahn/json
INFO:pip._vendor.requests.packages.urllib3.connectionpool:Starting new HTTPS connection (5): pypi.org
INFO:pip._vendor.requests.packages.urllib3.connectionpool:Forced retry: /pypi/autobahn/json
INFO:pip._vendor.requests.packages.urllib3.connectionpool:Starting new HTTPS connection (6): pypi.org
Traceback (most recent call last):
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/../pip/_vendor/requests/adapters.py", line 423, in send
    timeout=timeout
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/../pip/_vendor/requests/packages/urllib3/connectionpool.py", line 712, in urlopen
    release_conn=release_conn, **response_kw)
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/../pip/_vendor/requests/packages/urllib3/connectionpool.py", line 712, in urlopen
    release_conn=release_conn, **response_kw)
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/../pip/_vendor/requests/packages/urllib3/connectionpool.py", line 712, in urlopen
    release_conn=release_conn, **response_kw)
  [Previous line repeated 1 more times]
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/../pip/_vendor/requests/packages/urllib3/connectionpool.py", line 697, in urlopen
    retries = retries.increment(method, url, response=response, _pool=self)
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/../pip/_vendor/requests/packages/urllib3/util/retry.py", line 287, in increment
    raise MaxRetryError(_pool, url, error or ResponseError(cause))
pip._vendor.requests.packages.urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /pypi/autobahn/json (Caused by ResponseError('too many 503 error responses',))

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/Users/hynek/.local/bin/pipenv-resolver", line 11, in <module>
    sys.exit(main())
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/resolver.py", line 54, in main
    results = resolve(packages, pre=do_pre, sources=project.sources, verbose=is_verbose, clear=do_clear)
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/resolver.py", line 52, in resolve
    return pipenv.utils.resolve_deps(packages, which, project=project, pre=pre, sources=sources, clear=clear, verbose=verbose)
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/utils.py", line 395, in resolve_deps
    resolved_tree, resolver = actually_resolve_reps(deps, index_lookup, markers_lookup, project, sources, verbose, clear, pre)
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/utils.py", line 328, in actually_resolve_reps
    resolved_tree.update(resolver.resolve(max_rounds=PIPENV_MAX_ROUNDS))
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/patched/piptools/resolver.py", line 102, in resolve
    has_changed, best_matches = self._resolve_one_round()
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/patched/piptools/resolver.py", line 200, in _resolve_one_round
    for dep in self._iter_dependencies(best_match):
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/patched/piptools/resolver.py", line 284, in _iter_dependencies
    for dependency in self.repository.get_dependencies(ireq):
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/patched/piptools/repositories/pypi.py", line 167, in get_dependencies
    json_results = self.get_json_dependencies(ireq)
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/patched/piptools/repositories/pypi.py", line 159, in get_json_dependencies
    raise(e)
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/patched/piptools/repositories/pypi.py", line 155, in get_json_dependencies
    self._json_dep_cache[ireq] = [g for g in gen(ireq)]
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/patched/piptools/repositories/pypi.py", line 155, in <listcomp>
    self._json_dep_cache[ireq] = [g for g in gen(ireq)]
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/patched/piptools/repositories/pypi.py", line 142, in gen
    r = self.session.get(url)
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/../pip/_vendor/requests/sessions.py", line 488, in get
    return self.request('GET', url, **kwargs)
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/../pip/download.py", line 386, in request
    return super(PipSession, self).request(method, url, *args, **kwargs)
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/../pip/_vendor/requests/sessions.py", line 475, in request
    resp = self.send(prep, **send_kwargs)
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/../pip/_vendor/requests/sessions.py", line 596, in send
    r = adapter.send(request, **kwargs)
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/../pip/_vendor/cachecontrol/adapter.py", line 47, in send
    resp = super(CacheControlAdapter, self).send(request, **kw)
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/../pip/_vendor/requests/adapters.py", line 482, in send
    raise RetryError(e, request=request)
pip._vendor.requests.exceptions.RetryError: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /pypi/autobahn/json (Caused by ResponseError('too many 503 error responses',))

I suppose 11.3 is mainly swallowing JSON API problems?


After running

$ rm -fr ~/Library/Caches/pip
$ rm -fr ~/Libary/Caches/pipenv
Using pip: -i https://pypi.python.org/simple

                          ROUND 1                           
Current constraints:
  autobahn[accelerate,asyncio,encryption,serialization]

Finding the best candidates:
INFO:pip._vendor.requests.packages.urllib3.connectionpool:Starting new HTTPS connection (1): pypi.python.org
  found candidate autobahn[accelerate,asyncio,encryption,serialization]==18.3.1 (constraint was <any>)

Finding secondary dependencies:
------------------------------------------------------------
Result of round 1: stable, done
Warning: Error generating hash for autobahn
RESULTS:
[{"name": "autobahn", "version": "18.3.1", "hashes": ["sha256:13199ac8e75bde47e8c2468386ce95c2489d3c7ef3eb25ef9f53094f8a2a5f0f", "sha256:fc1d38227bb44a453b54cffa48de8b2e6ce48ddc5e97fb5950b0faa27576f385"]}]

I’m gonna say if it’s the outage’s fault then it’s godsend because this would be a terrible failure mode. :)

so, looks like there's some room for improvement to be made here in the event of a json outage

also

bandersnatch is gonna start mirroring those [json docs] at some point
and then we’ll still serve them during maint mode

Well, my point of interest is devpi tbh. :)

Anyhow I looked at https://github.com/pypa/pipenv/commit/9fbf6f4d2d9f6caae80ec072a7b7b021721934a3 and you indeed just plainly silence all failures. You should at least log something?

Also does it really make sense to get legacy deps unconditionally?


Let me quickly debug wtf happens in pypi.get_dependencies.

oh that's a deep rabbit hole.

At the moment, self.use_json is False, until we can more confident that we can use the markers it provides reliably. So, legacy_dependencies is the primary function being called.

The intention is to have the user run pipenv-resolver to learn more when there's a failure.

After explaining this, i just realized there's a bug in that code now that I've made use_json=False. Going to fix it now.

Here we go

> /Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/patched/piptools/repositories/pypi.py(176)get_dependencies()
-> try:
(Pdb) p self.use_json
False
(Pdb) l
171                     except TypeError:
172                         json_raised = True
173                         json_results = set()
174
175                 legacy_raised = False
176  ->             try:
177                     legacy_results = self.get_legacy_dependencies(ireq)
178                 except Exception:
179                     legacy_raised = True
180                     legacy_results = set()
181
(Pdb) n
> /Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/patched/piptools/repositories/pypi.py(177)get_dependencies()
-> legacy_results = self.get_legacy_dependencies(ireq)
(Pdb) n
TypeError: _prepare_file() got an unexpected keyword argument 'ignore_requires_python'

Don't do silent Pokemon catches Kenneth! ;)

I knew that was a bad idea — i blame logging

Quick zoom:

1 pipenv-resolver users hynek tmp python3 6 2018-03-10 15-31-34

This is actually reminiscent of another bug another user is having. _prepare_file absolutely takes ignore_requires_python.

Hmmm:

(Pdb++) inspect.signature(reqset._prepare_file)
<Signature (finder, req_to_install, require_hashes=False, ignore_dependencies=False)>

Confirmed in the tar.gz from PyPI. So, it's not an upload issue.

(finder, req_to_install, require_hashes=False, ignore_dependencies=False, ignore_requires_python=False)

I'm gonna guess it’s some import problem and it uses pip.req.req_set.RequirementSet from pip instead the vendored version…

We put our vendored version at the beginning of sys.modules in our __init__

but i'll change it to be on the safe side

no, everything it should be working as expected.

https://github.com/pypa/pipenv/blob/master/pipenv/__init__.py#L11

you have to invoke the function from a pipenv import, obviously (as the codebase does).

I don't think that exception's normally raised.

I’ve got some bad news:

(Pdb++) sys.path
['/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/..', '/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/patched', '/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/vendor', '/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/patched', '/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/vendor', '/Users/hynek/.local/venvs/pipenv/bin', '/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/_pdbpp_path_hack', '/Users/hynek/.local/venvs/pipenv/lib/python36.zip', '/Users/hynek/.local/venvs/pipenv/lib/python3.6', '/Users/hynek/.local/venvs/pipenv/lib/python3.6/lib-dynload', '/Users/hynek/.pyenv/versions/3.6.4/lib/python3.6', '/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages']

The first entry is site-packages of the venv.

omg, thank you

this explains so much

It probably also explains the wildly different behaviors we observed.

Cutting a release as soon as CI passes.

Thanks for your due-diligence on this one, @hynek. You've really helped a lot.

You also have earned a cookie: 🍪

Aware — it's there for later iteration.

the original logging mechanisms are back in place now, by not catching all exceptions:

Warning: Your dependencies could not be resolved. You likely have a mismatch in your sub-dependencies.
  You can use $ pipenv install --skip-lock to bypass this mechanism, then run $ pipenv graph to inspect the situation.
Could not find a version that matches aohweofihwaoeifhowef
Tried: (no version found at all)
Please check your version specifier and version number. See PEP440 for more information.

now that i've made these changes, i'm somehow reproducing your error in tests/ci.

You do? SEE I’M NOT CRAZY!

FWIW I knew there was a reason I made a local descendent of RequirementSet when I was doing this and imported from .req_set! Can you bisect back to a specific change that caused this?

non deterministic

I love how you use your $200 font literally everywhere.

I got it for free, for the record :)

Yeah, rub it in. :P

okay, fixed it!

Commit???

i was doing something dumb

tests running now, assuming successful pass, will be released momentarily.

v11.3.2 releaed. Please test @hynek :)

$ pipenv lock
Locking [dev-packages] dependencies…
nged, best_matches = self._resolve_one_round()
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/../pipenv/patched/piptools/resolver.py", line 200, in _resolve_one_round
    for dep in self._iter_dependencies(best_match):
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/../pipenv/patched/piptools/resolver.py", line 297, in _iter_dependencies
    dependencies = self.repository.get_dependencies(ireq)
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/../pipenv/patched/piptools/repositories/pypi.py", line 171, in get_dependencies
    legacy_results = self.get_legacy_dependencies(ireq)
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/../pipenv/patched/piptools/repositories/pypi.py", line 206, in get_legacy_dependencies
    result = reqset._prepare_file(self.finder, ireq, ignore_requires_python=True)
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/../pipenv/patched/pip/req/req_set.py", line 699, in _prepare_file
    self.requires_python = check_dist_requires_python(dist, absorb=False)
TypeError: check_dist_requires_python() got an unexpected keyword argument 'absorb'

Seems like you missed some import?

also:

$ pipenv-resolver 'autobahn[encryption,accelerate,asyncio,serialization]'
Traceback (most recent call last):
  File "/Users/hynek/.local/bin/pipenv-resolver", line 11, in <module>
    sys.exit(main())
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/resolver.py", line 54, in main
    results = resolve(packages, pre=do_pre, sources=project.sources, verbose=is_verbose, clear=do_clear)
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/resolver.py", line 52, in resolve
    return pipenv.utils.resolve_deps(packages, which, project=project, pre=pre, sources=sources, clear=clear, verbose=verbose)
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/utils.py", line 398, in resolve_deps
    resolved_tree, resolver = actually_resolve_reps(deps, index_lookup, markers_lookup, project, sources, verbose, clear, pre)
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/utils.py", line 331, in actually_resolve_reps
    resolved_tree.update(resolver.resolve(max_rounds=PIPENV_MAX_ROUNDS))
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/patched/piptools/resolver.py", line 102, in resolve
    has_changed, best_matches = self._resolve_one_round()
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/patched/piptools/resolver.py", line 200, in _resolve_one_round
    for dep in self._iter_dependencies(best_match):
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/patched/piptools/resolver.py", line 284, in _iter_dependencies
    for dependency in self.repository.get_dependencies(ireq):
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/patched/piptools/repositories/pypi.py", line 171, in get_dependencies
    legacy_results = self.get_legacy_dependencies(ireq)
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/patched/piptools/repositories/pypi.py", line 206, in get_legacy_dependencies
    result = reqset._prepare_file(self.finder, ireq, ignore_requires_python=True)
  File "/Users/hynek/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv/patched/pip/req/req_set.py", line 699, in _prepare_file
    self.requires_python = check_dist_requires_python(dist, absorb=False)
TypeError: check_dist_requires_python() got an unexpected keyword argument 'absorb'

Presumably that is also import related. It seems like the prescribed path modifications are not happening at runtime.

Likely because we need to set PYTHONPATH as well

yes working on it

(Or unset it—do you have it set?)

Lol. What changed about it though?

making all of pip relative imports

just patching sys.path again

i need to take a break — @techalchemy feel free to dig into this.

k got 11.3.3 out — think it fixes this for good

will take a deeper look in the morning though, this is the "putting out the fire" release

Something is still broken. I could narrow it down to installing keyring which will just silently exit with code 1.

Verbose output is more helpful:

Locking [dev-packages] dependencies…
Using pip: -i https://pypi.python.org/simple

                          ROUND 1
Current constraints:

Finding the best candidates:

Finding secondary dependencies:
------------------------------------------------------------
Result of round 1: stable, done

Locking [packages] dependencies…
Using pip: -i https://pypi.python.org/simple

                          ROUND 1
Current constraints:
  keyring

Finding the best candidates:
  found candidate keyring==11.0.0 (constraint was <any>)

Finding secondary dependencies:
  keyring==11.0.0           requires keyring==11.0.0; python_version == ">=2.7"

New dependencies found in this round:
  adding ['keyring', '==11.0.0', '[]']
Removed dependencies in this round:
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 1: not stable

                          ROUND 2
Current constraints:
  keyring==11.0.0

Finding the best candidates:
  found candidate keyring==11.0.0 (constraint was ==11.0.0)

Finding secondary dependencies:

New dependencies found in this round:
Removed dependencies in this round:
  removing ['keyring', '==11.0.0', '[]']
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 2: not stable

                          ROUND 3
Current constraints:
  keyring

Finding the best candidates:
  found candidate keyring==11.0.0 (constraint was <any>)

Finding secondary dependencies:
  keyring==11.0.0           requires keyring==11.0.0; python_version == ">=2.7"

New dependencies found in this round:
  adding ['keyring', '==11.0.0', '[]']
Removed dependencies in this round:
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 3: not stable

                          ROUND 4
Current constraints:
  keyring==11.0.0

Finding the best candidates:
  found candidate keyring==11.0.0 (constraint was ==11.0.0)

Finding secondary dependencies:

New dependencies found in this round:
Removed dependencies in this round:
  removing ['keyring', '==11.0.0', '[]']
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 4: not stable

                          ROUND 5
Current constraints:
  keyring

Finding the best candidates:
  found candidate keyring==11.0.0 (constraint was <any>)

Finding secondary dependencies:
  keyring==11.0.0           requires keyring==11.0.0; python_version == ">=2.7"

New dependencies found in this round:
  adding ['keyring', '==11.0.0', '[]']
Removed dependencies in this round:
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 5: not stable

                          ROUND 6
Current constraints:
  keyring==11.0.0

Finding the best candidates:
  found candidate keyring==11.0.0 (constraint was ==11.0.0)

Finding secondary dependencies:

New dependencies found in this round:
Removed dependencies in this round:
  removing ['keyring', '==11.0.0', '[]']
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 6: not stable

                          ROUND 7
Current constraints:
  keyring

Finding the best candidates:
  found candidate keyring==11.0.0 (constraint was <any>)

Finding secondary dependencies:
  keyring==11.0.0           requires keyring==11.0.0; python_version == ">=2.7"

New dependencies found in this round:
  adding ['keyring', '==11.0.0', '[]']
Removed dependencies in this round:
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 7: not stable

                          ROUND 8
Current constraints:
  keyring==11.0.0

Finding the best candidates:
  found candidate keyring==11.0.0 (constraint was ==11.0.0)

Finding secondary dependencies:

New dependencies found in this round:
Removed dependencies in this round:
  removing ['keyring', '==11.0.0', '[]']
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 8: not stable

                          ROUND 9
Current constraints:
  keyring

Finding the best candidates:
  found candidate keyring==11.0.0 (constraint was <any>)

Finding secondary dependencies:
  keyring==11.0.0           requires keyring==11.0.0; python_version == ">=2.7"

New dependencies found in this round:
  adding ['keyring', '==11.0.0', '[]']
Removed dependencies in this round:
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 9: not stable

                          ROUND 10
Current constraints:
  keyring==11.0.0

Finding the best candidates:
  found candidate keyring==11.0.0 (constraint was ==11.0.0)

Finding secondary dependencies:

New dependencies found in this round:
Removed dependencies in this round:
  removing ['keyring', '==11.0.0', '[]']
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 10: not stable

                          ROUND 11
Current constraints:
  keyring

Finding the best candidates:
  found candidate keyring==11.0.0 (constraint was <any>)

Finding secondary dependencies:
  keyring==11.0.0           requires keyring==11.0.0; python_version == ">=2.7"

New dependencies found in this round:
  adding ['keyring', '==11.0.0', '[]']
Removed dependencies in this round:
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 11: not stable

                          ROUND 12
Current constraints:
  keyring==11.0.0

Finding the best candidates:
  found candidate keyring==11.0.0 (constraint was ==11.0.0)

Finding secondary dependencies:

New dependencies found in this round:
Removed dependencies in this round:
  removing ['keyring', '==11.0.0', '[]']
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 12: not stable

                          ROUND 13
Current constraints:
  keyring

Finding the best candidates:
  found candidate keyring==11.0.0 (constraint was <any>)

Finding secondary dependencies:
  keyring==11.0.0           requires keyring==11.0.0; python_version == ">=2.7"

New dependencies found in this round:
  adding ['keyring', '==11.0.0', '[]']
Removed dependencies in this round:
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 13: not stable

                          ROUND 14
Current constraints:
  keyring==11.0.0

Finding the best candidates:
  found candidate keyring==11.0.0 (constraint was ==11.0.0)

Finding secondary dependencies:

New dependencies found in this round:
Removed dependencies in this round:
  removing ['keyring', '==11.0.0', '[]']
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 14: not stable

                          ROUND 15
Current constraints:
  keyring

Finding the best candidates:
  found candidate keyring==11.0.0 (constraint was <any>)

Finding secondary dependencies:
  keyring==11.0.0           requires keyring==11.0.0; python_version == ">=2.7"

New dependencies found in this round:
  adding ['keyring', '==11.0.0', '[]']
Removed dependencies in this round:
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 15: not stable

                          ROUND 16
Current constraints:
  keyring==11.0.0

Finding the best candidates:
  found candidate keyring==11.0.0 (constraint was ==11.0.0)

Finding secondary dependencies:

New dependencies found in this round:
Removed dependencies in this round:
  removing ['keyring', '==11.0.0', '[]']
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 16: not stable
Using pip: -i https://pypi.python.org/simple

                          ROUND 1
Current constraints:
  keyring

Finding the best candidates:
  found candidate keyring==11.0.0 (constraint was <any>)

Finding secondary dependencies:
  keyring==11.0.0           requires keyring==11.0.0; python_version == ">=2.7"

New dependencies found in this round:
  adding ['keyring', '==11.0.0', '[]']
Removed dependencies in this round:
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 1: not stable

                          ROUND 2
Current constraints:
  keyring==11.0.0

Finding the best candidates:
  found candidate keyring==11.0.0 (constraint was ==11.0.0)

Finding secondary dependencies:

New dependencies found in this round:
Removed dependencies in this round:
  removing ['keyring', '==11.0.0', '[]']
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 2: not stable

                          ROUND 3
Current constraints:
  keyring

Finding the best candidates:
  found candidate keyring==11.0.0 (constraint was <any>)

Finding secondary dependencies:
  keyring==11.0.0           requires keyring==11.0.0; python_version == ">=2.7"

New dependencies found in this round:
  adding ['keyring', '==11.0.0', '[]']
Removed dependencies in this round:
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 3: not stable

                          ROUND 4
Current constraints:
  keyring==11.0.0

Finding the best candidates:
  found candidate keyring==11.0.0 (constraint was ==11.0.0)

Finding secondary dependencies:

New dependencies found in this round:
Removed dependencies in this round:
  removing ['keyring', '==11.0.0', '[]']
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 4: not stable

                          ROUND 5
Current constraints:
  keyring

Finding the best candidates:
  found candidate keyring==11.0.0 (constraint was <any>)

Finding secondary dependencies:
  keyring==11.0.0           requires keyring==11.0.0; python_version == ">=2.7"

New dependencies found in this round:
  adding ['keyring', '==11.0.0', '[]']
Removed dependencies in this round:
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 5: not stable

                          ROUND 6
Current constraints:
  keyring==11.0.0

Finding the best candidates:
  found candidate keyring==11.0.0 (constraint was ==11.0.0)

Finding secondary dependencies:

New dependencies found in this round:
Removed dependencies in this round:
  removing ['keyring', '==11.0.0', '[]']
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 6: not stable

                          ROUND 7
Current constraints:
  keyring

Finding the best candidates:
  found candidate keyring==11.0.0 (constraint was <any>)

Finding secondary dependencies:
  keyring==11.0.0           requires keyring==11.0.0; python_version == ">=2.7"

New dependencies found in this round:
  adding ['keyring', '==11.0.0', '[]']
Removed dependencies in this round:
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 7: not stable

                          ROUND 8
Current constraints:
  keyring==11.0.0

Finding the best candidates:
  found candidate keyring==11.0.0 (constraint was ==11.0.0)

Finding secondary dependencies:

New dependencies found in this round:
Removed dependencies in this round:
  removing ['keyring', '==11.0.0', '[]']
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 8: not stable

                          ROUND 9
Current constraints:
  keyring

Finding the best candidates:
  found candidate keyring==11.0.0 (constraint was <any>)

Finding secondary dependencies:
  keyring==11.0.0           requires keyring==11.0.0; python_version == ">=2.7"

New dependencies found in this round:
  adding ['keyring', '==11.0.0', '[]']
Removed dependencies in this round:
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 9: not stable

                          ROUND 10
Current constraints:
  keyring==11.0.0

Finding the best candidates:
  found candidate keyring==11.0.0 (constraint was ==11.0.0)

Finding secondary dependencies:

New dependencies found in this round:
Removed dependencies in this round:
  removing ['keyring', '==11.0.0', '[]']
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 10: not stable

                          ROUND 11
Current constraints:
  keyring

Finding the best candidates:
  found candidate keyring==11.0.0 (constraint was <any>)

Finding secondary dependencies:
  keyring==11.0.0           requires keyring==11.0.0; python_version == ">=2.7"

New dependencies found in this round:
  adding ['keyring', '==11.0.0', '[]']
Removed dependencies in this round:
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 11: not stable

                          ROUND 12
Current constraints:
  keyring==11.0.0

Finding the best candidates:
  found candidate keyring==11.0.0 (constraint was ==11.0.0)

Finding secondary dependencies:

New dependencies found in this round:
Removed dependencies in this round:
  removing ['keyring', '==11.0.0', '[]']
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 12: not stable

                          ROUND 13
Current constraints:
  keyring

Finding the best candidates:
  found candidate keyring==11.0.0 (constraint was <any>)

Finding secondary dependencies:
  keyring==11.0.0           requires keyring==11.0.0; python_version == ">=2.7"

New dependencies found in this round:
  adding ['keyring', '==11.0.0', '[]']
Removed dependencies in this round:
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 13: not stable

                          ROUND 14
Current constraints:
  keyring==11.0.0

Finding the best candidates:
  found candidate keyring==11.0.0 (constraint was ==11.0.0)

Finding secondary dependencies:

New dependencies found in this round:
Removed dependencies in this round:
  removing ['keyring', '==11.0.0', '[]']
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 14: not stable

                          ROUND 15
Current constraints:
  keyring

Finding the best candidates:
  found candidate keyring==11.0.0 (constraint was <any>)

Finding secondary dependencies:
  keyring==11.0.0           requires keyring==11.0.0; python_version == ">=2.7"

New dependencies found in this round:
  adding ['keyring', '==11.0.0', '[]']
Removed dependencies in this round:
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 15: not stable

                          ROUND 16
Current constraints:
  keyring==11.0.0

Finding the best candidates:
  found candidate keyring==11.0.0 (constraint was ==11.0.0)

Finding secondary dependencies:

New dependencies found in this round:
Removed dependencies in this round:
  removing ['keyring', '==11.0.0', '[]']
Unsafe dependencies in this round:
------------------------------------------------------------
Result of round 16: not stable

INFO:pip.download:File was already downloaded /Users/hynek/Library/Caches/pipenv/wheels/keyring-11.0.0-py2.py3-none-any.whl
INFO:pip.download:File was already downloaded /Users/hynek/Library/Caches/pipenv/wheels/keyring-11.0.0-py2.py3-none-any.whl
INFO:pip.download:File was already downloaded /Users/hynek/Library/Caches/pipenv/wheels/keyring-11.0.0-py2.py3-none-any.whl
INFO:pip.download:File was already downloaded /Users/hynek/Library/Caches/pipenv/wheels/keyring-11.0.0-py2.py3-none-any.whl
INFO:pip.download:File was already downloaded /Users/hynek/Library/Caches/pipenv/wheels/keyring-11.0.0-py2.py3-none-any.whl
INFO:pip.download:File was already downloaded /Users/hynek/Library/Caches/pipenv/wheels/keyring-11.0.0-py2.py3-none-any.whl
INFO:pip.download:File was already downloaded /Users/hynek/Library/Caches/pipenv/wheels/keyring-11.0.0-py2.py3-none-any.whl
INFO:pip.download:File was already downloaded /Users/hynek/Library/Caches/pipenv/wheels/keyring-11.0.0-py2.py3-none-any.whl
INFO:pip.download:File was already downloaded /Users/hynek/Library/Caches/pipenv/wheels/keyring-11.0.0-py2.py3-none-any.whl
INFO:pip.download:File was already downloaded /Users/hynek/Library/Caches/pipenv/wheels/keyring-11.0.0-py2.py3-none-any.whl
INFO:pip.download:File was already downloaded /Users/hynek/Library/Caches/pipenv/wheels/keyring-11.0.0-py2.py3-none-any.whl
INFO:pip.download:File was already downloaded /Users/hynek/Library/Caches/pipenv/wheels/keyring-11.0.0-py2.py3-none-any.whl
INFO:pip.download:File was already downloaded /Users/hynek/Library/Caches/pipenv/wheels/keyring-11.0.0-py2.py3-none-any.whl
INFO:pip.download:File was already downloaded /Users/hynek/Library/Caches/pipenv/wheels/keyring-11.0.0-py2.py3-none-any.whl
INFO:pip.download:File was already downloaded /Users/hynek/Library/Caches/pipenv/wheels/keyring-11.0.0-py2.py3-none-any.whl
INFO:pip.download:File was already downloaded /Users/hynek/Library/Caches/pipenv/wheels/keyring-11.0.0-py2.py3-none-any.whl

It seems like it catches itself in an infinite loop flip-flopping the conditional marker.

I wonder if that’s related to the bug I keep complaining about but that I wasn’t able to reproduce where pipenv will randomly flip-flop markers on a lock.

Whoa wtf. @hynek can you pipenv-resolver keyring --debug --clear --verbose ? Is this into a clean environment? Did you explicitly pin keyring? And does this only happen when you put it in dev-packages?

i think that's for another issue :)

JFTR, I cannot reproduce it anymore either which makes me 99.9% confident it’s the same bug that haunts me by occasionally stripping markers from the lock files.

Keep us in the loop!

Was this page helpful?
0 / 5 - 0 ratings

Related issues

FooBarQuaxx picture FooBarQuaxx  ·  3Comments

jakul picture jakul  ·  3Comments

jerzyk picture jerzyk  ·  3Comments

leileigong picture leileigong  ·  3Comments

erinxocon picture erinxocon  ·  3Comments