<p>pipenv mengunci dependensi yang hilang</p>

Dibuat pada 9 Mar 2018  ·  54Komentar  ·  Sumber: pypa/pipenv

Saya menginstal Django-oidc-provider dan telah memperhatikan bahwa Pipfile.lock tidak memiliki dependensinya. Ketika saya menginstal dari file kunci, dependensi tidak diinstal yang menyebabkan kesalahan impor.

Saya memang memperhatikan bahwa jika saya menyematkan Django-oidc-provider ke 0.5.2 semuanya berfungsi. 0.5.3 dirilis hari ini saya percaya.

Versi Pipenv: '11.2.0'

Lokasi Pipenv: '/Users/brian/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv'

Lokasi Python: '/Users/brian/.local/venvs/pipenv/bin/python'

Instalasi Python lainnya di PATH :

  • 2.7 : /Users/brian/.pyenv/shims/python2.7
  • 2.7 : /Users/brian/.pyenv/shims/python2.7
  • 2.7 : /usr/bin/python2.7
  • 3.6 : /Users/brian/.pyenv/shims/python3.6m
  • 3.6 : /Users/brian/.pyenv/shims/python3.6
  • 3.6 : /usr/local/bin/python3.6

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

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

Informasi PEP 508:

{'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'}

Variabel lingkungan sistem:

  • TERM_SESSION_ID
  • SSH_AUTH_SOCK
  • Apple_PubSub_Socket_Render
  • COLORFGBG
  • ITERM_PROFILE
  • XPC_FLAGS
  • LANG
  • PWD
  • SHELL
  • TERM_PROGRAM_VERSION
  • TERM_PROGRAM
  • PATH
  • COLORTERM
  • TERM
  • HOME
  • TMPDIR
  • USER
  • XPC_SERVICE_NAME
  • LOGNAME
  • __CF_USER_TEXT_ENCODING
  • ITERM_SESSION_ID
  • SHLVL
  • OLDPWD
  • NVM_DIR
  • NVM_CD_FLAGS
  • NVM_BIN
  • PYENV_ROOT
  • PYENV_SHELL
  • EDITOR
  • PYTHONDONTWRITEBYTECODE
  • GPGKEY
  • SSH_KEY_PATH
  • CLICOLOR
  • LSCOLORS
  • VIRTUAL_ENV_DISABLE_PROMPT
  • PYTHONSTARTUP
  • GPG_TTY
  • GIT_PS1_SHOWDIRTYSTATE
  • _
  • PIP_PYTHON_PATH

Variabel lingkungan spesifik Pipenv:

Variabel lingkungan khusus debug:

  • PATH : /Users/brian/.local/bin:/Users/brian/.cargo/bin:/Users/brian/.config/yarn/global/node_modules/.bin:/Applications/Postgres.app/Contents/Versions/latest/bin:/usr/local/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/bin:/Users/brian/.pyenv/shims:/Users/brian/.pyenv/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin
  • SHELL : /usr/local/bin/zsh
  • EDITOR : nvim
  • LANG : en_US.UTF-8
  • PWD : /Users/brian/o

Isi Pipfile ('/Users/brian/o/Pipfile'):

[[source]]

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


[packages]

django-oidc-provider = "*"


[dev-packages]



[requires]

python_version = "3.6"

Isi Pipfile.lock ('/Users/brian/o/Pipfile.lock'):

{
    "_meta": {
        "hash": {
            "sha256": "c9edf25ec27dba42bb0e2a4bedbbbc4481eed9dae2b64f565d0e25d437b7fee4"
        },
        "pipfile-spec": 6,
        "requires": {
            "python_version": "3.6"
        },
        "sources": [
            {
                "name": "pypi",
                "url": "https://pypi.python.org/simple",
                "verify_ssl": true
            }
        ]
    },
    "default": {
        "django-oidc-provider": {
            "hashes": [
                "sha256:963b39ebc1e289e1812d462eb5913a0dd4e6ac1d6f178581b411fa838b3f62b1"
            ],
            "version": "==0.5.3"
        }
    },
    "develop": {}
}


Hasil yang diharapkan

Ketergantungan penyedia django-oidc terkunci di Pipfile.lock.

Hasil sebenarnya

Lihat di atas Pipfile.lock dari python -m pipenv.help .

Langkah-langkah untuk meniru
pipenv install django-oidc-provider

Seperti yang saya sebutkan di atas saat menggunakan 0.5.2 berfungsi. Inilah Pipfile.lock saat menggunakan 0.5.2:

{
    "_meta": {
        "hash": {
            "sha256": "7c52ead668bf09236495d2b396f9a43ba490e99ef36c264d58f8a039bc51502a"
        },
        "pipfile-spec": 6,
        "requires": {
            "python_version": "3.6"
        },
        "sources": [
            {
                "name": "pypi",
                "url": "https://pypi.python.org/simple",
                "verify_ssl": true
            }
        ]
    },
    "default": {
        "certifi": {
            "hashes": [
                "sha256:14131608ad2fd56836d33a71ee60fa1c82bc9d2c8d98b7bdbc631fe1b3cd1296",
                "sha256:edbc3f203427eef571f79a7692bb160a2b0f7ccaa31953e99bd17e307cf63f7d"
            ],
            "version": "==2018.1.18"
        },
        "chardet": {
            "hashes": [
                "sha256:84ab92ed1c4d4f16916e05906b6b75a6c0fb5db821cc65e70cbd64a3e2a5eaae",
                "sha256:fc323ffcaeaed0e0a02bf4d117757b98aed530d9ed4531e3e15460124c106691"
            ],
            "version": "==3.0.4"
        },
        "django-oidc-provider": {
            "hashes": [
                "sha256:9981855f2965893c053353bd7d0a8bb7217f92d8fc94178ae9dd6bad5120a271"
            ],
            "version": "==0.5.2"
        },
        "future": {
            "hashes": [
                "sha256:e39ced1ab767b5936646cedba8bcce582398233d6a627067d4c6a454c90cfedb"
            ],
            "version": "==0.16.0"
        },
        "idna": {
            "hashes": [
                "sha256:2c6a5de3089009e3da7c5dde64a141dbc8551d5b7f6cf4ed7c2568d0cc520a8f",
                "sha256:8c7309c718f94b3a625cb648ace320157ad16ff131ae0af362c9f21b80ef6ec4"
            ],
            "version": "==2.6"
        },
        "pycryptodomex": {
            "hashes": [
                "sha256:16ab612ca9164e971dc00f8fe895ac835e8bfe64c3174b368f80172ff5a98300",
                "sha256:299a79efba6152ea438cc37f7349161e7bbd914f918342cad6316a4a5f29f2d7",
                "sha256:2a55e8fd69c84287b44e2c9c07eaad314e76680b86e873774314c27266728670",
                "sha256:2f71dc2b91288cf4a164287858eaccdc7053bf5765ebc47c5188f94eccc35e80",
                "sha256:2f81caf3ee08f00a957fd074c33430e8781958c616e864c5a1e709fb954750bc",
                "sha256:3d4c77f1d4273ae753e49dac5c916f2278b0dd354a0c5f2a29fcf88bbae4efa9",
                "sha256:563512542dcab3e95d8cef70e45cc5a43ef35ff84bc040c388b305015343e51e",
                "sha256:5d058decae88f86833a430afc0517df815d9efa4255b3a6d576c7fb305cb56d4",
                "sha256:5ec5903197d256b4559ff5c6a4756c34219ec81aff92be1174681623ba1e6383",
                "sha256:67f6573ff84ce7f7ea8ffc01ba5821c15dc85bf43291e4f8e11d7b6e2d5f504e",
                "sha256:729da9aa2b8ea0bd8e35bc89ecd1ff4e482e6e9c2275e2e19de8b68dd8156fb5",
                "sha256:82df0a7cda5c94e9e4c62fb8d6507d5418f6593c8ed1b40b538a771ca003b597",
                "sha256:91b87c3abb24da1a980cb0f05e150eb0525235129bc5cb59277ea96860677f0a",
                "sha256:a02b1b17d7c86b12bc1d4ede75846a7971e7df6d75508cd0696e383c18cad4ce",
                "sha256:a36d5a5b73e51d66e3f1da53ce00e56de860a9c529f2811bb8d95374d9da06df",
                "sha256:a7d836d6284c4734841c7c9d851be546650302ebca281de851129c22f1298ad5",
                "sha256:bb60d38111ebc383a5a1c909545562926c66c846d03fc65ba7b8a3487cb23078",
                "sha256:bf2e6cf6e78c8e6d63eeaa9641cad5008a382af98f2dc25cb7c6444f13133df9",
                "sha256:e303a4a1b242d3277e8dea07ab4e3737d0d1ed122990c713d6f88b0dda10c378",
                "sha256:e378bd7a09257a7a9a58f7f04b088991cf23a99847e9f42d6f996b4e52a11c33",
                "sha256:e75e7fe725dd5989e89da25a2fe7e3d35ed8123ac30eaae2f2340d0ba0431a88",
                "sha256:eac46844350302c93f3fd3eaa37353ee9e25cffcd1c574dfffb22de157ddce17",
                "sha256:f0ca00abf69827e78415050780cf838c7af9f378e591611210e25a03d6d0ea90"
            ],
            "version": "==3.5.1"
        },
        "pyjwkest": {
            "hashes": [
                "sha256:128e3c81d02993ac4cd7e29ef7aac767d91daa59380e6883ae589092945e4aad"
            ],
            "version": "==1.4.0"
        },
        "requests": {
            "hashes": [
                "sha256:6a1b267aa90cac58ac3a765d067950e7dbbf75b1da07e895d1f594193a40a38b",
                "sha256:9c443e7324ba5b85070c4a818ade28bfabedf16ea10206da1132edaa6dda237e"
            ],
            "version": "==2.18.4"
        },
        "six": {
            "hashes": [
                "sha256:70e8a77beed4562e7f14fe23a786b54f6296e34344c23bc42f07b15018ff98e9",
                "sha256:832dc0e10feb1aa2c68dcc57dbb658f1c7e65b9b61af69048abc87a2db00a0eb"
            ],
            "version": "==1.11.0"
        },
        "urllib3": {
            "hashes": [
                "sha256:06330f386d6e4b195fbfc736b297f58c5a892e4440e54d294d7004e3a9bbea1b",
                "sha256:cc44da8e1145637334317feebd728bd869a35285b93cbb4cca2577da7e62db4f"
            ],
            "version": "==1.22"
        }
    },
    "develop": {}
}
Type

Semua 54 komentar

Bisakah Anda menjalankan $ pipenv-resolver django-oidc-provider --verbose untuk saya?

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

                          ROUND 1                           
Current constraints:
  django-oidc-provider

Finding the best candidates:
  found candidate django-oidc-provider==0.5.3 (constraint was <any>)

Finding secondary dependencies:
  django-oidc-provider==0.5.3 requires -
------------------------------------------------------------
Result of round 1: stable, done
RESULTS:
[{"name": "django-oidc-provider", "version": "0.5.3", "hashes": ["sha256:963b39ebc1e289e1812d462eb5913a0dd4e6ac1d6f178581b411fa838b3f62b1"]}]

Saya perhatikan bahwa 0.5.3 mendeklarasikan install_requires di setup.py :

https://github.com/juanifioren/django-oidc-provider/blob/baee747c0de5360db495df1d8ee4ea0d8310b367/setup.py#L44

Menarik. Coba $ pipenv lock --clear .

Saya tidak dapat mereproduksi ini (setidaknya tidak segera).

buzz:~/o
% pipenv lock --clear                                                                            (⎈ |minikube:default)
Locking [dev-packages] dependencies…
Locking [packages] dependencies…
Updated Pipfile.lock (b7fee4)!
buzz:~/o
% cat Pipfile.lock                                                                               (⎈ |minikube:default)
{
    "_meta": {
        "hash": {
            "sha256": "c9edf25ec27dba42bb0e2a4bedbbbc4481eed9dae2b64f565d0e25d437b7fee4"
        },
        "pipfile-spec": 6,
        "requires": {
            "python_version": "3.6"
        },
        "sources": [
            {
                "name": "pypi",
                "url": "https://pypi.python.org/simple",
                "verify_ssl": true
            }
        ]
    },
    "default": {
        "django-oidc-provider": {
            "hashes": [
                "sha256:963b39ebc1e289e1812d462eb5913a0dd4e6ac1d6f178581b411fa838b3f62b1"
            ],
            "version": "==0.5.3"
        }
    },
    "develop": {}
}

Menariknya, setup.cfg hanya berisi:

[egg_info]
tag_build = 
tag_date = 0

Saya tidak berpikir ini seharusnya berpengaruh pada sdist dengan setup.py, tetapi satu-satunya cara untuk mengetahuinya adalah dengan menjalankan (maaf untuk semua perintah):

$ pipenv-resolver django-oidc-provider --debug

Itu akan memberi kita terlalu banyak informasi, tetapi harus memberikan kita gambaran tentang apa yang sebenarnya terjadi.

` DEBUG:pip.index:1 location(s) to search for versions of django-oidc-provider: DEBUG:pip.index:* https://pypi.python.org/simple/django-oidc-provider/ DEBUG:pip.index:Getting page https://pypi.python.org/simple/django-oidc-provider/ DEBUG:pip._vendor.cachecontrol.controller:Looking up "https://pypi.python.org/simple/django-oidc-provider/" in the cache DEBUG:pip._vendor.cachecontrol.controller:Current age based on date: 171 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 > 171 DEBUG:pip.index:Analyzing links from page https://pypi.python.org/simple/django-oidc-provider/ DEBUG:pip.index:Found link https://pypi.python.org/packages/03/2e/d87a6f817e96feaab446c2cd0dadf7d0ba70cd1809d813bc8e7a4b394397/django-oidc-provider-0.4.1.tar.gz#md5=6213b0958983a756a32a235d619ff677 (from https://pypi.python.org/simple/django-oidc-provider/), version: 0.4.1 DEBUG:pip.index:Found link https://pypi.python.org/packages/06/25/9339bff205fb939ba919e696915e1bd94c7c74677ecbd4a8bef690e1557e/django-oidc-provider-0.5.2.tar.gz#md5=353cdffca41bbe10d06686e279871499 (from https://pypi.python.org/simple/django-oidc-provider/), version: 0.5.2 DEBUG:pip.index:Found link https://pypi.python.org/packages/12/2d/c120c91494e8db2f399153db21d0d916011c49553bde96664bddf501dbc6/django-oidc-provider-0.5.3.tar.gz#md5=ecb80cd563908b934053fd275b577e22 (from https://pypi.python.org/simple/django-oidc-provider/), version: 0.5.3 DEBUG:pip.index:Found link https://pypi.python.org/packages/1c/f6/c71a16d32091b01b2456d85859d53f9d4069ea98df128c8da5b3cc78e74f/django-oidc-provider-0.0.1.tar.gz#md5=0568c3bc7c3b99b4c1e1a205515e3817 (from https://pypi.python.org/simple/django-oidc-provider/), version: 0.0.1 DEBUG:pip.index:Found link https://pypi.python.org/packages/1d/bf/ad9fdf526a50e785c9847861aba5ca187c06859bc94f77f7c07fde26eeda/django-oidc-provider-0.0.3.tar.gz#md5=ff87a784467cf5f187c47cd775569be1 (from https://pypi.python.org/simple/django-oidc-provider/), version: 0.0.3 DEBUG:pip.index:Found link https://pypi.python.org/packages/2c/5c/15c50c8c86c43d116e586b6f599b28386a341ec4286719f4f542671d52ce/django-oidc-provider-0.2.4.tar.gz#md5=8a81692b0a8d016d5b94cd865c373f10 (from https://pypi.python.org/simple/django-oidc-provider/), version: 0.2.4 DEBUG:pip.index:Found link https://pypi.python.org/packages/39/95/6d91987dbd92dcec98db8e9df676f07d16cf02361665555ecea80ce36046/django-oidc-provider-0.1.0.tar.gz#md5=f6dd13b2a1095a6dbf36154d5c5cd809 (from https://pypi.python.org/simple/django-oidc-provider/), version: 0.1.0 DEBUG:pip.index:Found link https://pypi.python.org/packages/44/5b/671f6adb8afc5e71c7f5f2fcadd7310ef2ac35dc2485672da2b1091288fd/django-oidc-provider-0.2.0.tar.gz#md5=be3a33f8d08b62300350cda20252c55e (from https://pypi.python.org/simple/django-oidc-provider/), version: 0.2.0 DEBUG:pip.index:Found link https://pypi.python.org/packages/44/65/5fc2723277929df2598e0886241458fdd58c9b0aae28c80b192b0635c818/django-oidc-provider-0.3.7.tar.gz#md5=296773e231bba1df9c5cffe27cbf3a54 (from https://pypi.python.org/simple/django-oidc-provider/), version: 0.3.7 DEBUG:pip.index:Found link https://pypi.python.org/packages/45/c7/3ea6dc14a20edc163612df271751d741ce97a67c627cfcddd9dcfc910cef/django-oidc-provider-0.3.6.tar.gz#md5=e19968af8aaf27a019903c964348aa79 (from https://pypi.python.org/simple/django-oidc-provider/), version: 0.3.6 DEBUG:pip.index:Found link https://pypi.python.org/packages/5a/c6/7a8bff03c221d532ccee3be65170ae5040e8be6f1c22d45fd19d0175dab8/django-oidc-provider-0.2.5.tar.gz#md5=79a93fa9bb1c5dc7716dc81834164ef9 (from https://pypi.python.org/simple/django-oidc-provider/), version: 0.2.5 DEBUG:pip.index:Found link https://pypi.python.org/packages/5b/ce/f80e208a9c9c735375496033cafd1388ef231a580df6671231332333d993/django-oidc-provider-0.3.0.tar.gz#md5=f44c85e2665eaafb76132d9acfba8c02 (from https://pypi.python.org/simple/django-oidc-provider/), version: 0.3.0 DEBUG:pip.index:Found link https://pypi.python.org/packages/5d/05/3de6e2f7ef02bab7ab3bde4a54f9820049bdbd93d479a0cbd95fb715544a/django-oidc-provider-0.4.4.tar.gz#md5=b45cc155aecacb26792e258611ba3a82 (from https://pypi.python.org/simple/django-oidc-provider/), version: 0.4.4 DEBUG:pip.index:Found link https://pypi.python.org/packages/5d/0f/cb0929256bd554ea820b8543103ef2cb741d19f850186abde80a638c799c/django-oidc-provider-0.4.0.tar.gz#md5=582f8fcd0a49e69cabc4e560fa4028b8 (from https://pypi.python.org/simple/django-oidc-provider/), version: 0.4.0 DEBUG:pip.index:Found link https://pypi.python.org/packages/60/57/eabb7acc4e0f975bfae905f89364edbc5186d99d4afca36a1839138a241c/django-oidc-provider-0.2.3.tar.gz#md5=adff22dd9d6f705c4c481fc54c964735 (from https://pypi.python.org/simple/django-oidc-provider/), version: 0.2.3 DEBUG:pip.index:Found link https://pypi.python.org/packages/63/88/f8d7ae9745028988de6209e244089edc134c5ba60bcbdcf5d9cc12d69090/django-oidc-provider-0.0.6.tar.gz#md5=ecf7ddf480435661193255e79da48670 (from https://pypi.python.org/simple/django-oidc-provider/), version: 0.0.6 DEBUG:pip.index:Found link https://pypi.python.org/packages/70/55/3c04579e21b3f316ee7b5348c0bb5dec7f05e6be66096ba5d5be58ac7cde/django-oidc-provider-0.1.2.tar.gz#md5=7f6aab652312480c638bf035d19eaac3 (from https://pypi.python.org/simple/django-oidc-provider/), version: 0.1.2 DEBUG:pip.index:Found link https://pypi.python.org/packages/70/f9/3485792d9888c7afc9191e1d2642d40dc9c02901e324acb4d401d2a6d5bc/django-oidc-provider-0.4.3.tar.gz#md5=966e791dedc0efda0dbf79511a9ca3e6 (from https://pypi.python.org/simple/django-oidc-provider/), version: 0.4.3 DEBUG:pip.index:Found link https://pypi.python.org/packages/78/86/57f4589d690b4fc0c61eb17e8730e0bbdf5e63c73ebe873eaa1e74c24a7a/django-oidc-provider-0.3.4.tar.gz#md5=d3b5deeec4299514953b5bee93d5fe42 (from https://pypi.python.org/simple/django-oidc-provider/), version: 0.3.4 DEBUG:pip.index:Found link https://pypi.python.org/packages/8b/77/a613d374688b14afdaac743d18641372e1d070a2db43d10daa7a28afb0cf/django-oidc-provider-0.3.1.tar.gz#md5=16e40c6029c17cc3d66d2a5e608e243e (from https://pypi.python.org/simple/django-oidc-provider/), version: 0.3.1 DEBUG:pip.index:Found link https://pypi.python.org/packages/8f/14/80beae1e2457f18ce1a11810157b31fbe763289e7264906d9cf2d0a64773/django-oidc-provider-0.3.3.tar.gz#md5=0afc8c14fa419144685f0f63641dc2ea (from https://pypi.python.org/simple/django-oidc-provider/), version: 0.3.3 DEBUG:pip.index:Found link https://pypi.python.org/packages/93/56/c00ade9667a3761f03247067905534a0bfa592de1165138de609cd18aa90/django-oidc-provider-0.3.5.tar.gz#md5=592c597211d42c9969fdc2ebed955085 (from https://pypi.python.org/simple/django-oidc-provider/), version: 0.3.5 DEBUG:pip.index:Found link https://pypi.python.org/packages/97/8f/777d9a01981f3f4e697a8cdc99ddf61387b7f8895cc01d01d27d379db8e4/django-oidc-provider-0.0.7.tar.gz#md5=aaeac4b287c66db9c36074e2cb7d7235 (from https://pypi.python.org/simple/django-oidc-provider/), version: 0.0.7 DEBUG:pip.index:Found link https://pypi.python.org/packages/a6/7a/161542437dbeeb7c65a5ca537c187f2084fd5a2453f43b6f5741711bdc04/django-oidc-provider-0.4.2.tar.gz#md5=0b1b3160690799ae849875d707498875 (from https://pypi.python.org/simple/django-oidc-provider/), version: 0.4.2 DEBUG:pip.index:Found link https://pypi.python.org/packages/a8/29/d77121f1ab1192c83bb99a2233b2b5320336063774ed2d3f1b2804dbcd2f/django-oidc-provider-0.1.1.tar.gz#md5=d4f4b488ac847aac67f7f1fadbffa286 (from https://pypi.python.org/simple/django-oidc-provider/), version: 0.1.1 DEBUG:pip.index:Found link https://pypi.python.org/packages/a8/98/f0f9b178101d289c8e72fc86d4995de384d4ce1f6cc9aeacab6d05b655ad/django-oidc-provider-0.0.5.tar.gz#md5=c1fc925923931459254535e5c7100e4d (from https://pypi.python.org/simple/django-oidc-provider/), version: 0.0.5 DEBUG:pip.index:Found link https://pypi.python.org/packages/b6/34/eebe5fcc3d42ab151e3ba65513303da02f0692b5649694940077f51fef87/django-oidc-provider-0.0.2.tar.gz#md5=0b19e02ca04b620eb561d0fe98bd45e7 (from https://pypi.python.org/simple/django-oidc-provider/), version: 0.0.2 DEBUG:pip.index:Found link https://pypi.python.org/packages/c4/5d/e8f01d0262121a61e3c7abf9575e2d564cf1aeb9884bf45d1e83092b18a5/django-oidc-provider-0.2.1.tar.gz#md5=1c395c9103ebb1f2ab1bdd93d41c985b (from https://pypi.python.org/simple/django-oidc-provider/), version: 0.2.1 DEBUG:pip.index:Found link https://pypi.python.org/packages/de/56/3eb99387ea94e2c9d964990aa834b9a611ae792c527e374c8abff95e0c23/django-oidc-provider-0.3.2.tar.gz#md5=97a2c2f4faac1f745d428c8b639547e7 (from https://pypi.python.org/simple/django-oidc-provider/), version: 0.3.2 DEBUG:pip.index:Found link https://pypi.python.org/packages/f3/35/9e890d369b2b4e961071299dcb09d270de02731e9afb03a0fa6ced7f5977/django-oidc-provider-0.5.0.tar.gz#md5=1e1d800a3ac241be60d1a227cb4c6bb8 (from https://pypi.python.org/simple/django-oidc-provider/), version: 0.5.0 RESULTS: [{"name": "django-oidc-provider", "version": "0.5.3", "hashes": ["sha256:963b39ebc1e289e1812d462eb5913a0dd4e6ac1d6f178581b411fa838b3f62b1"]}]

Saya pikir Anda mungkin mendapat respons CDN yang buruk dari PyPI atau sesuatu.

Ini jelas terkait dengan PyPI. Lihat tanggapan 0.5.2:

$ pipenv-resolver django-oidc-provider==0.5.2 --debug
DEBUG:pip.index:1 location(s) to search for versions of pyjwkest:
DEBUG:pip.index:* https://pypi.python.org/simple/pyjwkest/
DEBUG:pip.index:Getting page https://pypi.python.org/simple/pyjwkest/
DEBUG:pip._vendor.cachecontrol.controller:Looking up "https://pypi.python.org/simple/pyjwkest/" in the cache
DEBUG:pip._vendor.cachecontrol.controller:Current age based on date: 179
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 > 179
DEBUG:pip.index:Analyzing links from page https://pypi.python.org/simple/pyjwkest/
DEBUG:pip.index:Found link https://pypi.python.org/packages/06/05/6aeb9345e622e9590097da2c712d802a694af184d19452cc36fee3a6e7dd/pyjwkest-1.3.6.tar.gz#md5=246e9848b671f0ca0eee68de3004bde2 (from https://pypi.python.org/simple/pyjwkest/), version: 1.3.6
DEBUG:pip.index:Found link https://pypi.python.org/packages/07/06/569573329665ca7b44907b2609fe23e0deace4d45678de9b1ae31f0262a7/pyjwkest-0.6.1.tar.gz#md5=eb0690fd9be0dd110de22f3bc6b2dbf2 (from https://pypi.python.org/simple/pyjwkest/), version: 0.6.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/07/b5/574a678b297ea5be1ea54f69b280e69358fad677f568ac9558c7c74fca07/pyjwkest-0.5.2.tar.gz#md5=546fed771ed5db705dbf8cfef38c92d2 (from https://pypi.python.org/simple/pyjwkest/), version: 0.5.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/15/79/ecfd533fd39ff8f689b0a691d9521102c02617342f8c6a21ee90405b3517/pyjwkest-1.1.7.tar.gz#md5=38e9a60faea07857d2f6fbb43c97d3c4 (from https://pypi.python.org/simple/pyjwkest/), version: 1.1.7
DEBUG:pip.index:Found link https://pypi.python.org/packages/1f/75/22bb09626082aea529f78214bffeb823885691e1640c530e4b4c2f2a1cb1/pyjwkest-1.0.3.tar.gz#md5=51ed700507e60d3a422aad635c0fb084 (from https://pypi.python.org/simple/pyjwkest/), version: 1.0.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/21/69/f746e558cde4c9276251ce3c2e7bfcaa56529cd3a94c4b33040974e4fda2/pyjwkest-1.0.8.tar.gz#md5=8f5cc43225a3e215ed49b4dd7a254bb5 (from https://pypi.python.org/simple/pyjwkest/), version: 1.0.8
DEBUG:pip.index:Found link https://pypi.python.org/packages/2f/8a/718791d499993ab1f61675833fdab3deb7be9850d929cb67471e8ee4847c/pyjwkest-1.0.5.tar.gz#md5=ec4529941730bfc21546af408c86c29a (from https://pypi.python.org/simple/pyjwkest/), version: 1.0.5
DEBUG:pip.index:Found link https://pypi.python.org/packages/4a/5a/6d81113d0c256be86ef27a20481a9cc590931589aaf1896002a8519aa0aa/pyjwkest-1.3.4.tar.gz#md5=f7bf53740a8b4251ac120672d7b1ae4e (from https://pypi.python.org/simple/pyjwkest/), version: 1.3.4
DEBUG:pip.index:Found link https://pypi.python.org/packages/4a/85/a7b5e50e706970aece439ffb98677080731e8edc741cd541fed1d0378c8f/pyjwkest-1.0.7beta.tar.gz#md5=9f2fe181515f49d4380fd5d07659f868 (from https://pypi.python.org/simple/pyjwkest/), version: 1.0.7beta
DEBUG:pip.index:Found link https://pypi.python.org/packages/53/17/13eb3b49999171e265a8eff6415a39006c63af2ff8427d88639541605f30/pyjwkest-0.3.0.tar.gz#md5=e5da7de4c94266b99b4c79f635d73991 (from https://pypi.python.org/simple/pyjwkest/), version: 0.3.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/62/ed/a90088b9519e79808e8eca0952edf98fe672eec99e8ca13fb383db251047/pyjwkest-1.1.5.tar.gz#md5=f6970fbeef322c9b718b0c714242cc58 (from https://pypi.python.org/simple/pyjwkest/), version: 1.1.5
DEBUG:pip.index:Found link https://pypi.python.org/packages/64/72/275288499e91cfea8ad21fdda17c0c41d449da69c822cb0aa7ebc6a1ca0b/pyjwkest-1.0.1.tar.gz#md5=6b055fce8d184c925fd432aa1cc533d6 (from https://pypi.python.org/simple/pyjwkest/), version: 1.0.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/67/f7/85cf9df3870b76cdb4843ce71bcb176c69c01d26637f15abcc301731d0a0/pyjwkest-1.0.2.tar.gz#md5=4638eb4ff69a617fbb0ceba8e31f2dc0 (from https://pypi.python.org/simple/pyjwkest/), version: 1.0.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/6f/81/7cb061fbca0a1a16c86a4854ea7f9c380c99b3edfd7b7089b7f476904c9b/pyjwkest-1.0.0.tar.gz#md5=4597ce1f15fc2451f9c2f060b5ba7ae2 (from https://pypi.python.org/simple/pyjwkest/), version: 1.0.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/70/62/17854b405b1a557560674975aa8236e0c9c91c118f06098c746a2a67c9cd/pyjwkest-1.3.0.tar.gz#md5=30968056c527c5b149d0f343fd67ee51 (from https://pypi.python.org/simple/pyjwkest/), version: 1.3.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/70/8a/431978cd0129e557aaf3af1638cdcb4c97ff4a116b35af939464921714f3/pyjwkest-1.0.4.beta.tar.gz#md5=f3c619bf5d95b4fa725a305fb6aa7c09 (from https://pypi.python.org/simple/pyjwkest/), version: 1.0.4.beta
DEBUG:pip.index:Found link https://pypi.python.org/packages/74/6e/3a8a156a53d5b9dde892c81792bdc94645cd958c417fdeaf23684417c000/pyjwkest-1.1.1.tar.gz#md5=28fca4700a75dfff3f8f5f3dbb3e89ed (from https://pypi.python.org/simple/pyjwkest/), version: 1.1.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/77/90/9ff91a16f435df28f67fd13a3be6420ae6698e2379f92ff9c6e110b6047e/pyjwkest-1.1.6.tar.gz#md5=b0c30230b47970eb3a751fdc75fc17d4 (from https://pypi.python.org/simple/pyjwkest/), version: 1.1.6
DEBUG:pip.index:Found link https://pypi.python.org/packages/7f/4b/b222c829470758b6a933220deccd411ea07a5438424ce3adc588939d02db/pyjwkest-1.1.3.tar.gz#md5=778d9d215687c34a7aec034363bd372c (from https://pypi.python.org/simple/pyjwkest/), version: 1.1.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/8d/0a/8f6f9d7c559416f79cd47b298369ba445cd6ea70549fbbf2347d81e4a823/pyjwkest-1.3.3.tar.gz#md5=26d693794ffc984c968fccaac886a213 (from https://pypi.python.org/simple/pyjwkest/), version: 1.3.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/8f/0f/4ca113733da295097d2586f02a49c197a642f0c30c15a183608216ce5c05/pyjwkest-0.5.0.tar.gz#md5=dd3af1903d0ffeb42233c936816dab14 (from https://pypi.python.org/simple/pyjwkest/), version: 0.5.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/8f/b1/19182e79b9c011b60765ec201c7c82c2134dae13283c205501cfe3a8f3d2/pyjwkest-1.1.2.tar.gz#md5=413e3f1007ef315aa254b057b6fdae77 (from https://pypi.python.org/simple/pyjwkest/), version: 1.1.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/9b/df/93894eee5664396bbcd29ab064e6c15a1c92cd4404923a5fea08c058b573/pyjwkest-1.2.0.tar.gz#md5=ddfaa5a113e626041d528750ab7977d5 (from https://pypi.python.org/simple/pyjwkest/), version: 1.2.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/a7/1c/3a8eade63c1fe8b3f573f8e7d896b6e004d6128921af0183ac6f8afd729a/pyjwkest-1.1.0.tar.gz#md5=e971644d9d7ff2319d965030d4d7b9ab (from https://pypi.python.org/simple/pyjwkest/), version: 1.1.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/a7/71/bdd86bb864978d040670f4e3a14c5124eee73413f397ae21e86baa5ecc01/pyjwkest-1.0.7.tar.gz#md5=1be2c4223eabc0a5da9558019d509bfe (from https://pypi.python.org/simple/pyjwkest/), version: 1.0.7
DEBUG:pip.index:Found link https://pypi.python.org/packages/b7/57/b02a875f75128e1f124b214c2140cc0b006145fdd19caf8125a68d99ab0d/pyjwkest-1.3.2.tar.gz#md5=700236376694aa91f983476ca2566d5c (from https://pypi.python.org/simple/pyjwkest/), version: 1.3.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/c1/26/f5a179ce21197037278ea61a5666cc2bb030496fcf48bc7d8465f21ea2fb/pyjwkest-0.4.0.tar.gz#md5=406da5c9f8e43f92154ca729fa1f6429 (from https://pypi.python.org/simple/pyjwkest/), version: 0.4.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/c2/06/7b7114b016ed187261168b896801ea1f625cfbb02de557184cbfd10d0c92/pyjwkest-1.3.1.tar.gz#md5=77687a04dda49999a025e28bb4f3cc62 (from https://pypi.python.org/simple/pyjwkest/), version: 1.3.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/d5/de/a9027f053cd525704361663a89c35ce914003fad176e916a3647bc70c909/pyjwkest-1.1.4.tar.gz#md5=ae27eb9e816cff843695197937b577ff (from https://pypi.python.org/simple/pyjwkest/), version: 1.1.4
DEBUG:pip.index:Found link https://pypi.python.org/packages/d6/6b/c19867944b3c65e9d26357da79f00ab3716ece8d709af49734c4b1a91be2/pyjwkest-1.0.6.tar.gz#md5=574ce85136a929966dc2de3f82980d68 (from https://pypi.python.org/simple/pyjwkest/), version: 1.0.6
DEBUG:pip.index:Found link https://pypi.python.org/packages/e1/43/8d7635d0f9a4636ce40b7ee756c7a7f1467366ec3b95dd8087984044ce06/pyjwkest-0.5.1.tar.gz#md5=2e01724c9320e6b13b3e076053334c05 (from https://pypi.python.org/simple/pyjwkest/), version: 0.5.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/f4/24/9e4ff9af75ea38f480078500a5dc36d2a0894bb33fabcd6636392d1cedde/pyjwkest-0.6.0.tar.gz#md5=849e72fe95767fad12984a5867aa3187 (from https://pypi.python.org/simple/pyjwkest/), version: 0.6.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/f7/8e/7ab8c72a7c552c3d9fdc5fb3e7802f3b38125432c1bec7935df6c6b5e563/pyjwkest-0.6.2.tar.gz#md5=b6d45abead5ad677a5f61d4d5bd00ebd (from https://pypi.python.org/simple/pyjwkest/), version: 0.6.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/f7/a7/e0f2c9754a7638b6bb9573a162b4fd560c89b7b2b3ff278ad072b0714c4b/pyjwkest-1.4.0.tar.gz#md5=42040753048665535794c3213bc33b19 (from https://pypi.python.org/simple/pyjwkest/), version: 1.4.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/f9/d6/c3f3c35dda6fff39f7f3206f0f649245e658a7d1f8128096ef53b7d34e2e/pyjwkest-1.0.9.tar.gz#md5=b8527ccacd446a8315315fdab1b390e1 (from https://pypi.python.org/simple/pyjwkest/), version: 1.0.9
DEBUG:pip.index:1 location(s) to search for versions of future:
DEBUG:pip.index:* https://pypi.python.org/simple/future/
DEBUG:pip.index:Getting page https://pypi.python.org/simple/future/
DEBUG:pip._vendor.cachecontrol.controller:Looking up "https://pypi.python.org/simple/future/" in the cache
DEBUG:pip._vendor.cachecontrol.controller:Current age based on date: 180
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 > 180
DEBUG:pip.index:Analyzing links from page https://pypi.python.org/simple/future/
DEBUG:pip.index:Found link https://pypi.python.org/packages/00/2b/8d082ddfed935f3608cc61140df6dcbf0edea1bc3ab52fb6c29ae3e81e85/future-0.16.0.tar.gz#md5=3e8e88a2bda48d54b1da7634d04760d7 (from https://pypi.python.org/simple/future/), version: 0.16.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/02/d7/f598e05b40dab77125a08d79409e2993b464a72bd8f6e30748fb25c8d2ff/future-0.7.0.tar.gz#md5=2817e4eac50af354117ca6f37167df95 (from https://pypi.python.org/simple/future/), version: 0.7.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/02/f8/f284a56149af9e72da9605cb178175f4acdfedc4655aabee19a138acd6fe/future-0.12.0.tar.gz#md5=8b18075b5289685e2bf7b6ad6ff7a363 (from https://pypi.python.org/simple/future/), version: 0.12.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/08/94/9f023d3443f00f62d5f3e44e6daaef059bd28300d92d59c60bedfdc298da/future-0.13.0.tar.gz#md5=3a183d2646cf2dfd05f3029126d9bbbe (from https://pypi.python.org/simple/future/), version: 0.13.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/0d/e6/37fd66577d0d0f2f647949e8e2d9096b03562e71ffd38046e2a0491e3b6e/future-0.3.1.tar.gz#md5=18b296aec71fe4682b4b529c4eba9358 (from https://pypi.python.org/simple/future/), version: 0.3.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/14/7b/a841b12ed2fd1da2db3833943a077acc7882a5657bb0cdfab6a22f9ed2c4/future-0.10.0.tar.gz#md5=ca1bc46a1632050d4e69c2cf6fce56d2 (from https://pypi.python.org/simple/future/), version: 0.10.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/19/af/6e9bcbd4d75c0529e01951cdcc5d4ceea2ff5503c166eceb829c938442b4/future-0.5.0.tar.gz#md5=1bc9a0cc6d6560d4e269e3a1276ef7ce (from https://pypi.python.org/simple/future/), version: 0.5.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/1a/fa/e955d2aaa4ea5d518837e5ff45dd3f5e8a7857312c57292232caf8d064f5/future-0.3.2.tar.gz#md5=0f91486ee9428af056b065250989af56 (from https://pypi.python.org/simple/future/), version: 0.3.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/1f/b8/b1c98f9a79016720b87516e83281278c470140a15621531ab32b13ffe243/future-0.6.0.tar.gz#md5=b49f91188f830d105c849a84efe76ff4 (from https://pypi.python.org/simple/future/), version: 0.6.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/2f/b1/202444d6c09a6d7af12fe2a8aa1ca82231497fbd3c4db0851c13af773ad1/future-0.8.1.tar.gz#md5=c9ff5a78fb5e862bf52df1c0d007db91 (from https://pypi.python.org/simple/future/), version: 0.8.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/35/34/f3ab317ef4dc8c68a4e263ff2698e56e77a5c6eb2dfaf32c933022dab408/future-0.4.1.tar.gz#md5=97ec3a9dac1bc47efb530e3b5eff08d4 (from https://pypi.python.org/simple/future/), version: 0.4.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/36/8d/403c370d25bde232bef32e8e306942b1a95c62e5146b7d3586c2548c6171/future-0.3.3.tar.gz#md5=067e4c7d48f369449bd80442595ed934 (from https://pypi.python.org/simple/future/), version: 0.3.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/39/20/35ff22a9737f14d4d036811a3f7f7f06f3a936f176496ac99021de80c2f5/future-0.4.0.tar.gz#md5=2b4646246b37878b6e9dc5af5330ae12 (from https://pypi.python.org/simple/future/), version: 0.4.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/39/62/85c024887fe4c3740856e4ee5b7fa69f73fe4e3edce06f7435d90dc5fbdf/future-0.8.2.tar.gz#md5=333f9ab29dd8a1b1428cc7f81f31d847 (from https://pypi.python.org/simple/future/), version: 0.8.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/41/b7/b646f0140a752ea87bb0b4c3a4af6a1e6e5fa676b9b1314a702368b75d4b/future-0.15.1.tar.gz#md5=e7f0acf03544be4a11452da9e337469a (from https://pypi.python.org/simple/future/), version: 0.15.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/47/71/85e86ca16d116369e327aeece8f383d896fb2e55f3033d03753ae3c717a9/future-0.2.0.tar.gz#md5=d1a00161ba598b552b71d810971ec784 (from https://pypi.python.org/simple/future/), version: 0.2.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/48/04/0f72f4e005490d07b25ce5b8ac023ecf4bfb2d38ece2bc55b0f03f1ae45d/future-0.11.3.tar.gz#md5=a5e11b2574ea99a6eb0cf19233a46c60 (from https://pypi.python.org/simple/future/), version: 0.11.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/4b/26/efbffa48a3ddd910c039b62fdc1b619f1e995eeff46a895ac14f7accafb8/future-0.10.2.tar.gz#md5=cb90cba89b8f7bab05e9e0df588155ce (from https://pypi.python.org/simple/future/), version: 0.10.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/4b/ab/3e42d1f0227e3a23d02338506e24007a1d9c21bda028735efb19285578f9/future-0.14.0.tar.gz#md5=ae458811275c8dafefdd699ebbe95724 (from https://pypi.python.org/simple/future/), version: 0.14.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/50/ee/213a1d99b19b9b37e26698ef20b704a27bfaaa7fd98de67464f15f36af1c/future-0.11.1.tar.gz#md5=00db7b1f7034dcd60287d8b9bf61274d (from https://pypi.python.org/simple/future/), version: 0.11.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/57/57/970dcbc3d2ea887f286a4d3caa03ad772fba910de2bb0da83a3b960614aa/future-0.8.0.tar.gz#md5=cad98897db7cc58a12f90250b4d8793e (from https://pypi.python.org/simple/future/), version: 0.8.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/5a/f4/99abde815842bc6e97d5a7806ad51236630da14ca2f3b1fce94c0bb94d3d/future-0.15.2.tar.gz#md5=a68eb3c90b3b76714c5ceb8c09ea3a06 (from https://pypi.python.org/simple/future/), version: 0.15.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/5e/05/b1c3543d934e289d879e91a5ba4d8d53dd97f794a23c555b13757b2c6bf6/future-0.11.0.tar.gz#md5=e90a7da13e150babc80cb8acff86fc10 (from https://pypi.python.org/simple/future/), version: 0.11.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/6a/d7/8a0dc06421cde141a4f1345e19fd08967901c3ab969c47feb8f1157d81ec/future-0.0.2.tar.gz#md5=d7948a98be41882c04a3305ae84b55b1 (from https://pypi.python.org/simple/future/), version: 0.0.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/6a/f5/79aed4c3961bd5a33ed259a6d700dfb91cddde963c03f1e0f5fe8c4f9800/future-0.5.2.tar.gz#md5=c9ad29520090fbfad1c38c49b5b58972 (from https://pypi.python.org/simple/future/), version: 0.5.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/70/3d/8110f3a9eba14fa50ad8773a25715294117ce8364c3cb5b7fec3cec94b45/future-0.0.3.tar.gz#md5=ed7f5b16a2de6886fc311582caa9dee3 (from https://pypi.python.org/simple/future/), version: 0.0.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/76/49/512ff7efa41f0b63d311bb4f5260d63f547f8bfb0fb8ad2e84268932491e/future-0.3.5.tar.gz#md5=55c6510a7552f83a0c744d385b1ecb70 (from https://pypi.python.org/simple/future/), version: 0.3.5
DEBUG:pip.index:Found link https://pypi.python.org/packages/7c/eb/1d7403c6d187ec097394685b0ea8a69faadaeb63f222d6c9b85ae165f915/future-0.15.0.tar.gz#md5=cf1ee211567cc0b1021de5839064fe7b (from https://pypi.python.org/simple/future/), version: 0.15.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/83/80/8ef3a11a15f8eaafafa0937b20c1b3f73527e69ab6b3fa1cf94a5a96aabb/future-0.14.3.tar.gz#md5=e94079b0bd1fc054929e8769fc0f6083 (from https://pypi.python.org/simple/future/), version: 0.14.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/8d/96/0c1b5bd252dad69587f2f38f13d4e611bc3582d51f985a2ec3001f5a56e3/future-0.3.0.tar.gz#md5=f7afca67538fa7a38bd3cde6166d9e1d (from https://pypi.python.org/simple/future/), version: 0.3.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/97/22/1f2ed10053f338c41e622ca0ea155990d5cdb6ffd602c951649554cc9723/future-0.0.1.tar.gz#md5=63135b6d0771961ecab37e9e1279f606 (from https://pypi.python.org/simple/future/), version: 0.0.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/9d/47/5cdb58d1ce9035d6f6b4bde347354f262d2cddd568c51c3053baa88fc59d/future-0.12.2.tar.gz#md5=11c1fb29f7fb181396cbc1b73443d431 (from https://pypi.python.org/simple/future/), version: 0.12.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/9e/be/c3adca8bdf3e452622e085e0cf9cb5c9f45e9e14a8ff77f7e7ae9cd34604/future-0.11.4.tar.gz#md5=883e971706d7c4553ac2053c14e9a46f (from https://pypi.python.org/simple/future/), version: 0.11.4
DEBUG:pip.index:Found link https://pypi.python.org/packages/ac/7f/f925ed0e29af42ed3273a1eceaf90b9c3d6bd51bca8aaba49725e9c0d9b5/future-0.12.3.tar.gz#md5=f06ca1635ea8308842a3921d758a0978 (from https://pypi.python.org/simple/future/), version: 0.12.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/af/cf/4fbe349bcf9a08f2c329a66cc4d4a417387acc9033ad5238160b3f266e05/future-0.1.0.tar.gz#md5=fd8a275860cfb38f2a441c0402593158 (from https://pypi.python.org/simple/future/), version: 0.1.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/b4/e6/07e207c894654762689a37c1b697c16aee1360df6eeafcbd66d3a16b9812/future-0.13.1.tar.gz#md5=b6ab8aafb3b76c6e93d4d9de87210a88 (from https://pypi.python.org/simple/future/), version: 0.13.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/bd/f1/3969374107374de0133022284302829ce57bb3aae40d3652954725c730d4/future-0.5.1.tar.gz#md5=4eab6ebfed63434fa2cdc3f468fbc35d (from https://pypi.python.org/simple/future/), version: 0.5.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/c9/77/a67f45ce02080d57bb6da0577e85cfcde8bf155c90dbedbcd4d43d21591a/future-0.10.1.tar.gz#md5=d7da17940f00b51f7e64f963058ef3da (from https://pypi.python.org/simple/future/), version: 0.10.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/d6/c1/3e8cee376151bd70744e7f1290212f887333323f260da22eb834c709d236/future-0.14.2.tar.gz#md5=0a35e86bb292fa2d5b3779a3ce31865d (from https://pypi.python.org/simple/future/), version: 0.14.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/db/74/22c98655ae91486061cd2fe3058bd8a8422e213a36d3ae315bef023d062b/future-0.12.1.tar.gz#md5=204fdcf4bc67041384fd5627975c59fb (from https://pypi.python.org/simple/future/), version: 0.12.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/dc/a6/57718937bc25e602367d82ff86a6689b677f18e29e30ff9bab58cc17f5dc/future-0.14.1.tar.gz#md5=993eccc219723e88f232038596c955ce (from https://pypi.python.org/simple/future/), version: 0.14.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/ea/a9/8f9d4a952a681b860b4d08759dc3fa768b8d611c72048497c872bee6e54b/future-0.12.4.tar.gz#md5=e68b9b3d95f9fb6db7f2386541e38e38 (from https://pypi.python.org/simple/future/), version: 0.12.4
DEBUG:pip.index:Found link https://pypi.python.org/packages/ed/52/ed0ce839b5b8cf521e2361296c8a5892a242824a7a7e294a3fdbb8d2d79d/future-0.3.4.tar.gz#md5=d0584f4d0b70f08f02c4e799fa57f660 (from https://pypi.python.org/simple/future/), version: 0.3.4
DEBUG:pip.index:Found link https://pypi.python.org/packages/f7/19/0a60b692f34dae382bff5ca243dd5727b0205d8ee7ace62dee8348e5751e/future-0.9.0.tar.gz#md5=6d5af6b5e85faad86404e0cfc1abdb26 (from https://pypi.python.org/simple/future/), version: 0.9.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/fe/4a/5697d5a9681607f9c34b87af13782cb8eb832bc3a4ea2747b9433a2d7e52/future-0.11.2.tar.gz#md5=b85a7097b331641883ab8832d768cef4 (from https://pypi.python.org/simple/future/), version: 0.11.2
DEBUG:pip.index:1 location(s) to search for versions of pycryptodomex:
DEBUG:pip.index:* https://pypi.python.org/simple/pycryptodomex/
DEBUG:pip.index:Getting page https://pypi.python.org/simple/pycryptodomex/
DEBUG:pip._vendor.cachecontrol.controller:Looking up "https://pypi.python.org/simple/pycryptodomex/" in the cache
DEBUG:pip._vendor.cachecontrol.controller:Current age based on date: 178
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 > 178
DEBUG:pip.index:Analyzing links from page https://pypi.python.org/simple/pycryptodomex/
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/02/bd/9a30014e23a80f2194605a50a9209176849204b1f17832ec43912635f2a7/pycryptodomex-3.5.1-cp33-cp33m-win32.whl#md5=cd2833197bfc5b6633718e55e5e75106 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/04/35/2cb198e0aef0d29430bb8ec741b6dc7356ef071f34de25db1f9aa87eef06/pycryptodomex-3.4.6-cp33-cp33m-win_amd64.whl#md5=8010977253c21cb7aa028c3e811e923b (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/04/55/9e4c9c0bcd0b6c2d4081071975323df0ae5758defe79bc2c5b66a60e06b3/pycryptodomex-3.4.9-cp33-cp33m-win32.whl#md5=fee61aef4ff809a387cce601318657f1 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/05/cf/5b31267d00cb7f22a9ee5ea80efcad6ed15fd9a342495854d7c164507a6d/pycryptodomex-3.4.12-cp27-cp27mu-manylinux1_x86_64.whl#md5=a82ff71ad4e4a125e64d460f605c48c5 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/05/fa/6e60a4b51d3ba2530646a0e0c5678c24c8c2221a8b7a1f6538caf628508b/pycryptodomex-3.4.8-cp33-cp33m-win32.whl#md5=1750876a1f2473d05b300563c610928e (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/09/cb/a61b688b81b1d241cfe25ff211682a141f83d16367db39b1d54c207ecd15/pycryptodomex-3.4.12-cp36-cp36m-win32.whl#md5=4a1d7c36f5d119844191f59ad4c53603 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/0b/51/b94c931bed58d47142483665d09577f57ea9907bfd666ed3667385aeab34/pycryptodomex-3.4.8-cp34-cp34m-manylinux1_i686.whl#md5=a0713bd427e2ea87cf09a5c4e32b9bbf (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/0b/69/7e4439420d90f94350aad2a1928698f9156f18544ba36e2cfee5575b349a/pycryptodomex-3.4.6-cp35-cp35m-win32.whl#md5=6bc30210521fa17f99683a73bfdc6a4c (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/0b/79/af526fa2e8a27c020e51fc61e9b7b422afcd5d2c6464f667080836b8e126/pycryptodomex-3.4.3-cp36-cp36m-win_amd64.whl#md5=07023c76ef828e95e698b43698e4b4aa (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Found link https://pypi.python.org/packages/0c/31/4f8bc240b75af722f890ad84e5a60abea4106cc95cf4928440f197783755/pycryptodomex-3.4.8.tar.gz#md5=0f27c44d7b88f6f9cae5f479cc29c8f3 (from https://pypi.python.org/simple/pycryptodomex/), version: 3.4.8
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/0d/d8/930f56ed19e6c7756968d3a84174834223548fbbcf31eff3450f8487a425/pycryptodomex-3.5.1-cp27-cp27mu-manylinux1_i686.whl#md5=69ab6e383c11b63fbb0e901ab8e1a903 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/0f/ea/4bce164a6169f9e3fb3d36e897669bf03024274096ced0236cea70125f7f/pycryptodomex-3.4.12-cp34-cp34m-manylinux1_i686.whl#md5=193ccf66c71725dab7234eb5f1b06416 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/0f/ea/c5262d1ac624d55a99ebdc57ea8eac19cd520043e20473b14dd26c4f7242/pycryptodomex-3.4.11-cp27-cp27m-manylinux1_i686.whl#md5=2787d0cc0c7d0cc29889eb565120623d (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/13/ac/60218b4777fad47c33df5f644385b32174eed9f4babfdaeb4d91a6669479/pycryptodomex-3.4.6-cp36-cp36m-win32.whl#md5=3b8e049554d1696c314bac7550443151 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/14/82/a00a91608b860f8d2dfd1f8b9acf928e0c78e110538381a688b0bbbce0f1/pycryptodomex-3.4.11-cp35-cp35m-manylinux1_x86_64.whl#md5=7beafdeeedc74797c000cf12e60f9703 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/14/ed/9cd1eaa530a9a9fe4dfc884b8988772e9a2e8fb2388a79ae2225f3793f96/pycryptodomex-3.4.8-cp33-cp33m-win_amd64.whl#md5=dd7a099d7b2274b151ca5fa956ea94f9 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/15/e5/7dae65d8b603fd71ac20fead0e9a78e803d9668c9b53deb4b69c161218fd/pycryptodomex-3.4.3-cp27-cp27m-win_amd64.whl#md5=1d53b9fde38cff9206faac78a82f4f0b (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/16/2e/f3b6f8558f5211a4c27e0c66b74eaae9cb0d10d04cc991ccc98901262317/pycryptodomex-3.4.5-cp35-cp35m-win_amd64.whl#md5=777728352f2cd98f6264bb484a7087e1 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/1c/91/4074d001ab0ec261d3817fa85a75a21fe564e1b6ed313d933e47cce586ef/pycryptodomex-3.4.8-cp36-cp36m-win32.whl#md5=f4b1b24eec33376b69eef786a35a0cbd (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/1d/5b/688a6a5bc51c0cdafcbe2837c267762c2cf70f2bd2f1a072981916c1b73a/pycryptodomex-3.4.3-cp33-cp33m-win_amd64.whl#md5=74c796e256cc198b0bf977ca9afc8e59 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/1d/c9/262c25c76f0606a0fda3435eff187af9d22179acbdc4b0096b34a61e6e87/pycryptodomex-3.4.12-cp36-cp36m-win_amd64.whl#md5=988637c04d9cf0f56fe74f012c560471 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/1d/f3/bba18c725367373b6636d24e1adf77c0b142b13a6c5ef3999e6e4371902c/pycryptodomex-3.4.12-cp27-cp27m-manylinux1_i686.whl#md5=ce0277b8f503863349fc40f64e3230dd (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/1e/29/01d16db97013c5f80b5d5b644f9f54153d298ec7f3adf2b9c5ca23d9a7d7/pycryptodomex-3.4.7-cp35-cp35m-win_amd64.whl#md5=c1309a15f47ac1ca086b13e16fdf95f8 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/21/d4/1534e26739ea5647bd4039a1f86b1d0ef7d9b3fcefeba3844044aaa4d051/pycryptodomex-3.4.1-cp35-cp35m-win_amd64.whl#md5=715b6c40b9ebe14b2f48c885a8f215c0 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/24/0d/8b487dc15f8366d18fdfd628be4361f1223cb93725dbb98192b13e7d96de/pycryptodomex-3.4.7-cp34-cp34m-win32.whl#md5=f9794df7299626ce57f8883d3e81074c (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/24/6c/f89a464734340e3ea08d23e22567a474d38f5a31af3c8e2e52f1f7fdf6a1/pycryptodomex-3.4.11-cp27-cp27mu-manylinux1_x86_64.whl#md5=0c82b592eafbbade663663220e0acbc4 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/26/0b/8ed0bd2c83b3b30e6607bf2c2a0a151421dfd624060dd280e125b0e4bc87/pycryptodomex-3.4.2-cp33-none-win_amd64.whl#md5=ef3455a52a49737b867e7fb03ae61e52 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Found link https://pypi.python.org/packages/26/93/363678ad271184162be7ef50ccc17f6f5de482ad31b8eb3e09bb05be124e/pycryptodomex-3.5.1.tar.gz#md5=d62e4295151958a974e9df5adb766f72 (from https://pypi.python.org/simple/pycryptodomex/), version: 3.5.1
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/27/96/892696e5f4bd10a25e69863c17a612a136090b2d1b9086ebc134125d945f/pycryptodomex-3.4.11-cp34-cp34m-manylinux1_x86_64.whl#md5=2ea737dd25789ee3ecf47c40f6c663f4 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/28/5b/966a645360bd09cae83f5327467d7921dea278f6f20b5a079ed50495bead/pycryptodomex-3.4.2-cp35-cp35m-win32.whl#md5=ddd93d1d8bf4c49e439fc6c582155f0c (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/28/9d/06e72ea47318eb0ae37588e76371818a9df780fbdbc7fe26fa958b7e128e/pycryptodomex-3.4.9-cp36-cp36m-win32.whl#md5=ba69ecda1a5fc432543879e06c0dff19 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/2a/3a/ca4287abcc3b46eeb0fa600be2ab2cd96d10a38c2bc89a898e7fdf93d6b4/pycryptodomex-3.4.8-cp27-cp27m-manylinux1_i686.whl#md5=2b570f2720cb9d64c3f9601517ab8645 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/2a/cd/e92e8daaa61063f172f0d7734a3a41b80ea39779239c8744609c4dbbc363/pycryptodomex-3.4.9-cp33-cp33m-manylinux1_x86_64.whl#md5=f0a8f2563dd865dcbd1dd54e33051274 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/2e/7c/b100410ef57a74502d7c7515f9b280b388a75d62b34d9bb46daac82af150/pycryptodomex-3.4.12-cp35-cp35m-win32.whl#md5=c5463b9c1c5f43a3bb052bb4adad1deb (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/2f/26/5d5cce8926dba283e398957109d0908bd618a4ce3122e252bff846bb79c6/pycryptodomex-3.4.2-cp34-cp34m-win_amd64.whl#md5=c52d09800861aefbd426f1b09eec0df9 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Found link https://pypi.python.org/packages/30/b5/5203e7e7c89a331564def342b7262d196495b35303b6b84ec166e78ccee4/pycryptodomex-3.4.6.tar.gz#md5=fd6304111732bb085bac1f422dddc662 (from https://pypi.python.org/simple/pycryptodomex/), version: 3.4.6
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/30/bb/1b0e7d883e98891a652f17a47aed2696fd46634184304c01b676abea9b51/pycryptodomex-3.4.1-cp34-cp34m-win_amd64.whl#md5=3eb73e3e316027ecc41dedcfd17842cb (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/30/f9/dc7a6ee0a5f107f71b94e93c0c5f39f52d577804546c5d61a80e4679778a/pycryptodomex-3.4.3-cp35-cp35m-win32.whl#md5=04159d5660e1836f4043a2bd45a58517 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/33/92/f88766a4f50689de40a74ed0c740c20df85ae0e27840750585fbca8ac0f3/pycryptodomex-3.5.1-cp33-cp33m-win_amd64.whl#md5=8d8803e35f8780f6366a5b236e210f51 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/34/04/a6f8a3fd76b96e4beee005877c4147da819e146777f6061929a1a80aab2c/pycryptodomex-3.4.7-cp27-cp27m-win32.whl#md5=a5f611bd2aa00bde49a7c8775bffb832 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/35/64/29f8c1184fffb5d18ed6e786e6195a6a6dfb72c276fa132e585e910c1e91/pycryptodomex-3.4.9-cp35-cp35m-manylinux1_x86_64.whl#md5=f8f10864636f8ce62c3a7187aa934865 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/37/18/a145c79fdaabb5a32b4d491c19465371d96e4ae72877d96465aeafad029e/pycryptodomex-3.4.2-cp27-cp27m-win32.whl#md5=8df74eb3dde47acc16c7fbdbfdce1750 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/3a/11/c950a17dbaab9c96a2528478ea06d44cdce0b35d8babefd42e1ef4ca51ae/pycryptodomex-3.4.12-cp33-cp33m-manylinux1_i686.whl#md5=ed92b45397bc0efd656718c9761005a5 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/3d/17/b54719253aa97fbfcc13c5c81954b8e9e958c70bebe865f64332b2f249ab/pycryptodomex-3.4.9-cp34-cp34m-manylinux1_i686.whl#md5=474cdce8a9ac3ef98713ce3e4677dd02 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/3d/56/c880f082588498c5b1a12da73cc6ff03700ba895bb23f827fa06a178b897/pycryptodomex-3.4.9-cp27-cp27m-win32.whl#md5=03cab1ef1a74a619191586365f7e114f (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/3f/63/37db0d7ef257ef57a4904ee36be32d0260c2e2504c4243e92f3d162df0fd/pycryptodomex-3.4.7-cp35-cp35m-win32.whl#md5=0b86e9b0b16a7368cf7ab5ca0105937d (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/3f/f3/a179025da9498926c02a15a49635a7e9256740596e38b6af9065a706a3be/pycryptodomex-3.5.1-cp34-cp34m-manylinux1_i686.whl#md5=f3d6d90ec80fda080a5fadf69740ae12 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/40/13/1dec0b70557d33c0c49ebd8a354d0e684dc77905f1427fc24c8432f9c7f4/pycryptodomex-3.4.12-cp34-cp34m-manylinux1_x86_64.whl#md5=c71d33b99d046cc4b4df67f4fceac6ad (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/40/67/7aaa8cddd5de6a940b3b0912c0134743800aa590f78451915e462d021994/pycryptodomex-3.5.1-cp36-cp36m-manylinux1_i686.whl#md5=03869ea24d98830be75170ae73086f0d (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Found link https://pypi.python.org/packages/42/8f/1b9a98076380ec4107aa6a83bed68c51c16e4b54653ed340f6f34f3bf1ee/pycryptodomex-3.4.9.tar.gz#md5=b086c2faf61b772f079eb6c0ba0dd464 (from https://pypi.python.org/simple/pycryptodomex/), version: 3.4.9
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/43/7f/eb571dd0002f6650d176f9b2b1eb81f62c0dc8a0f4faaf9168144bae88c2/pycryptodomex-3.4.11-cp27-cp27m-manylinux1_x86_64.whl#md5=e1816872a72a495d48218ee15289608b (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/44/f9/9be40cdffca84fd2638a19b21aa60390f2618c3e5aed4cf35d93b879de88/pycryptodomex-3.4.1-cp34-cp34m-win32.whl#md5=c7cdc2cdc283aa84dbdf46379266db79 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/47/67/8dda9f8e5812cf3559b78dcc1a8cae1be4fb3fdff88308f62972468372c8/pycryptodomex-3.4.11-cp34-cp34m-win32.whl#md5=c5e77ef6903b9e74e561599630afb2ce (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/4c/fe/0be66d767a9c7623cf6c7ce7cfe8e2a952f8c5acc037451cb19a0c8fbfda/pycryptodomex-3.5.1-cp27-cp27m-win_amd64.whl#md5=afe7e47b4de7bdd166886cadadf9a7f2 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/4f/79/7fce2b394b27d294c580420b493fe30e87c52ca12b53d598547f9b407de4/pycryptodomex-3.4.3-cp33-cp33m-win32.whl#md5=20b0c08f7e16bd446b31708f1b8874a4 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/51/25/c12cac6344601d53d07ccceb3b9403adeea1437371897cf238fdf3db7bac/pycryptodomex-3.4.9-cp27-cp27mu-manylinux1_i686.whl#md5=7d91619d3e9738e7e52aff7551e8417c (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/52/32/45be014dfe9bbddd0398b1d37a42975a20fc18bf094e1bb8fc428aa5340e/pycryptodomex-3.4.11-cp33-cp33m-manylinux1_x86_64.whl#md5=c9d4fb4bda9fd3001e3a79c4865e6328 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/53/2d/1f787de5060e438955ac109296e54a290f523e97227ac773693ee5a778a0/pycryptodomex-3.4.7-cp34-cp34m-win_amd64.whl#md5=6b0bf34d12ed846836b26345837c4cd9 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/54/2b/a36a73a1307b8bc746bd8937c7bcc23d894e8578813402627cec8381ddb9/pycryptodomex-3.4.5-cp34-cp34m-win_amd64.whl#md5=c91f74fc6100cb458234c88ad35bc5e0 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/55/b4/a53f3f10c1006a8d2b0aa10e018477711b933a6e5449dd4a686ff2d10bc3/pycryptodomex-3.4.12-cp27-cp27m-win_amd64.whl#md5=01c95e921484e3b95cb8fc352a7644d3 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/55/d5/ae5a6d5fe788a8ab939bb4c06f6a2e32fdfcbf96700e4e36358009cf7530/pycryptodomex-3.4.5-cp33-cp33m-win32.whl#md5=cce56c38b2c35729cb1863f143a3e8a6 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/57/1b/65ed70ad379a465479aaa57f3e4f4e08d932a4236e7d787cc38f626c4c07/pycryptodomex-3.4.12-cp27-cp27m-win32.whl#md5=8c1c72c575096b6c8acf9dd25495d6b2 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/57/99/154c7857170510f86cfccf94cac389208f723537bf7968683b7828752057/pycryptodomex-3.4.6-cp34-cp34m-win_amd64.whl#md5=9c20a01c49effc268ad668b1005f0cc1 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Found link https://pypi.python.org/packages/58/bb/457dd4b79d07cd421656612d73a27a0849ece6ff237023cbee76c99dbd1f/pycryptodomex-3.4.12.tar.gz#md5=365ece269810bfe4170bbe423b773cc7 (from https://pypi.python.org/simple/pycryptodomex/), version: 3.4.12
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/59/2d/ab46598b69f130e793e332b6fd97b191f6bc80414afa4eceb234085e5c83/pycryptodomex-3.4.3-cp27-cp27m-win32.whl#md5=753e9493689072d339e7455136dda80f (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/5d/d3/848b2af3f5ba9baf7468ef4a0279995e979d7f9b301bdb34d1692759d030/pycryptodomex-3.5.1-cp27-cp27m-manylinux1_x86_64.whl#md5=493f6d1172edc93bb6248c02f44930ae (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/5f/76/0f6ee1c9472f1d99348b20db6e0c5071ed131e831aae3d5594ae919f7292/pycryptodomex-3.4.2-cp27-cp27m-win_amd64.whl#md5=dab6fb8a83ba6f661831f9ecc770f2f7 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/61/93/234fa42159da01596a10f3b4837477c0c8bddcbc2be656a31dde482b9a6c/pycryptodomex-3.4.9-cp36-cp36m-win_amd64.whl#md5=0088504ec7a2984e6b0cd7eda6db3994 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/63/c9/d2fea1780762a7dc8428f881d6a29e1c2145ba60dd897df7a32ceccb7c34/pycryptodomex-3.4.8-cp27-cp27mu-manylinux1_x86_64.whl#md5=eea73ce4dfee694e0e96829713e5decf (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/64/a1/705e2562a312e58ea92e5e9046215b59be3cf522a2f3cb425b4f9765e6ef/pycryptodomex-3.4.6-cp34-cp34m-win32.whl#md5=820b6b536854987479bde67a9e67eb0f (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/65/54/183d13c53ad75a41bae7c063a032789000a928d94d89358624d222c8b733/pycryptodomex-3.4.9-cp27-cp27m-manylinux1_i686.whl#md5=d8a1f60715a417b8e387660f726ace91 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/67/10/708eb77410275fa0dffa8d0122f34c79bb6ab3f474a898e1d467982d8f35/pycryptodomex-3.4.3-cp34-cp34m-win_amd64.whl#md5=83c55d82519b3f0eaeb9b8b57217958c (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Found link https://pypi.python.org/packages/67/9a/a9b49b2225af75bab5328b987f5cf3fd73306188b9272bd69bcf8c57ef04/pycryptodomex-3.4.2.tar.gz#md5=5f58848b35a8362d9ebc0f94bd8cc5e7 (from https://pypi.python.org/simple/pycryptodomex/), version: 3.4.2
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/67/ec/2766d713e6b13f68d2887b1e248b3cda5246d721886dd0be68d17960ac83/pycryptodomex-3.4.5-cp34-cp34m-win32.whl#md5=cd21bc09212d647e443ea7e6871afcee (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/67/f9/6e3fd293575e2d34fc7281cfc3adcb35ada4ce7c2934e6d79ad22a7ebf0c/pycryptodomex-3.4.1-cp27-cp27m-win_amd64.whl#md5=2a5a9e903fe3cbc3de300b673e89971e (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/68/62/54b71231f50864c53427c4878ba911d4bf4347e6ddae986d8e5cdda6721b/pycryptodomex-3.4.8-cp35-cp35m-manylinux1_i686.whl#md5=3a56ec83672ee0e33d1c1740114fa3b4 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/68/95/aad3dd809bbeea6896102b79c2c591268022f42d3841deb058050b9ff851/pycryptodomex-3.4.7-cp33-cp33m-win_amd64.whl#md5=f28d59c089fe4510a0bc6c7bb715505b (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/6c/e2/5c7af65997c324d3ba1f74af23754ded8c5fe1e09d1a7974c51f9dba9b2f/pycryptodomex-3.4.5-cp27-cp27m-win_amd64.whl#md5=f4c8419940f9f6804a34bc83e9cf5ad3 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/6d/58/e2f6a0e0f740b770add8a05282e2c3d0cbadd148d5801de6b1948c188d4f/pycryptodomex-3.5.1-cp35-cp35m-win_amd64.whl#md5=697f5fef10a9001ae02a6a3478c8d1af (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/6e/d4/065caefa8441fbc0a159c1fa305e448b533cbc10d1bd69d73729c80aef6d/pycryptodomex-3.5.1-cp27-cp27m-manylinux1_i686.whl#md5=01e284eff1d1473a82de5bdf7f711c8d (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/70/38/3418bc74479890e4b0f3c9ac72e683a32be6076a0788b640edc441df46f6/pycryptodomex-3.4.7-cp36-cp36m-win32.whl#md5=cad7fdda9781062684fd0f0e21418e67 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/71/82/cf743013ec7e5623d83d5266f2a71389af26b1d7c4dc9b6252c4dd5655fb/pycryptodomex-3.4.6-cp27-cp27m-win_amd64.whl#md5=382108b00af3a1185d57c4bf28355e96 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/72/1f/4c0afc5bb7e2779470776ec42aca2c8cfadb563882d4d97992129b8056d5/pycryptodomex-3.4.12-cp27-cp27mu-manylinux1_i686.whl#md5=e880dcfe5a56746954c9e60bcaf2de63 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/74/e2/a279938978da7c1728e047372283ecaecb2c72500900883ba958c4e6ed35/pycryptodomex-3.5.1-cp35-cp35m-win32.whl#md5=5bc69a01f881863f755e346ea7d701c1 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/77/f0/caf5fb6365ad86c4567dac6ccfb2bfc999fe76a4cc2cf7de8d476546e50d/pycryptodomex-3.4.12-cp36-cp36m-manylinux1_i686.whl#md5=4f24642a36c7b8a421d4710f918fc1f2 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/79/f4/88fb3b24d6de3ab270077dafc367e3872b26b24e6ff0b3b2b70ea288d18f/pycryptodomex-3.4.9-cp34-cp34m-win32.whl#md5=45de2a339faafc8c58698112a46e14c0 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/7a/e1/c294a0b21d486394c94bc88ff170c24d6f22ecf5611e754ae6a6d5b6073e/pycryptodomex-3.5.1-cp34-cp34m-manylinux1_x86_64.whl#md5=4f03ed72df0d0d91921e0e29c5b4ffa0 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/7d/8e/f9d3412d4641ce2372b88f5c28070e3431945b6ca8bcaeeef966db1d43a9/pycryptodomex-3.4.11-cp34-cp34m-win_amd64.whl#md5=31aa0afc771a69702162915481f7a2a1 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/7e/65/59429235f7675513b0ce65faf6cb51ffae892bea34193924c88726e754a8/pycryptodomex-3.4.8-cp27-cp27m-win_amd64.whl#md5=bfd5a2ca8c015d366be9c403c8751cf2 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/7f/57/9961b8149b1bd33563a11450d9117e7b43db49da4d44d452712e042cc755/pycryptodomex-3.4.12-cp33-cp33m-win32.whl#md5=7d9a828ab8e694593f00fe2c9b264969 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/80/2c/6142e75e9be8c2c8e2b5f364d9c64a1449a04c6ddc7b295d3a58fd5ac5d2/pycryptodomex-3.4.8-cp36-cp36m-win_amd64.whl#md5=b23ea8c7d8285d186cce83a292d722e8 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/80/42/d7b65ff1d588a4cee86728014b629776ce2b04ba58108ced53eda08089da/pycryptodomex-3.4.8-cp36-cp36m-manylinux1_i686.whl#md5=63c1e5603056103cd9a44b3e5f256f54 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/80/dc/1554672b44ff788c5652d77533050af0ac6fb469ba63895c2fab9964f87f/pycryptodomex-3.4.9-cp34-cp34m-manylinux1_x86_64.whl#md5=ada96c29b6c061903e4e9dd0f10c4b46 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/81/8f/699301587569f65e36120157390615a1a4b36e0e4e0959f49540c315c92d/pycryptodomex-3.4.8-cp33-cp33m-manylinux1_i686.whl#md5=81fcf326c481ea692a9b22fd5b144bc2 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/83/02/7d80c62c824e740f91d2badd385bb8b22a55dae5bb04fc117a378bca04f1/pycryptodomex-3.4.1-cp35-cp35m-win32.whl#md5=31503ffe96a03cb79e1b2ddc7a02fe06 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/85/0e/cbfa8827879da9deeaab0564b1f69cc1457478dbe1994c49bb0797b4b696/pycryptodomex-3.4.8-cp35-cp35m-manylinux1_x86_64.whl#md5=319aa14a77ee0f6a26544ace4d891e35 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/86/1f/7e1f4ddb0b34e3544b33440fe040a621ed829b034ec7375164469b693d9f/pycryptodomex-3.4.9-cp35-cp35m-win_amd64.whl#md5=a6c91c6d0992d9e6d6a82d295f9778d0 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/87/1a/929761d96487953fa074660f2c7ac7b7ec1d4858bda1e126552f0897957f/pycryptodomex-3.4.5-cp36-cp36m-win32.whl#md5=93f3071b9db182e589df2b0cc598e371 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/89/d9/ce9986d395b6d7f6f0ee7bfb85b2e8c6ce27ccdcc881b42b0cd772630fdb/pycryptodomex-3.4.11-cp36-cp36m-manylinux1_i686.whl#md5=6bb0ac2a2aa86f7c85e538076fe00220 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/8c/07/b1e8b8bea52d59caab9606e7bf02403529b2966deb6e91d08d2977f7ca03/pycryptodomex-3.4.12-cp33-cp33m-manylinux1_x86_64.whl#md5=083877f9439a7291da5d08d2d68028f9 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/8e/10/9ffe40cce3fe613abf22ed018c092c984e3746eafbd5393e6032ccd3a959/pycryptodomex-3.4.8-cp27-cp27mu-manylinux1_i686.whl#md5=e245f4e91016f8f3ec3a81eb99f9b481 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Found link https://pypi.python.org/packages/8e/a1/4c3aa525c537f149375722103af4203573a3ce808d98d5c64b7b0b3834b3/pycryptodomex-3.4.5.tar.gz#md5=5dc0ecb2ad2d5d7eb103081733fe1793 (from https://pypi.python.org/simple/pycryptodomex/), version: 3.4.5
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/92/66/da40b654fd4b2518022982f6ad99ab01246c8225dc931d68271859d29385/pycryptodomex-3.5.1-cp35-cp35m-manylinux1_x86_64.whl#md5=bcc01dda57b3bac0a0f9c37fe3bad141 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/95/97/0727136c44d672ba334e950aec3cfa2cb0297897efa1fa5ee4217142e3dd/pycryptodomex-3.4.7-cp27-cp27m-win_amd64.whl#md5=caf6ae485a8f66f708b93ce15fb022fe (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/97/03/51e27b805b64d577dcfdd58c19dd0d4694d9407857eeca9748f4f614cda7/pycryptodomex-3.4.9-cp27-cp27mu-manylinux1_x86_64.whl#md5=5ba623d84a222d55f178590870bf87ff (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/97/a0/455d32a805e40ceb3440f49ec6ce7a046094feb80318ef00d1601d63377e/pycryptodomex-3.4.5-cp36-cp36m-win_amd64.whl#md5=3498855b6c5299aac93e2288d5b66cf2 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/98/b1/31f182b90c9d6154373e93bff150af2041983f5460fedcf5c105bb671acd/pycryptodomex-3.4.12-cp34-cp34m-win32.whl#md5=6e369d6a84aa7a9033196369c27d33df (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/98/ef/659f4cba09b689425ff4fba9840fcfeff7f1d2d0be9900d98e78d59412ae/pycryptodomex-3.4.11-cp33-cp33m-manylinux1_i686.whl#md5=c723fba0f5f2ec5111b8290751c9bf82 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/9a/65/f084e26cd503e3c30a786b051cd80c44d39a1eb553b95d35e2d2b7779bfc/pycryptodomex-3.4.6-cp27-cp27m-win32.whl#md5=f62a747f1443b5d485d6e51e1eebc365 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/9a/af/04ad16d19905058bb821dd3df227a6762d943fd0fbb145995e281a0e46b6/pycryptodomex-3.4.9-cp27-cp27m-manylinux1_x86_64.whl#md5=2f23400199f26ae3bc887a780e18a179 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/9b/e2/217435094da4c258ba16b3b6aea14f577bd562c11540ccabfd03ee231720/pycryptodomex-3.4.12-cp35-cp35m-manylinux1_i686.whl#md5=cbf7f36658eca5c3c9f70179c56c0996 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/9b/f1/ee0e3db72012b3ccd1104d3dc6bba2856babbc7862e4b14fe2e1a4b2d920/pycryptodomex-3.4.8-cp35-cp35m-win_amd64.whl#md5=1088dd7e697151f045b287354f7b3585 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/9c/24/9a6acdec2422a0f8ee04cb8c44c279901315991049bb4bf02c66b0ea8a40/pycryptodomex-3.5.1-cp33-cp33m-manylinux1_x86_64.whl#md5=c96b154ce0b11d98be3c1a728fcca3ab (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/9c/6c/6c96e36bd72a13d73bb14dbf51413052c4f03d6fa230ef386c6530286352/pycryptodomex-3.4.1-cp33-none-win32.whl#md5=4193883d343731d336d61b3d7dacb210 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/9e/70/8f1094a12650bebd39d4416b2706ae3d5fdd94885bf6695e72994f6a3124/pycryptodomex-3.5.1-cp33-cp33m-manylinux1_i686.whl#md5=7723b6682d7d0a0f90c72f79b991208c (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/9e/8f/08b1bb92e2fee30cafb2ec3b0cbf09fb827ff968047508e4a1cfd712d846/pycryptodomex-3.4.3-cp34-cp34m-win32.whl#md5=16961dca97126bacce939263492a336b (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/9e/aa/74f73c69860028e52255bdf2eb8bb77f4ba7c8c736a8f0825b88e1dfc770/pycryptodomex-3.5.1-cp27-cp27mu-manylinux1_x86_64.whl#md5=d2374e7779f9bddb39fb51f657dae25d (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/9f/35/e2eedaf7ffbe831d49102f4c6428d91f1e9b345db1a562bdac272ff25876/pycryptodomex-3.4.8-cp36-cp36m-manylinux1_x86_64.whl#md5=38fe81e8637ea1ff3eefc40ad758ad36 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/9f/b6/27039d7369830accfc79a23ddf9708b1e01407627740d835f95132587ea0/pycryptodomex-3.4.9-cp36-cp36m-manylinux1_x86_64.whl#md5=ba471d7c1b143e418a7e898d752a47ce (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/a0/d7/4e6fb6ae963f26a8baad3b10cade499000acd4afca04de58c75afbe76440/pycryptodomex-3.4.7-cp33-cp33m-win32.whl#md5=d27ad4061e6e56838e487511408ecb93 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/a1/27/f4ac48d08b4802115624a330a521b74677e94426c1b90688b9bc88780550/pycryptodomex-3.4.11-cp33-cp33m-win_amd64.whl#md5=1ad1fffd60ce10c7246a1a652a673e4b (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/a1/6f/4b08350bb62b4aed4a38cbe5b80d68b34a0ef1863daa89c2a00c2ad782e6/pycryptodomex-3.4.3-cp35-cp35m-win_amd64.whl#md5=6b0092250196ea65fa3901d063253f1a (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/a5/c2/4ca6707ba786559cd22fbe4aa873e07fdb6dac171eeafabfdadff9032df4/pycryptodomex-3.4.5-cp35-cp35m-win32.whl#md5=4985feccd848c5a0410f519747527707 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/a9/0c/5315a6a7ebc09cc204294287150d1d1e2af62381ea76e29bf6ca3ed3658a/pycryptodomex-3.5.1-cp34-cp34m-win_amd64.whl#md5=f13b4e974fbd7d65892f232d988de8af (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/ac/1c/759b9421c140d2115ac1d905de880c8298725bfdd2ce6222579f5173f4ea/pycryptodomex-3.4.1-cp33-none-win_amd64.whl#md5=0fcd013b94caf9c3c724944a3ffd849f (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/ad/22/adb3f8003a7713cb68edd0c660a1e9f469e8be5186e5e21ab11aad26c221/pycryptodomex-3.4.9-cp33-cp33m-manylinux1_i686.whl#md5=3d5498e7458fb3a2468762f143dbc4a5 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/ad/86/db41936dd4cd1db19431cd07ef125018db68bf450eb37aaa0f5a416426de/pycryptodomex-3.4.8-cp33-cp33m-manylinux1_x86_64.whl#md5=0877ab24917b5c73c578e55aff9e580a (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/ad/cc/56c307ed95a521c18083be1a313efeb0854700658f91342f3dfc7df57cb5/pycryptodomex-3.4.11-cp27-cp27mu-manylinux1_i686.whl#md5=7ce9e33b346e0c953a1c972e9a4a001e (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/ae/3e/0def5e2528c73328f0532e39bb7fec51cadc9022e9b0c5a0d5e5164530b5/pycryptodomex-3.4.11-cp35-cp35m-manylinux1_i686.whl#md5=f96e2a1cdb24024cf31e667d7aacc447 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/af/01/e50758133a04d5f21af40c6bea09399b66ce516cd05dcbcb3e0526cc56d4/pycryptodomex-3.4.8-cp27-cp27m-win32.whl#md5=a9a84ccf1e1ea248f86c4ecf9507eada (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Found link https://pypi.python.org/packages/b0/4f/b46e94697c0a83086718fd92b977824f3ae87d77e63f256bd278037bba8a/pycryptodomex-3.4.11.tar.gz#md5=7a29c89648b52dc00f41817bee688f87 (from https://pypi.python.org/simple/pycryptodomex/), version: 3.4.11
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/b0/7c/a003444cd7ed05212e44f0029166576495e8eb4dfc4e194d19ef0afbc564/pycryptodomex-3.4.6-cp36-cp36m-win_amd64.whl#md5=359f3df746c92ac0be084f9d8152ce03 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/b0/b8/4ccea8bdb13bbd42d87058f7b9211190436832e309ae8c0e44eed8a85fa9/pycryptodomex-3.4.6-cp35-cp35m-win_amd64.whl#md5=9ae1772ffd74986b6be295e34b612320 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/b1/f6/d6b4844a3d82ff61f9b992883cf2653399ca1f2f0febcca73e88f771804a/pycryptodomex-3.4.9-cp27-cp27m-win_amd64.whl#md5=91edc41488c208d739bd238b8f818cae (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/b2/fa/17dce82b01e67f0696f02edbe4d3f105a821a68fc1487390a0202d231796/pycryptodomex-3.4.2-cp33-none-win32.whl#md5=04bb4acd6fcb06fe675a1d469dad8415 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/b3/21/79f62a54ad0b320be88505ffcbb3ed991ff83889ed72f3e7744e82ed8e62/pycryptodomex-3.4.3-cp36-cp36m-win32.whl#md5=be1b49e496f418433eb1dac406e3b1db (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/b4/d2/bc756a4a9a42b204191bee84594716d220179fcec20e5060d9e188e05520/pycryptodomex-3.4.9-cp36-cp36m-manylinux1_i686.whl#md5=03f2bb3a4a7f6e405517a447f9a47b4e (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/b5/fb/df3edb035ef894dad71d68a38437e7f9e363986a0130e8c81969de9ad596/pycryptodomex-3.5.1-cp36-cp36m-win_amd64.whl#md5=b3d2c6b9ed328c52f1408f021c0b7f0c (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/b6/04/0946b463319b2ce9d943c0faf92d23f145d816710ea59690f1642ec53479/pycryptodomex-3.4.9-cp33-cp33m-win_amd64.whl#md5=0a7a91c67cd3594d45e8bd6ac667bbd2 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/b7/40/ec3baf12654a7b21d0b69ddefcc427868abbb5d9adc10110d177293fbbe6/pycryptodomex-3.4.9-cp34-cp34m-win_amd64.whl#md5=bfa0168e9b57024b2b9134bfb426b797 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/b8/9e/8764490bd67cdd6bd247fea0b0d1aafafb503dbe2c73008d2516ae9a4639/pycryptodomex-3.4.5-cp33-cp33m-win_amd64.whl#md5=f8c33b8c8919512ea722d1bac2483e3e (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/ba/8d/455549b1f6c1eb8662a1d04e8ad3f6aaf6a94191c017cd49fe31adb67b6b/pycryptodomex-3.4.11-cp34-cp34m-manylinux1_i686.whl#md5=fc0703bd9eb89f4596ba8df6836e7634 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/ba/bb/a4f6a693492488819539a540efa45834c9711d845176872f1f737f2966ff/pycryptodomex-3.4.11-cp27-cp27m-win_amd64.whl#md5=31e33d91bb2794dbb4742744b5834ced (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/ba/e0/240f699d8e658649116b1681888c75fecef7480b1738802eddee371241e4/pycryptodomex-3.4.1-cp27-cp27m-win32.whl#md5=287e43ed16572d12aff2435bcb67e967 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/bb/df/542951d30064670535eaf94deac21ffad38bfb5a1ab9d50818002f1ae5d9/pycryptodomex-3.4.11-cp35-cp35m-win32.whl#md5=0357917514155934472643d9f42b5e7e (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/be/02/50d94a005d92614fb353549d1561f82f5dc18288d5f53e556b6ec38f528f/pycryptodomex-3.4.6-cp33-cp33m-win32.whl#md5=01de9ac80778fbf7509bdd2f5c603c26 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Found link https://pypi.python.org/packages/bf/73/7c7e75e640acce1428d1cd7ce596fb855bd9ab8df9d1be587a9b4172046a/pycryptodomex-3.4.3.tar.gz#md5=5493d3b327504ee4967c756cff3744a8 (from https://pypi.python.org/simple/pycryptodomex/), version: 3.4.3
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/c0/71/3db3771ac7e4a2883cb580c06477afa810a201fbb54198324f660d0e9ae2/pycryptodomex-3.5.1-cp27-cp27m-win32.whl#md5=be7d33470a8312471f7b00db75a85d55 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/c3/ca/b01c74cdc1c791650635d840667bac5da653101091d2304e0ab0a6f6568c/pycryptodomex-3.4.12-cp27-cp27m-manylinux1_x86_64.whl#md5=7871bfa961a1c1ef8ef13fb3877040d0 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/c3/e2/b5e652a2fadbdd38984b285513b779c3432f9db9cc89f7e028aa6a2479f8/pycryptodomex-3.4.11-cp27-cp27m-win32.whl#md5=4f261c8986af2a5d6918922c63859357 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/c4/b4/87585b4f5f326123e641b179906012d65d4ba78c63295ba21d4169e88cc8/pycryptodomex-3.4.8-cp34-cp34m-win_amd64.whl#md5=3204e56d8ec017f9d533230dd0087047 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/c7/b9/5e8da8b83e8bb067de4a3e0ab556b7e7955f0df3032a805361f463cb2cfc/pycryptodomex-3.5.1-cp36-cp36m-win32.whl#md5=2534ed201ab9973bcda39e4ee30ac63b (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/c8/2d/56e9099ca5279a11fb6ca3c4b506d6a782bb243716e36e789f6b63d6ad07/pycryptodomex-3.4.11-cp36-cp36m-manylinux1_x86_64.whl#md5=5b65b9e0d3c85028272d4e29195d6068 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Found link https://pypi.python.org/packages/cb/d5/a607abf34292527c35ec21ac22b326c80b1c5cb09669be60f04a1f27f87b/pycryptodomex-3.4.1.tar.gz#md5=0a5e14a71bdd1463289e9ddda5a8dbf6 (from https://pypi.python.org/simple/pycryptodomex/), version: 3.4.1
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/cd/c1/f1dba2f276f0b744817886419791c319706164aa33ac56666b17c80379a0/pycryptodomex-3.4.9-cp35-cp35m-manylinux1_i686.whl#md5=0ea10f2878bbab91a75df1e6d1e936ad (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/ce/21/3da6cc48e7f6227fc181bf78219afcdb0031699e41d45637752368f50c3a/pycryptodomex-3.4.8-cp34-cp34m-win32.whl#md5=0c10fd63f60dbe147eb3727c05809852 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/ce/91/93c5711af9e247623bf3d0b29f194096873e6bf0bfb23bf0964e7725c1b8/pycryptodomex-3.4.11-cp35-cp35m-win_amd64.whl#md5=2fe7421d486cba9cdeb9f5c366234c42 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Found link https://pypi.python.org/packages/d6/99/56ac930e35394c93440f1a6e254cf4573098503ff4c1851e820600a46a85/pycryptodomex-3.4.7.tar.gz#md5=2fd1f31218ddd51b63c24ea515e200f0 (from https://pypi.python.org/simple/pycryptodomex/), version: 3.4.7
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/d8/a4/aa6032d39928cce7acb30990cf09171d5df09c8e5549156b41c46667d7ad/pycryptodomex-3.4.12-cp35-cp35m-win_amd64.whl#md5=8c462a2c0ddbd767e3604d101aac3439 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/d9/88/a6b95e859fff6113d4bac72cb003cf6a1538c473da84cc0ddf1acc2e783f/pycryptodomex-3.5.1-cp36-cp36m-manylinux1_x86_64.whl#md5=859b3d5b3f9a282615cff91ac531ca87 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/da/ed/5d72e447d19062b6fa0ea8ae7e512590f673e86bf61b1db8db1919fc0ddc/pycryptodomex-3.4.12-cp34-cp34m-win_amd64.whl#md5=1566b4f002ce48c58b4ddbdd11e82de2 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/db/df/531dc1f08fce39f8fac1d628e0538e0a1ce7b5ac42249e51fec215416e69/pycryptodomex-3.4.8-cp27-cp27m-manylinux1_x86_64.whl#md5=e7ade6b7a4043a5398e1ff850b8a82c9 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/dd/e4/59cbe357947c127622d4cd3741d3b2c31f2bb181e7909efd7687b59dd36e/pycryptodomex-3.4.12-cp35-cp35m-manylinux1_x86_64.whl#md5=1c985b35e27eba0c2cc4b592ae3cd44a (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/de/c4/1250f3aa96adfc2331a31948cd9aba6b7f294c8ca1750d5e638b83f2b868/pycryptodomex-3.5.1-cp34-cp34m-win32.whl#md5=9fec9f4899bfa6ed08f25bc4fd941680 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/e2/2f/cba044f7558649da3525eb66104e25e038f6e2f2b88c3037e561e93c7a33/pycryptodomex-3.4.2-cp35-cp35m-win_amd64.whl#md5=c90bcbd62c2a1e31346cd2adcdd3af65 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/e7/e4/15037dada9cb61b63182df9806ec2793dbba7b8dcf9dc025defd482fa452/pycryptodomex-3.4.12-cp36-cp36m-manylinux1_x86_64.whl#md5=7c2d0c6de8d09a6dd582cb26760ad74f (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/e8/9f/9d5c7a3d52d4a0336b1410a1f2d94e8b920aa66ab7aece7b003051a7231e/pycryptodomex-3.4.8-cp34-cp34m-manylinux1_x86_64.whl#md5=37a339010fc8829ae329a4433095c0a6 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/e9/45/8ae4732b9050160b301b7665bac3b65d1672e44437c6af7df164ef431f5e/pycryptodomex-3.4.11-cp36-cp36m-win_amd64.whl#md5=3284f9376b651498437cbd510ec6b1ae (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/ed/b2/3a04329a3609d10d6a5824932737689ab4b2a02b627e866b0b1bca875698/pycryptodomex-3.4.8-cp35-cp35m-win32.whl#md5=38ad2ef98b24c0b87cebc93f455af7a8 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/ee/80/f5562134766c174e2a7552d6feea6a4af478eaaf44dedbf1c85776744ca9/pycryptodomex-3.4.11-cp36-cp36m-win32.whl#md5=312b2ceb5c9d11d5a588e6221a02a97d (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/f0/94/1ae0172fe9a47d43070e7b46644f24fdf71c92f858e47dbd7f404738d905/pycryptodomex-3.4.5-cp27-cp27m-win32.whl#md5=26c355ef2038e7d1fbf72cffc7436be6 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/f2/45/5a2e867ac95213c71631e54697b868ac8bd097ad20e44b78bf2bdca4fd46/pycryptodomex-3.4.9-cp35-cp35m-win32.whl#md5=73cfcf51da393793380244f283d58314 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/f4/30/16a57e903f8b8f6a6b17e3dcc817e22993954c1aad9a04d5c89aaea9a53b/pycryptodomex-3.5.1-cp35-cp35m-manylinux1_i686.whl#md5=55bea7c9cc24bb51062e59fa451d5742 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/f4/f5/33b038981874ce29e412420b4c606ae3b64001099e2c30a49a35db265f15/pycryptodomex-3.4.12-cp33-cp33m-win_amd64.whl#md5=10a94a30baa159852288438494421b03 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/f6/22/9210406de12f075dfc0da0325fc72a073bb6dddfc3e652003300fa1225d2/pycryptodomex-3.4.11-cp33-cp33m-win32.whl#md5=74722dde662cae3c503cb96e269c7f8a (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/f9/86/877796a6dfeb56c682f24bc1b109e51496a51a0af46862118a79715df0e2/pycryptodomex-3.4.2-cp34-cp34m-win32.whl#md5=06ff99b7b4c8e9f90fa6b5834c6449c5 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/fe/ab/0609ae6c95fd023d2cf644b71cb965bb88ff146e2f041294603c0924bf07/pycryptodomex-3.4.7-cp36-cp36m-win_amd64.whl#md5=1169c8c7144e16fa86a1afb4dd325c62 (from https://pypi.python.org/simple/pycryptodomex/); it is not compatible with this Python
DEBUG:pip.index:1 location(s) to search for versions of requests:
DEBUG:pip.index:* https://pypi.python.org/simple/requests/
DEBUG:pip.index:Getting page https://pypi.python.org/simple/requests/
DEBUG:pip._vendor.cachecontrol.controller:Looking up "https://pypi.python.org/simple/requests/" in the cache
DEBUG:pip._vendor.cachecontrol.controller:Current age based on date: 180
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 > 180
DEBUG:pip.index:Analyzing links from page https://pypi.python.org/simple/requests/
DEBUG:pip.index:Found link https://pypi.python.org/packages/00/93/9c5c04821578c2ee11af83189c5cbd8338724b5e04e1de5dc3643bbc5bbf/requests-2.12.0-py2.py3-none-any.whl#md5=018b0e512fc0c0c3f30c7fa3c376bb7a (from https://pypi.python.org/simple/requests/), version: 2.12.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/00/c8/8cf0f078100ce5fe7ff35927d8861e2e36daed9be2db56690f3ad80ccec4/requests-0.7.1.tar.gz#md5=4821c6902d8e83c910c69c6492388e5f (from https://pypi.python.org/simple/requests/), version: 0.7.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/01/44/39988315e036b79fe70428273053617266bf20d1363e91082346fae8450d/requests-0.10.3.tar.gz#md5=a055af00593f4828c3becd0ccfab503f (from https://pypi.python.org/simple/requests/), version: 0.10.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/01/da/da83c242c5a77c58aa86072d68fd2855aa9b4d3b1a8bac4b402531b25ff1/requests-0.13.9.tar.gz#md5=66d52b8f47be517fc91a6e18d6b9ce82 (from https://pypi.python.org/simple/requests/), version: 0.13.9
DEBUG:pip.index:Found link https://pypi.python.org/packages/02/56/a6203485b552f9e8e8f16bd4e576446f94737ccbc563957e7510c8e401e4/requests-0.13.6.tar.gz#md5=9ea0f38cc4bf444be5a4c90f127211f2 (from https://pypi.python.org/simple/requests/), version: 0.13.6
DEBUG:pip.index:Found link https://pypi.python.org/packages/04/75/52e169351e24a9faa8bfac69a07ea3551b845ca6354f22da15c5da3d5100/requests-0.13.4.tar.gz#md5=286cd3352509691e81c520accc5b9e48 (from https://pypi.python.org/simple/requests/), version: 0.13.4
DEBUG:pip.index:Found link https://pypi.python.org/packages/07/2e/81fdfdfac91cf3cb2518fb149ac67caf0e081b485eab68e9aee63396f7e8/requests-2.18.2.tar.gz#md5=49bd9924d3be341871bc922cde6f372e (from https://pypi.python.org/simple/requests/), version: 2.18.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/07/db/3ed266e9cd3e3f69af3af38f56a0b4e21dadf3065521b2860030889284d7/requests-2.16.3.tar.gz#md5=c9816b77406fd9f8e9b80ec8a560d4d8 (from https://pypi.python.org/simple/requests/), version: 2.16.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/08/d5/3dfb95813d697d1e5a3eccb9b88f9d91a233fc35b0ddbb5bc238142f9de0/requests-2.6.1.tar.gz#md5=da6e487f89e6a531699b7fd97ff182af (from https://pypi.python.org/simple/requests/), version: 2.6.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/0a/00/8cc925deac3a87046a4148d7846b571cf433515872b5430de4cd9dea83cb/requests-2.7.0.tar.gz#md5=29b173fd5fa572ec0764d1fd7b527260 (from https://pypi.python.org/simple/requests/), version: 2.7.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/0b/ac/ffd3674211bc47ae3bf55c7cd4a8fe484b7289af2ffd9cfed5683708690a/requests-2.14.0.tar.gz#md5=09c5b60caced97cbe69064d486d6db53 (from https://pypi.python.org/simple/requests/), version: 2.14.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/0b/b8/932de3bc1b8630357de85bc0c794ee1a7d343cb8008b470a0c9d15e84341/requests-0.6.0.tar.gz#md5=235e9fb6bfd71a48c0f00c0d5aef8896 (from https://pypi.python.org/simple/requests/), version: 0.6.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/0c/4d/d67bd4e4b17148aad88e6d75c62763ec27363d18038ed75019239e1516d0/requests-0.5.0.tar.gz#md5=6dfdc1688217d774d524e056ec6605a6 (from https://pypi.python.org/simple/requests/), version: 0.5.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/0d/63/0e6c6b817ab38fb3e38a192d6631d698fe78308a68659af3aa523cd736d4/requests-0.13.1.tar.gz#md5=31a08091feeefe60817e45122d933219 (from https://pypi.python.org/simple/requests/), version: 0.13.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/0f/d0/e80371e64a7a7bafa303ea50465456e5292d9436504ce39b9619b6ba24be/requests-2.4.1.tar.gz#md5=931461f761c70708c46ea65b7889da58 (from https://pypi.python.org/simple/requests/), version: 2.4.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/13/52/41fb28aa332ed68cd616cd1fc44d9e9c4bb85aa60c28d275f8857da561e5/requests-2.16.4-py2.py3-none-any.whl#md5=d1a5f370e6c5236f898f27aa40a84358 (from https://pypi.python.org/simple/requests/), version: 2.16.4
DEBUG:pip.index:Found link https://pypi.python.org/packages/16/09/37b69de7c924d318e51ece1c4ceb679bf93be9d05973bb30c35babd596e2/requests-2.13.0.tar.gz#md5=921ec6b48f2ddafc8bb6160957baf444 (from https://pypi.python.org/simple/requests/), version: 2.13.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/18/87/3c46a06df7b29cd3ab51f055cae2a954758ee3dcbd075d7f4c9a4e8aafbc/requests-2.12.2.tar.gz#md5=1ec26adca0265ead9afd42919867c370 (from https://pypi.python.org/simple/requests/), version: 2.12.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/1b/92/0632a7eb5e94bfedd300a3a5f4ebbf8505fd9768ba00ab259b5bf786de5f/requests-2.8.0.tar.gz#md5=3ec7198fc935d83c3eacff1ed4095ce4 (from https://pypi.python.org/simple/requests/), version: 2.8.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/1b/d3/f2541f2965e78f139bff9f001594d41ed90f4b2ce4b61bca387e60c1d3b4/requests-2.14.0-py2.py3-none-any.whl#md5=09e9f0852d50bee105ca859095298923 (from https://pypi.python.org/simple/requests/), version: 2.14.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/1c/8e/376c93bb72bdae6a754797b8e31370df1e996e8b7dcc928e66691dbf611a/requests-2.0.1.tar.gz#md5=38e61c2856d2ba2782286730241975e6 (from https://pypi.python.org/simple/requests/), version: 2.0.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/1e/97/f0a8e5e71c75a2abf5ec91438b84ec1a40a5e1b5f985c06721a3ebe57c0a/requests-2.1.0-py2.py3-none-any.whl#md5=0848cbc0cc7edd150cb8d6ddc25ca906 (from https://pypi.python.org/simple/requests/), version: 2.1.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/20/fc/53f45b9bdfa8bd5f11b7d60b50052a8e4729346fcc8d5854e0e1449d92b5/requests-2.5.2-py2.py3-none-any.whl#md5=7e72dfe8ed9d4ce5fd9dd9d799b3add1 (from https://pypi.python.org/simple/requests/), version: 2.5.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/23/c2/99fe3c5c15f3d06f0620bc0867bee95ec64074cbd7c9805bb5ad3010411e/requests-2.17.2.tar.gz#md5=f28069fe8ef82543387f3dbe152cffa3 (from https://pypi.python.org/simple/requests/), version: 2.17.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/26/e7/4f1ec439ecbcfe3989bb79a9c323d2482e7beea3d8d453e07443302648ec/requests-2.16.0.tar.gz#md5=5ca9eafc020445c86efc0be1f28f602e (from https://pypi.python.org/simple/requests/), version: 2.16.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/26/ff/c71b3943bebdd9f7ceb9e137296370587eb0b33fe2eb3732ae168bc45204/requests-2.7.0-py2.py3-none-any.whl#md5=564fb256f865a79f977e57b79d31659a (from https://pypi.python.org/simple/requests/), version: 2.7.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/27/c7/a45641c83c6e28f4922ba6af3d4ae4d79b41932c2f3d77fed9e0bf878149/requests-2.17.3.tar.gz#md5=b1b8e6412e11e00e12adbb7786c3f2a3 (from https://pypi.python.org/simple/requests/), version: 2.17.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/29/b9/d26a6ab2ee178415ab8c0c591d2a1eb782a50c42a417ae390055f86a63c1/requests-2.17.3-py2.py3-none-any.whl#md5=66a7f010b985631e768485af6f3c61df (from https://pypi.python.org/simple/requests/), version: 2.17.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/2b/9e/1be659005a6bb394b02e12804fcaf8cd85050958a459945708b21e362b32/requests-0.7.5.tar.gz#md5=9a12281a811ca25d347d806c456d96f1 (from https://pypi.python.org/simple/requests/), version: 0.7.5
DEBUG:pip.index:Found link https://pypi.python.org/packages/2c/b5/2b6e8ef8dd18203b6399e9f28c7d54f6de7b7549853fe36d575bd31e29a7/requests-2.18.1.tar.gz#md5=40f723ed01dddeaf990d0609d073f021 (from https://pypi.python.org/simple/requests/), version: 2.18.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/2e/ad/e627446492cc374c284e82381215dcd9a0a87c4f6e90e9789afefe6da0ad/requests-2.11.1.tar.gz#md5=ad5f9c47b5c5dfdb28363ad7546b0763 (from https://pypi.python.org/simple/requests/), version: 2.11.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/32/0e/11cfb3a5e269605d0bbe3bbca9845da9b57aed90e75bd489e5e7e3509c13/requests-2.5.0-py2.py3-none-any.whl#md5=9d29a8a0210c236d9329bed49277b3fa (from https://pypi.python.org/simple/requests/), version: 2.5.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/32/35/f2908b62b155b1737ab80b1a69142d007522bb0d1b3a0d3f8909595762f5/requests-1.0.2.tar.gz#md5=e5c1a5a5472cd61f144743dd25a2a29f (from https://pypi.python.org/simple/requests/), version: 1.0.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/35/b8/8ff3310309beb5fbca033b56504f869b0c65c1f284ae2a7900593b5acd3c/requests-2.16.0-py2.py3-none-any.whl#md5=f219013c8cacaaae7534ce2373cbeadc (from https://pypi.python.org/simple/requests/), version: 2.16.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/37/b3/d1a5d9768240a1104a620730a1226975ceb9dd3882a8cfd8935b314ee0ca/requests-2.6.2.tar.gz#md5=0d703e5be558566e0f8c37f960d95372 (from https://pypi.python.org/simple/requests/), version: 2.6.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/37/e4/74cb55b3da7777a1dc7cd7985c3cb12e83e213c03b0f9ca20d2c0e92b3c3/requests-1.2.0.tar.gz#md5=22af2682233770e5468a986f451c51c0 (from https://pypi.python.org/simple/requests/), version: 1.2.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/38/2d/290d33417c079a5248fcd06b0b8492acdd1851e54e4bdad54c3859dab600/requests-2.8.1.tar.gz#md5=a27ea3d72d7822906ddce5e252d6add9 (from https://pypi.python.org/simple/requests/), version: 2.8.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/3a/0a/7c62c06702ddb4d3bc50d27f5b8e094d6e66a3374fc2eedf264742f84805/requests-0.12.1.tar.gz#md5=fe9e0515d09733d0eb9e2031c03401b2 (from https://pypi.python.org/simple/requests/), version: 0.12.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/3a/72/9f39b173ee93645013563df119d28841f47b0ca2ebe04afcefd438e42f30/requests-0.8.9.tar.gz#md5=ff5b3bf5bc3ad19930d3f3afe51f182b (from https://pypi.python.org/simple/requests/), version: 0.8.9
DEBUG:pip.index:Found link https://pypi.python.org/packages/3a/ac/0372d6b7fbde19444d5cc560f296e70b26283d2bac0665b576dd3f5e6b60/requests-0.12.0.tar.gz#md5=c38bacf4d6a065f3c47463e63efdfb5a (from https://pypi.python.org/simple/requests/), version: 0.12.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/3b/99/a8acc0c986281232f9476575c27a81ab697afbf089f42f05c196f51892c0/requests-2.2.0-py2.py3-none-any.whl#md5=8f989615bb0d276d5f3158e7efab494c (from https://pypi.python.org/simple/requests/), version: 2.2.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/3b/9e/bfa03431335e778854da3d562697e067df40870a78ca81b35089822c6583/requests-1.2.1.tar.gz#md5=4d019670b94b17e329007d64e67e045e (from https://pypi.python.org/simple/requests/), version: 1.2.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/3c/69/d49fd9a7be23c55278c92e60af6d57336c463d8593afe7260a1665346965/requests-2.16.2.tar.gz#md5=e5425e53aa95e27a9a8267a097feafdc (from https://pypi.python.org/simple/requests/), version: 2.16.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/3d/54/c4a7dcfccac9e6dd738e9ed86848a9a5b07a4345e5949f8795cfdc0ea95f/requests-0.7.3.tar.gz#md5=267f6f7d1109775d24a288f798e3ab4a (from https://pypi.python.org/simple/requests/), version: 0.7.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/40/1d/63a729208e1e93cf2cbda953b9f20ec9b101eb964e3f6205d1c2e294f294/requests-0.14.1.tar.gz#md5=3de30600072cbc7214ae342d1d08aa46 (from https://pypi.python.org/simple/requests/), version: 0.14.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/46/da/94c0fd6ff79b85befc3b528cf3771700def274c52b347bf12eeaa466f34c/requests-1.0.0.tar.gz#md5=099c9035c4b30a7ae5484b1beabc7407 (from https://pypi.python.org/simple/requests/), version: 1.0.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/47/68/4fe8c7e9e95133d15e342b1403a1751909cddb814a5a9cced2ba4c63487d/requests-2.16.4.tar.gz#md5=badefd50cfc5bc36926a2693e792d277 (from https://pypi.python.org/simple/requests/), version: 2.16.4
DEBUG:pip.index:Found link https://pypi.python.org/packages/48/aa/1077a5fef0c4fbdad8ce127166ca474c67788b7609137d26e17ab46ee16d/requests-0.9.1.tar.gz#md5=8ed4667edb5d57945b74a9137adbb8bd (from https://pypi.python.org/simple/requests/), version: 0.9.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/49/6f/183063f01aae1e025cf0130772b55848750a2f3a89bfa11b385b35d7329d/requests-2.10.0.tar.gz#md5=a36f7a64600f1bfec4d55ae021d232ae (from https://pypi.python.org/simple/requests/), version: 2.10.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/49/df/50aa1999ab9bde74656c2919d9c0c085fd2b3775fd3eca826012bef76d8c/requests-2.18.4-py2.py3-none-any.whl#md5=eb9be71cc41fd73a51a7c9cd1adde5de (from https://pypi.python.org/simple/requests/), version: 2.18.4
DEBUG:pip.index:Found link https://pypi.python.org/packages/4b/ad/d536b2e572e843fda13e4458c67f937b05ce359722c1e4cdad35ba05b6e3/requests-0.2.1.tar.gz#md5=7e9590f3985ece46fc8306e906b458c7 (from https://pypi.python.org/simple/requests/), version: 0.2.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/4c/54/1d3abddbd4c7544138b88e8329ef5294ffdc6c5d7ea965bf42e3cc4c9c39/requests-2.16.1.tar.gz#md5=4acb351824461eb3ae1f74ec3a65ff28 (from https://pypi.python.org/simple/requests/), version: 2.16.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/4e/31/50a12e5b5e585e0b00ce2592c9b45f2ae109575e3707a341afd7550a8d1a/requests-0.14.0.tar.gz#md5=a809c747e4f09b92147721ebc3e23dd6 (from https://pypi.python.org/simple/requests/), version: 0.14.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/4e/9b/a78a3bb2913576fad3ec6f18b8d26dd9579268f6b2191d73f4ec40e09490/requests-0.8.6.tar.gz#md5=21b03926ab38417a704ebce57972571a (from https://pypi.python.org/simple/requests/), version: 0.8.6
DEBUG:pip.index:Found link https://pypi.python.org/packages/50/41/f6fdaf24a80c726a72f76b15869a20734b7a527081129a380ddce99ffae0/requests-2.17.1-py2.py3-none-any.whl#md5=6ef65029dde7091e65fae2561f36305a (from https://pypi.python.org/simple/requests/), version: 2.17.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/51/5d/3729c242ed7693f29941fd9d40e936d4994b0aa704dfd0c023312fcce8a3/requests-2.1.0.tar.gz#md5=28543001831f46b1ff40686ebc027deb (from https://pypi.python.org/simple/requests/), version: 2.1.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/54/9a/ee6051b19c62728d5467dead279c532798c287e39c3bc8becb1cfa9f525a/requests-2.5.1-py2.py3-none-any.whl#md5=11dc91bc96c5c5e0b566ce8f9c9644ab (from https://pypi.python.org/simple/requests/), version: 2.5.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/54/9d/1ee0bd44e9334b6382ed5226d4bc33518d0d0b03ed806af6444d1c80ed83/requests-0.13.3.tar.gz#md5=54387d7df6c69580b906dcb5a2bd0724 (from https://pypi.python.org/simple/requests/), version: 0.13.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/55/19/986305b95fae17c58c95e191943a282bce19f82535af4530890c483937ad/requests-0.6.2.tar.gz#md5=0583bb5393b9cfcb022dc2aef7d6ffc8 (from https://pypi.python.org/simple/requests/), version: 0.6.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/56/c3/0887d5d6c18a366308b3dc7024210b4c89ff9ae92ae5fb87cf8fe58bcae2/requests-0.4.0.tar.gz#md5=77a7a7edd54169c6fa7ace49dcb0b20c (from https://pypi.python.org/simple/requests/), version: 0.4.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/58/1e/6b84552b6553f5beaf7cb0fe15115e7e4673326ed9188ad5338559ee8285/requests-0.10.2.tar.gz#md5=47c3cf85a0112d423137b43989663bef (from https://pypi.python.org/simple/requests/), version: 0.10.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/59/dc/54d39bef11678853ca78fc6167cc1b57becf491548942246dd2226bf2bd2/requests-2.12.2-py2.py3-none-any.whl#md5=8c58fa0a054badea1cfbfa54a23299d2 (from https://pypi.python.org/simple/requests/), version: 2.12.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/5a/58/671011e3ff4a06e2969322267d78dcfda1bf4d1576551df1cce93cd7239d/requests-2.18.1-py2.py3-none-any.whl#md5=a7fbdc82134a2610b3d0cdc7e59f0bde (from https://pypi.python.org/simple/requests/), version: 2.18.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/5b/0b/34be574b1ec997247796e5d516f3a6b6509c4e064f2885a96ed885ce7579/requests-2.12.4.tar.gz#md5=acdb48888a9d3c7309da12fc7f83fedb (from https://pypi.python.org/simple/requests/), version: 2.12.4
DEBUG:pip.index:Found link https://pypi.python.org/packages/5b/b6/9a18db79553524246aa1b081829e6f977667ec558cef684988895c1092d9/requests-2.17.0-py2.py3-none-any.whl#md5=6856177470710847da6eb8c5ffb94ed6 (from https://pypi.python.org/simple/requests/), version: 2.17.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/5c/8c/0399c9554b04b2b267d81239773657ddc720799a08565b6c21f7aed652df/requests-0.7.0.tar.gz#md5=83a1a7d79218756efd19b254eeb6b1f0 (from https://pypi.python.org/simple/requests/), version: 0.7.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/5d/a6/90f822c17b4fc905da67aed49b511f110207242ff164aeda926461101dc6/requests-2.8.0-py2.py3-none-any.whl#md5=52236eb6f886db4d2afba43775c97050 (from https://pypi.python.org/simple/requests/), version: 2.8.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/5d/e8/f27e0868b9a49946b3f800722e02b19efebde22ae534276df3e5f6cca41d/requests-1.0.4.tar.gz#md5=0b7448f9e1a077a7218720575003a1b6 (from https://pypi.python.org/simple/requests/), version: 1.0.4
DEBUG:pip.index:Found link https://pypi.python.org/packages/5e/c0/76fac9445cd8b6394eacae1e098ca0c97767cc0112e45e68521f553df003/requests-0.3.1.tar.gz#md5=3f4701e2ab414cd7018804a70328c527 (from https://pypi.python.org/simple/requests/), version: 0.3.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/5f/1c/8d145fbdb23986063a8a0c954d484a793024137a99ac7f3da603717fe64a/requests-0.5.1.tar.gz#md5=33a6e65d6a4e5b2d91df76256f607b81 (from https://pypi.python.org/simple/requests/), version: 0.5.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/61/79/efc316760a906763de872d7328c9bf8c5af28708a35fdae57fbb4ee005f7/requests-1.2.3.tar.gz#md5=adbd3f18445f7fe5e77f65c502e264fb (from https://pypi.python.org/simple/requests/), version: 1.2.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/61/fe/2c0a4ca99c68ea24eec65d3094d6539d54635562678ee7a58420005c12b6/requests-2.5.1.tar.gz#md5=c270eb5551a02e8ab7a4cbb83e22af2e (from https://pypi.python.org/simple/requests/), version: 2.5.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/62/12/0840d1bba04e5d60e469610ad78e02e89e6828e776adaef4116413cf5fd0/requests-0.9.3.tar.gz#md5=b13b6fbfa8fc3fc3c25bae300748053f (from https://pypi.python.org/simple/requests/), version: 0.9.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/62/35/0230421b8c4efad6624518028163329ad0c2df9e58e6b3bee013427bf8f6/requests-0.10.0.tar.gz#md5=c90a48af18eb4170dbe4832c1104440c (from https://pypi.python.org/simple/requests/), version: 0.10.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/62/ca/338cf287e172099e4500cfa2cb580d2c9a1874427a8a14324d7a4c9d01b1/requests-0.13.2.tar.gz#md5=fac5635391778e2394a411d37e69ae5e (from https://pypi.python.org/simple/requests/), version: 0.13.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/64/20/2133a092a0e87d1c250fe48704974b73a1341b7e4f800edecf40462a825d/requests-2.9.2.tar.gz#md5=18d0e51cd5e84c7d8b6dcbdd51551984 (from https://pypi.python.org/simple/requests/), version: 2.9.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/64/50/219c9ff86e6fecfb89bdfe1093aea523f14882657186f806462887220267/requests-0.7.4.tar.gz#md5=c015765399b8c1e309c84ade0d38f07b (from https://pypi.python.org/simple/requests/), version: 0.7.4
DEBUG:pip.index:Found link https://pypi.python.org/packages/64/74/5bedd762987b5cb4ad5de4901d12942ad7635bffa5ae4f6b5e725d1b2068/requests-2.6.1-py2.py3-none-any.whl#md5=adb8e91b3367bc0417ef1e4a6dced9b1 (from https://pypi.python.org/simple/requests/), version: 2.6.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/65/5d/e69bad1f71d5284113165738d563a997d0d1ac968f939d1375f3df7c59fc/requests-0.8.2.tar.gz#md5=bdbbd7f45688e23e87eec52835959943 (from https://pypi.python.org/simple/requests/), version: 0.8.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/65/9c/57484d6ac262af20a10b52cd95ebc99843f282342ef008997ef60f9eeb9c/requests-2.16.5-py2.py3-none-any.whl#md5=d10cd92d383805c5cc5a0683cf231e55 (from https://pypi.python.org/simple/requests/), version: 2.16.5
DEBUG:pip.index:Found link https://pypi.python.org/packages/67/91/b3893b0db7c645b9f92aa827ce3db630eef2dd3a2ad3109c2a28cdc9e6b7/requests-2.16.2-py2.py3-none-any.whl#md5=cc40805ee6f06d148aaa5e76d3e24a07 (from https://pypi.python.org/simple/requests/), version: 2.16.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/68/a1/fac8e1fa783d167cc49debc5b5328ca57eac9d53b58c34d17ce7592cdc6d/requests-0.9.2.tar.gz#md5=65b36d99a4d2f78a22f08c95d2475e33 (from https://pypi.python.org/simple/requests/), version: 0.9.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/6a/85/32d23f3dbc43e54631bb9bd76d34c2448cc2f2f0de29babfb1a6a79b4d60/requests-0.8.0.tar.gz#md5=64dc0095cb645aa7f0083957950d524d (from https://pypi.python.org/simple/requests/), version: 0.8.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/6a/97/7b856a8c8a0efebebb0bbba70c7ee879ee3f9654f28928665b64026ef09a/requests-2.12.0.tar.gz#md5=d0d3e5fb81c6b4d87c08ed5cad677337 (from https://pypi.python.org/simple/requests/), version: 2.12.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/6d/ed/3adebdc29ca33f11bca00c38c72125cd4a51091e13685375ba4426fb59dc/requests-2.15.1.tar.gz#md5=1bcf7a286fa26e40a5a397f06ece00e4 (from https://pypi.python.org/simple/requests/), version: 2.15.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/6e/40/7434b2d9fe24107ada25ec90a1fc646e97f346130a2c51aa6a2b1aba28de/requests-2.12.1.tar.gz#md5=8c8ff05ea401ea22718038c3a416ea50 (from https://pypi.python.org/simple/requests/), version: 2.12.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/6f/7e/5c2d7d9102c6ab847bd1215f96255e894fbfc81c8abf2c1714ae2a504913/requests-0.2.3.tar.gz#md5=102243646fc0cffdc82269f4bb5c6d5d (from https://pypi.python.org/simple/requests/), version: 0.2.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/72/46/4abc3f5aaf7bf16a52206bb0c68677a26c216c1e6625c78c5aef695b5359/requests-2.14.2.tar.gz#md5=4c3c169ed67466088a2a6947784fe444 (from https://pypi.python.org/simple/requests/), version: 2.14.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/73/63/b0729be549494a3e31316437053bc4e0a8bb71a07a6ee6059434b8f1cd5f/requests-2.6.0-py2.py3-none-any.whl#md5=3ab1972bbaf2802d94516fb86b9b0d0b (from https://pypi.python.org/simple/requests/), version: 2.6.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/74/ac/789eb98e0f5431d6d1ce36549ead88b2ab3154260f37c7dac9a34fd170b1/requests-2.14.1-py2.py3-none-any.whl#md5=81754d76f9a71a2d25f8c413fcf86e2c (from https://pypi.python.org/simple/requests/), version: 2.14.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/76/b6/e3035b7baa98e20d248fe17af2097b882ec7724d9a8ee7ae195ad7110f82/requests-2.16.3-py2.py3-none-any.whl#md5=0db7fa396a581c66ca4c1b8d02ce1bd4 (from https://pypi.python.org/simple/requests/), version: 2.16.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/78/14/23cf8ede304c7c8b69b929b17074292073827239c31659ab8c7beb22a059/requests-2.4.0-py2.py3-none-any.whl#md5=47948d2fb3f2aa04235e6f637814b226 (from https://pypi.python.org/simple/requests/), version: 2.4.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/7c/84/617aaa311f6504489459c016daff4c66df6bbd54ee35b4cbed3e994f322d/requests-2.17.0.tar.gz#md5=60e16f82a83d02ba30f9139310bf5301 (from https://pypi.python.org/simple/requests/), version: 2.17.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/7c/af/b46199ae37c032801bcdc5dbb1c82a59613883ee690ff4fd2b5dc3140130/requests-0.7.2.tar.gz#md5=03eb97ed6aacb4102fd434bbfc13ce17 (from https://pypi.python.org/simple/requests/), version: 0.7.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/7d/15/6efffc6aee666e1456852c2bf1d483b46bf971a2d509b35a98fc3eae1c60/requests-2.2.1-py2.py3-none-any.whl#md5=1e38addb978e50bd86f62bda53956b03 (from https://pypi.python.org/simple/requests/), version: 2.2.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/7e/ac/a80ed043485a3764053f59ca92f809cc8a18344692817152b0e8bd3ca891/requests-2.13.0-py2.py3-none-any.whl#md5=5e432dcf5bd1e3402ea1656700d99365 (from https://pypi.python.org/simple/requests/), version: 2.13.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/7f/76/66c01dd9afe4c5062e0c838bbd98ead7fa6b52984c7e26100a42c3eb965a/requests-1.0.3.tar.gz#md5=a3169a33973d4b5b51843ead01c5e999 (from https://pypi.python.org/simple/requests/), version: 1.0.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/82/3c/3b5beca192da920c0c2ba67119d66ba1e4b1e766f40898e5e684d697ca1c/requests-0.2.2.tar.gz#md5=a703489b1a4a650698ddcf84857360c6 (from https://pypi.python.org/simple/requests/), version: 0.2.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/84/68/f0acceafe80354aa9ff4ae49de0572d27929b6d262f0c55196424eb86b2f/requests-2.12.3-py2.py3-none-any.whl#md5=9b4e857c4a27a9c282cb1abb53ebaba2 (from https://pypi.python.org/simple/requests/), version: 2.12.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/86/1b/88d3753931419a226bb4e4c1d354cd2d40acff3482b37e30dd84ba8a243b/requests-0.13.0.tar.gz#md5=7d41e51c273806456faab61370d5147e (from https://pypi.python.org/simple/requests/), version: 0.13.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/89/ce/0115444a1f9d833768160e678c21483e271466918966c11212f040b5f2af/requests-0.9.0.tar.gz#md5=5f6f03ec76f68a7a3f35120ab5a6c589 (from https://pypi.python.org/simple/requests/), version: 0.9.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/8a/98/bf72c7bd3ecfaf46dc2de3e59dcda6e61766526d3cf5897e9edd599795fc/requests-2.4.3-py2.py3-none-any.whl#md5=0a66a9c4c22272680430fbb9fb4ca34f (from https://pypi.python.org/simple/requests/), version: 2.4.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/8b/e7/229a428b8eb9a7f925ef16ff09ab25856efe789410d661f10157919f2ae2/requests-2.9.2-py2.py3-none-any.whl#md5=afecc76f13f3ae5e5dab18ae64c73c84 (from https://pypi.python.org/simple/requests/), version: 2.9.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/8c/ff/78297074b9b4cf102f9bbd71b62508965dd5c1876e016ef131e5b15c16a4/requests-2.14.1.tar.gz#md5=e985e49070df0024777a55fd59ceef46 (from https://pypi.python.org/simple/requests/), version: 2.14.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/8d/66/649f861f980c0a168dd4cccc4dd0ed8fa5bd6c1bed3bea9a286434632771/requests-2.11.0.tar.gz#md5=147afc07d8967cf46359701551a6cb69 (from https://pypi.python.org/simple/requests/), version: 2.11.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/8e/88/102742c48605aef8d39fa719d932c67783d789679628fa1433cb4b2c7a2a/requests-2.0.0.tar.gz#md5=856fc825c17483e25fd55db115028e3f (from https://pypi.python.org/simple/requests/), version: 2.0.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/8f/ea/140f18072bbcd81885a9490abb171792fd2961fd7f366be58396f4c6d634/requests-2.0.1-py2.py3-none-any.whl#md5=d524f9a38a29efe1732fd130e5ebe433 (from https://pypi.python.org/simple/requests/), version: 2.0.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/94/ac/5fa21e435ba8050d14db92ce29763c28196b727d4079dc608d39177fbf9b/requests-0.10.4.tar.gz#md5=5e465e9e739bcc9f71935ca4e9706168 (from https://pypi.python.org/simple/requests/), version: 0.10.4
DEBUG:pip.index:Found link https://pypi.python.org/packages/95/54/44dc83b5f11c6da06bf9abd18c8a0905e0e297e0a9c3bfbc0c6ee4bdd33d/requests-2.5.3-py2.py3-none-any.whl#md5=233249f4627ac5481c948e494d2a090e (from https://pypi.python.org/simple/requests/), version: 2.5.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/96/2b/88e9d6bf2e9d75cda77bf4fdc03720f4ba262beb532f9510a4a7f3e45660/requests-0.3.0.tar.gz#md5=aa1306575a78ba8b5e625dd2645d2ef0 (from https://pypi.python.org/simple/requests/), version: 0.3.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/97/e0/a2bc7317b13caf227a75c8151b562b62a2e9f5d4ab4ad59694bfdbf5c35c/requests-0.6.4.tar.gz#md5=e0eec314178ad9a7bb14f2ec32f35ba3 (from https://pypi.python.org/simple/requests/), version: 0.6.4
DEBUG:pip.index:Found link https://pypi.python.org/packages/99/b4/63d99ba8e189c47d906b43bae18af4396e336f2b1bfec86af31efe2d2cb8/requests-2.10.0-py2.py3-none-any.whl#md5=abf5a77de3e8a5973c738cca884502a0 (from https://pypi.python.org/simple/requests/), version: 2.10.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/9a/05/4ab34c6aae63a01aef2fd8be3573a99c197cc76a67f8cee751cb3a7784fb/requests-0.10.8.tar.gz#md5=0fc89a30eef76b2393cbc7ebace91750 (from https://pypi.python.org/simple/requests/), version: 0.10.8
DEBUG:pip.index:Found link https://pypi.python.org/packages/9a/0b/7a65b391bde96d7b1749dc3562ce22f9cc86f37bd37122f71162304e3164/requests-2.17.2-py2.py3-none-any.whl#md5=30bd4d2841ae4c86ffd89db2a2703c75 (from https://pypi.python.org/simple/requests/), version: 2.17.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/9b/31/e9925a2b9a06f97c3450bac6107928d3533bfe64ca5615442504104321e8/requests-2.12.1-py2.py3-none-any.whl#md5=384ec19e410ffeb43951782c11d3223b (from https://pypi.python.org/simple/requests/), version: 2.12.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/9f/3e/c09023432b822a09d965878640de63f8126d77c948f45c24dcad13d42721/requests-2.6.2-py2.py3-none-any.whl#md5=36746c275589b2154307bbcc6d28320a (from https://pypi.python.org/simple/requests/), version: 2.6.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/a2/87/afb7990b87f76ec9d11fd15668c2362a8fbe8436e0a780c7fe5aedf1a299/requests-2.4.2-py2.py3-none-any.whl#md5=f49f34b1fcdef6b557964deea1a80cf3 (from https://pypi.python.org/simple/requests/), version: 2.4.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/a6/1f/f948fb7ba68b69b13a1fbbb70d7706e889c7b7d3e9867b498ca7971126db/requests-0.6.1.tar.gz#md5=07770334d48bd69ede1cc28cd0dd7680 (from https://pypi.python.org/simple/requests/), version: 0.6.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/a6/36/06a7d4261f91552f21f017fe162d69df95ca7925d1436c8acf73283ee3d0/requests-2.5.3.tar.gz#md5=23bf4fcc89ea8d353eb5353bb4a475b1 (from https://pypi.python.org/simple/requests/), version: 2.5.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/a7/83/bb447075090f4a3a60082765051d476b62f375d0f8174ebe9545d4bb8938/requests-0.8.7.tar.gz#md5=e4d4ee3a90396908bd04b50bf2136617 (from https://pypi.python.org/simple/requests/), version: 0.8.7
DEBUG:pip.index:Found link https://pypi.python.org/packages/a8/a6/38b9de830719e4cd62ddf51f240654200658d0315aa9e908eda90ee64879/requests-0.6.5.tar.gz#md5=52f8bc956e027c8a0eb2684f6928169d (from https://pypi.python.org/simple/requests/), version: 0.6.5
DEBUG:pip.index:Found link https://pypi.python.org/packages/aa/a7/ec41790a8fb50f8d359568f82cd37a994af5d0159cccb543d147a7eea751/requests-0.8.4.tar.gz#md5=642e5c70250989e4feda9c50be57b100 (from https://pypi.python.org/simple/requests/), version: 0.8.4
DEBUG:pip.index:Found link https://pypi.python.org/packages/ab/f9/4425c8410faf7c7d420dbd64e127f2cfb68cfef869a374b332610b6abc09/requests-2.3.0.tar.gz#md5=7449ffdc8ec9ac37bbcd286003c80f00 (from https://pypi.python.org/simple/requests/), version: 2.3.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/ae/fb/b1d6916b5278c44a1a2beb919d7ab96327051c3d47db9d6ee6978743444e/requests-0.8.1.tar.gz#md5=6135f837fbd113fc62904c60dcc5c70d (from https://pypi.python.org/simple/requests/), version: 0.8.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/b0/e1/eab4fc3752e3d240468a8c0b284607899d2fbfb236a56b7377a329aa8d09/requests-2.18.4.tar.gz#md5=081412b2ef79bdc48229891af13f4d82 (from https://pypi.python.org/simple/requests/), version: 2.18.4
DEBUG:pip.index:Found link https://pypi.python.org/packages/b3/54/dbc9b89a66a15ab9f3e2595de1b1ebd1da954efcb30a329c98710e014c05/requests-0.4.1.tar.gz#md5=812ff0ce63d14f7b940bacd880d54ee0 (from https://pypi.python.org/simple/requests/), version: 0.4.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/b4/1f/8f5430040fcf4391dc5bd324424a569e2e0d96595952b21eb82403602d98/requests-0.10.6.tar.gz#md5=c889401445de3cbbac98509208a73b83 (from https://pypi.python.org/simple/requests/), version: 0.10.6
DEBUG:pip.index:Found link https://pypi.python.org/packages/b4/48/e82ded36a3cee7c0ef9605b44c4615ffe4a37f8b6c8b17fdbc15fae18daa/requests-0.13.7.tar.gz#md5=9212044f915d44fe3010cb923c0e08e5 (from https://pypi.python.org/simple/requests/), version: 0.13.7
DEBUG:pip.index:Found link https://pypi.python.org/packages/b4/56/ba2d803383ec32d70f8faa7df5eb37ee9b3fc662ff68b7ab01ad9740b83a/requests-0.10.1.tar.gz#md5=699147d2143bff95238befa58980b912 (from https://pypi.python.org/simple/requests/), version: 0.10.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/b6/52/ad2911cf5586f2372a296a93a94d0324e4ffdd225975241562c450594795/requests-0.11.2.tar.gz#md5=5acd23600c897bf1560dca18005b428c (from https://pypi.python.org/simple/requests/), version: 0.11.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/b6/61/7b374462d5b6b1d824977182db287758d549d8680444bad8d530195acba2/requests-2.12.5.tar.gz#md5=360bb3af97881a7056ed5bb3d0a3e8a3 (from https://pypi.python.org/simple/requests/), version: 2.12.5
DEBUG:pip.index:Found link https://pypi.python.org/packages/b7/1d/5c7973ca22bc95d53eba28a7dab7088f1ded7db0d174ea467afaaf898dfc/requests-0.8.8.tar.gz#md5=bfb182cfd3ed839b97744c553b87f502 (from https://pypi.python.org/simple/requests/), version: 0.8.8
DEBUG:pip.index:Found link https://pypi.python.org/packages/b8/03/fb15922d14fa0b01a0ff4e2920bb8c08546d970ff387454ba892a67d5243/requests-1.0.1.tar.gz#md5=2e938f26f2bdf2899862c751bfa7eff5 (from https://pypi.python.org/simple/requests/), version: 1.0.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/b8/f7/3bb4d18c234a8ce7044d5ee2e1082b7d72bf6c550afb8d51ae266dea56f1/requests-2.9.1-py2.py3-none-any.whl#md5=58a444aaa02780ad01983f5f540e67b2 (from https://pypi.python.org/simple/requests/), version: 2.9.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/ba/92/c35ed010e8f96781f08dfa6d9a6a19445a175a9304aceedece77cd48b68f/requests-2.18.3-py2.py3-none-any.whl#md5=d2d34c959a45f7da592a383485ad8b8c (from https://pypi.python.org/simple/requests/), version: 2.18.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/ba/bb/dfa0141a32d773c47e4dede1a617c59a23b74dd302e449cf85413fc96bc4/requests-0.2.0.tar.gz#md5=637ae94cb6f2f1d9ea9020293055964a (from https://pypi.python.org/simple/requests/), version: 0.2.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/ba/d1/919f6240a37ce5aade82da39809e1f28a5f2899a29a0ca10c381ba70efbb/requests-0.13.5.tar.gz#md5=805fd122b4cfd224e15ff2f5288c5ba0 (from https://pypi.python.org/simple/requests/), version: 0.13.5
DEBUG:pip.index:Found link https://pypi.python.org/packages/bf/78/be2b4c440ea767336d8448fe671fe1d78ca499e49d77dac90f92191cca0e/requests-2.0.0-py2.py3-none-any.whl#md5=6af9c16dbddd2fc751ae4f1606d041e8 (from https://pypi.python.org/simple/requests/), version: 2.0.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/bf/81/22c8ed95e8088c0a7c022969534c8157930f0bed6ae77e12e86fdc2e855c/requests-2.4.1-py2.py3-none-any.whl#md5=19d5413dc71309e4fb1f8103b8eb99ce (from https://pypi.python.org/simple/requests/), version: 2.4.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/bf/99/af6139323bac0ca0c6023eabbdc526579525f5584278d001dd2e169f8300/requests-2.12.5-py2.py3-none-any.whl#md5=eeb46098018d358d86c45131a8342060 (from https://pypi.python.org/simple/requests/), version: 2.12.5
DEBUG:pip.index:Found link https://pypi.python.org/packages/bf/b7/c0b5a7fcf561577178ffd65af9af37c412cf6fbb1a2a198b9308b343d63f/requests-2.9.0-py2.py3-none-any.whl#md5=149560afb69fe9e5048d05322eeb8ada (from https://pypi.python.org/simple/requests/), version: 2.9.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/c0/0f/a911a44c89ba01b23d8fe3defbdfca1e962de6f11a11da32658902cdc2a4/requests-2.8.1-py2.py3-none-any.whl#md5=46f1d621daa3ab38958a42f51478b1ee (from https://pypi.python.org/simple/requests/), version: 2.8.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/c0/44/84a4b7a4e9d5fd1b358dbabd03f17e3dd91ce8881fc3446fbd2fd996be88/requests-1.2.2.tar.gz#md5=1f655ab7f2aa7447a1657ed69786f436 (from https://pypi.python.org/simple/requests/), version: 1.2.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/c3/38/d95ddb6cc8558930600be088e174a2152261a1e0708a18bf91b5b8c90b22/requests-2.18.3.tar.gz#md5=c8f60cf816a35c0c3fef0a40d0e407a6 (from https://pypi.python.org/simple/requests/), version: 2.18.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/c5/cd/0597f9c040db24ca6d23cc74faa102554cb0a93bdbffb855d7749547921f/requests-0.10.7.tar.gz#md5=a3ac9d431981dcfd592fd0f35c499e4a (from https://pypi.python.org/simple/requests/), version: 0.10.7
DEBUG:pip.index:Found link https://pypi.python.org/packages/c7/5d/7711f9fc9b028dc7572f84589e206220f0072e29fd9c7ae3507e7d17d8a6/requests-2.16.1-py2.py3-none-any.whl#md5=0a825bf34bf2cd89b13a04a3a7800e61 (from https://pypi.python.org/simple/requests/), version: 2.16.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/c8/fb/d14d1c5166a8449d36c9a3b2656706c506a2cf261d37a79d16c18c37b646/requests-2.5.0.tar.gz#md5=b8bf3ddca75e7ecf1b6776da1e6e3385 (from https://pypi.python.org/simple/requests/), version: 2.5.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/c9/5a/aa687599abd76de72ae5a554e2e70328fc311d59e0b1e999263fb094baf3/requests-2.2.0.tar.gz#md5=4d2e17221d478ece045e2e81cdb177f5 (from https://pypi.python.org/simple/requests/), version: 2.2.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/cf/fa/31b222e4b44975de1b5ac3e1a725abdfeb00e0d761567ab426ee28a7fc73/requests-2.18.2-py2.py3-none-any.whl#md5=08026e24839d8bf36d248abfb2b6b674 (from https://pypi.python.org/simple/requests/), version: 2.18.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/d0/c0/f66d080e64a361382ed665023b9925e274d833f410f8c7282fb878e9c60e/requests-2.17.1.tar.gz#md5=53318fe8030b8b234ca672cde82916e4 (from https://pypi.python.org/simple/requests/), version: 2.17.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/d1/0c/2dc2996268bc64b531a5a2dc6f4ec04552f3a8a2a86e88aeedcb92987741/requests-2.2.1.tar.gz#md5=ac27081135f58d1a43e4fb38258d6f4e (from https://pypi.python.org/simple/requests/), version: 2.2.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/d5/f1/16b57088f11cd5c6c82834bad6475826309cee44edaae860e9f65c084703/requests-0.3.2.tar.gz#md5=bde777f4c5b7bbb09033901c443962b3 (from https://pypi.python.org/simple/requests/), version: 0.3.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/d6/f7/1a4c1cae7618ad3d9fe5536ef74f47b2cb1028938e12d6dfe0a9806a8e1b/requests-2.5.2.tar.gz#md5=424e2469202c9bace4e8bf4642d4217a (from https://pypi.python.org/simple/requests/), version: 2.5.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/d7/ee/6826f31ae3e0e68606cb9086c3904582b3982bbccc73f34d6dc9912b48ad/requests-0.11.1.tar.gz#md5=c903c32a0e1f04889e693da8e9c71872 (from https://pypi.python.org/simple/requests/), version: 0.11.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/d9/03/155b3e67fe35fe5b6f4227a8d9e96a14fda828b18199800d161bcefc1359/requests-2.12.3.tar.gz#md5=0cafdecd95a46b081dd5fcfa4978db7a (from https://pypi.python.org/simple/requests/), version: 2.12.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/db/1e/1f37495384a628887e10ecd61d45dba455ceec4b8b5b463512b4700e5b3d/requests-0.13.8.tar.gz#md5=d01596bd344db94763b2e4dfaa7bc7b9 (from https://pypi.python.org/simple/requests/), version: 0.13.8
DEBUG:pip.index:Found link https://pypi.python.org/packages/dc/02/789859c27162bb91ecf6b72ed4ce1af3ed1710255265ad0901c4d4e25666/requests-0.2.4.tar.gz#md5=62dbe8cf12bc1ccd03776e74f59e9ef6 (from https://pypi.python.org/simple/requests/), version: 0.2.4
DEBUG:pip.index:Found link https://pypi.python.org/packages/de/4c/7c36954d002030c82df31d000338d40fd91b4a993941a8f3c2dbe523c749/requests-2.16.5.tar.gz#md5=cca4f82209373759f5799fc0df6aca23 (from https://pypi.python.org/simple/requests/), version: 2.16.5
DEBUG:pip.index:Found link https://pypi.python.org/packages/de/f0/8fc024ef4f25ef5690c2121215029f88e1895b60c867c1a39134045b181e/requests-0.7.6.tar.gz#md5=728b21bf3914d69a4ff1012c66d9b6ba (from https://pypi.python.org/simple/requests/), version: 0.7.6
DEBUG:pip.index:Found link https://pypi.python.org/packages/df/8d/4b1bb15e8814fefa2cdf8f971a479b459d07f8176094bd59742720f31270/requests-0.6.6.tar.gz#md5=2180dacebc0e30ba730d083739907af6 (from https://pypi.python.org/simple/requests/), version: 0.6.6
DEBUG:pip.index:Found link https://pypi.python.org/packages/e0/97/e2f972b6826c9cfe57b6934e3773d2783733bc2d345d810bafd309df3d15/requests-2.18.0.tar.gz#md5=b8b333ace1653652ddcce95284577f5c (from https://pypi.python.org/simple/requests/), version: 2.18.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/e1/3f/9235f98536b1393ef8a8e2dbd27273588fc3246000b93b0d763325b2e30c/requests-0.6.3.tar.gz#md5=35a954ae85b358e498fb0e602f1dce9d (from https://pypi.python.org/simple/requests/), version: 0.6.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/e2/f0/c81405acbf53d0412b984eb3fc578cdd10e347374e1aec074638a500c186/requests-2.18.0-py2.py3-none-any.whl#md5=6f34e2439fcb3dd1b6e3304903bb6be8 (from https://pypi.python.org/simple/requests/), version: 2.18.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/e4/99/3e33bfe263894278a094c374f87031554406e57fd0b1ad22520357556627/requests-2.9.0.tar.gz#md5=2f46fdceaf4f63e5e3665a8cb50d284f (from https://pypi.python.org/simple/requests/), version: 2.9.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/e4/b0/286e8a936158e5cc5791d5fa3bc4b1d5a7e1ff4e5b3f3766b63d8e97708a/requests-2.14.2-py2.py3-none-any.whl#md5=a1b2f02e7ba45dff7c76f621cde042c4 (from https://pypi.python.org/simple/requests/), version: 2.14.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/e8/ff/d19b7461d84a5804c5cdc29791305530a2b774fe928b497e74ac9b304c79/requests-1.1.0.tar.gz#md5=a0158815af244c32041a3147ee09abf3 (from https://pypi.python.org/simple/requests/), version: 1.1.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/ea/03/92d3278bf8287c5caa07dbd9ea139027d5a3592b0f4d14abf072f890fab2/requests-2.11.1-py2.py3-none-any.whl#md5=b4269c6fb64b9361288620ba028fd385 (from https://pypi.python.org/simple/requests/), version: 2.11.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/eb/70/237e11db04807a9409ed39997097118208e7814309d9bc3da7bb98d1fe3d/requests-2.6.0.tar.gz#md5=25287278fa3ea106207461112bb37050 (from https://pypi.python.org/simple/requests/), version: 2.6.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/ed/1b/8682a0cfe92f67e30fb9ac7982cb785a1230ca4385dc1353513f5b87b9f4/requests-0.3.4.tar.gz#md5=55152cc2b135bc8989dc4fa279295f8b (from https://pypi.python.org/simple/requests/), version: 0.3.4
DEBUG:pip.index:Found link https://pypi.python.org/packages/ed/9e/60cc074968c095f728f0d8d28370e8d396fa60afb7582735563cccf223dd/requests-2.12.4-py2.py3-none-any.whl#md5=3989eaeaa2ccad20470afc61710d3498 (from https://pypi.python.org/simple/requests/), version: 2.12.4
DEBUG:pip.index:Found link https://pypi.python.org/packages/ef/a0/9863b20b6a87e45cd4353c10277d9674f9ddfd7c28c58e61a339e273a119/requests-2.4.0.tar.gz#md5=99b830d1afe2e5920adbea0fe3120948 (from https://pypi.python.org/simple/requests/), version: 2.4.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/f1/64/8a2ba81294381bb90e8fb4b6fa750e0dca3f2d19e8caaeeae5e7bb6b3753/requests-0.3.3.tar.gz#md5=84c762c116617ba4dd03c19e2b61eb53 (from https://pypi.python.org/simple/requests/), version: 0.3.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/f4/ff/34a5a2eb91e35280e65585c48304094b61b58f9966de74ab72673c2fde9d/requests-2.4.3.tar.gz#md5=02214b3a179e445545de4b7a98d3dd17 (from https://pypi.python.org/simple/requests/), version: 2.4.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/f7/51/7aa1e337862118bee783c0249debd64cb07b8fbdfef154b1e185754b02d5/requests-2.3.0-py2.py3-none-any.whl#md5=f2d850fd48fc10a93aa03d69b87b96b4 (from https://pypi.python.org/simple/requests/), version: 2.3.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/f8/17/42ab05005c88e8d301fe0ee9b24e34139422268d0d7b8b11f98107c2a794/requests-0.8.3.tar.gz#md5=93e4cd27ab646fb613a926fede1cc4f5 (from https://pypi.python.org/simple/requests/), version: 0.8.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/f8/25/1599a06d261fdd84256829d88f7a415c80a6e249988f9e17ba5016119b6f/requests-2.4.2.tar.gz#md5=a2476d2dd83a0520847f216ce0b5f9d1 (from https://pypi.python.org/simple/requests/), version: 2.4.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/f8/90/42d5e0d9b5c4c3629a3d99823bbc3748fb85616f0f7a45e79ba7908d4642/requests-2.11.0-py2.py3-none-any.whl#md5=369b7333bf2f710143a1b6678f2f214c (from https://pypi.python.org/simple/requests/), version: 2.11.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/f9/6d/07c44fb1ebe04d069459a189e7dab9e4abfe9432adcd4477367c25332748/requests-2.9.1.tar.gz#md5=0b7f480d19012ec52bab78292efd976d (from https://pypi.python.org/simple/requests/), version: 2.9.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/fa/a5/e04c4607dc96e3e6b22dfa13ba8776c64bb65cb97ab90f05a3ee14096a0a/requests-2.15.1-py2.py3-none-any.whl#md5=bdf7767141594c4a927188f60665705a (from https://pypi.python.org/simple/requests/), version: 2.15.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/fa/d1/0dd60e1146e79e7b193e7b0189d8c13ef100d55cbfe65e1825ac5f03c397/requests-0.14.2.tar.gz#md5=488508ba3e8270992ad5b3fb54d364ca (from https://pypi.python.org/simple/requests/), version: 0.14.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/fc/f8/329450760dddd7e437eef0cd16a8d48582405e72495cf79a77a82e2f0047/requests-0.8.5.tar.gz#md5=5f2975ee9e57f4ea000e5a3f50fc85d1 (from https://pypi.python.org/simple/requests/), version: 0.8.5
DEBUG:pip.index:1 location(s) to search for versions of six:
DEBUG:pip.index:* https://pypi.python.org/simple/six/
DEBUG:pip.index:Getting page https://pypi.python.org/simple/six/
DEBUG:pip._vendor.cachecontrol.controller:Looking up "https://pypi.python.org/simple/six/" in the cache
DEBUG:pip._vendor.cachecontrol.controller:Current age based on date: 179
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 > 179
DEBUG:pip.index:Analyzing links from page https://pypi.python.org/simple/six/
DEBUG:pip.index:Found link https://pypi.python.org/packages/02/c3/8e2a38edaac777ee2bbe479b3a65b020ade549efd6a224c2f4e95c818799/six-1.6.0.tar.gz#md5=eb22a24e8be9497dd71930bf2321b6ec (from https://pypi.python.org/simple/six/), version: 1.6.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/02/f8/d16f06e49b0d2ef40548bf42826f926c8964ad3b1d00f8098dcc6ef15aea/six-1.3.0.tar.gz#md5=ec47fe6070a8a64c802363d2c2b1e2ee (from https://pypi.python.org/simple/six/), version: 1.3.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/0b/5e/4b3f417a85d9cd30b172a1512a2d3cdd0ffb05a5deacb8adf2ef30db100d/six-1.5.1.tar.gz#md5=bb00c982fc0ec0dd6a760500b0941fa9 (from https://pypi.python.org/simple/six/), version: 1.5.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/0e/f9/66471f9b7e9291cca697b2e61a10645a537f389a9d5c0679d50dd86b20f7/six-0.9.0.tar.gz#md5=5ce2947347101b9f54674c19ef88233d (from https://pypi.python.org/simple/six/), version: 0.9.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/0f/dd/379fa572b72da0b482545116139529af8da92e686ea136271beecddd4e81/six-1.5.0.tar.gz#md5=72b33ff89f3b2f21dd2cb28fb94f7031 (from https://pypi.python.org/simple/six/), version: 1.5.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/10/e3/a7f8eea80a9fa8358c1cd89ef489bc03675e69e54ed2982cd6f2a28d8295/six-1.9.0-py2.py3-none-any.whl#md5=9ac7e129a80f72d6fc1f0216f6e9627b (from https://pypi.python.org/simple/six/), version: 1.9.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/11/3f/2b3c217c5427cdd12619024b1ee1b04d49e27fde5c29df2a0b92c26677c2/six-1.8.0.tar.gz#md5=1626eb24cc889110c38f7e786ec69885 (from https://pypi.python.org/simple/six/), version: 1.8.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/16/64/1dc5e5976b17466fd7d712e59cbe9fb1e18bec153109e5ba3ed6c9102f1a/six-1.9.0.tar.gz#md5=476881ef4012262dfc8adc645ee786c4 (from https://pypi.python.org/simple/six/), version: 1.9.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/16/d8/bc6316cf98419719bd59c91742194c111b6f2e85abac88e496adefaf7afe/six-1.11.0.tar.gz#md5=d12789f9baf7e9fb2524c0c64f1773f8 (from https://pypi.python.org/simple/six/), version: 1.11.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/1b/2a/ad686ae156581a70a7be28e7762f7d956bec30d62dafe9295b78dc019692/six-1.7.1.tar.gz#md5=f9fbad970c6e855cabde7ec1144b9058 (from https://pypi.python.org/simple/six/), version: 1.7.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/1d/8e/220ce5a36dac3aabccee871a34561ceba82ce14b53760143cf5e01bb4d2c/six-1.5.2.tar.gz#md5=322b86d0c50a7d165c05600154cecc0a (from https://pypi.python.org/simple/six/), version: 1.5.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/20/0a/617bf23511160454995bf1cbe6789f22beeb8b49c1f3b1bbf4b5cd6a55ca/six-1.7.0-py2.py3-none-any.whl#md5=e5ca7e89cc79d755ea128fc7e2cb136e (from https://pypi.python.org/simple/six/), version: 1.7.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/2b/4a/233721f6c6afeed5a2034f617f120fa646da935039f08e67ab8dc008a3e6/six-1.7.3.tar.gz#md5=784c6e5541c3c4952de9c0a966a0a80b (from https://pypi.python.org/simple/six/), version: 1.7.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/2e/a4/6dcb84af409b7bc0c258a0d6bd7e14231724d9a46b750c048f09d74d870c/six-1.7.3-py2.py3-none-any.whl#md5=5f34fe522765d398b21decdce62ebd1d (from https://pypi.python.org/simple/six/), version: 1.7.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/4e/02/f08545a99829a04e841b6443267f216629c723c23fb9cfd17c99c068e33a/six-0.9.1.tar.gz#md5=1b249e0011355722f569406135a8ac93 (from https://pypi.python.org/simple/six/), version: 0.9.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/4e/aa/73683ca0c4237891e33562e3f55bcaab972869959b97b397637519d92035/six-1.4.1.tar.gz#md5=bdbb9e12d3336c198695aa4cf3a61d62 (from https://pypi.python.org/simple/six/), version: 1.4.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/54/45/8b5eef1ba0b79acbdab01435359f37ae13dc6c4aafaa444b805e3867386d/six-1.6.0-py2.py3-none-any.whl#md5=e2755cf8a1d8e4eda44a8e3436c458ca (from https://pypi.python.org/simple/six/), version: 1.6.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/54/d4/8f7d631f1c3defa2ff4bd7c3daddcc5ed6eb9df7631f3cf24cc376aa3231/six-1.1.0.tar.gz#md5=9e8099b57cd27493a6988e9c9b313e23 (from https://pypi.python.org/simple/six/), version: 1.1.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/60/84/72c628d5a4efffb23e2fb46cdbf8ee669046d8208ba5dab08f989b7bfe9c/six-1.5.1-py2.py3-none-any.whl#md5=2064b715201fa76a55dea75675ee19f2 (from https://pypi.python.org/simple/six/), version: 1.5.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/67/4b/141a581104b1f6397bfa78ac9d43d8ad29a7ca43ea90a2d863fe3056e86a/six-1.11.0-py2.py3-none-any.whl#md5=866ab722be6bdfed6830f3179af65468 (from https://pypi.python.org/simple/six/), version: 1.11.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/6b/30/839b8059d1225dbd3a0dd97c3c370bbb978cde505e160b30515fb7be17d8/six-1.7.2-py2.py3-none-any.whl#md5=0e10f8d8e65257408e4428632859dad9 (from https://pypi.python.org/simple/six/), version: 1.7.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/7e/16/792311d76b8e23da84e1b177fb973679de1c963391d0dcd7e963634bed4b/six-1.7.0.tar.gz#md5=92f7210da3db1e988979fa394aa41d7a (from https://pypi.python.org/simple/six/), version: 1.7.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/8b/08/8f569ab2c81c1443ce43e29df2e7eec1ab7f005455f6c193793728b00f04/six-1.0b1.tar.gz#md5=cbfcc64af1f27162a6a6b5510e262c9d (from https://pypi.python.org/simple/six/), version: 1.0b1
DEBUG:pip.index:Found link https://pypi.python.org/packages/99/25/2df8760d6902620cfca85e36f07de491d14f2c325ecc01c1a5590d8af22d/six-1.4.0.tar.gz#md5=5fcab6a067b5ebf68ede2f4d02fe7547 (from https://pypi.python.org/simple/six/), version: 1.4.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/a2/4b/2b4532b4eba116a02fc0b5e0b3540a073a61c003b7b6293b7b884afa8ff1/six-1.8.0-py2.py3-none-any.whl#md5=2f5f96148c68f3c1611f489678a8b445 (from https://pypi.python.org/simple/six/), version: 1.8.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/a4/ed/a1410f4a3ae1492d87cbc7acdeea819db3caf6e526ef7032dd6fe50d2083/six-1.7.2.tar.gz#md5=4c26276583b01dfc73474cb32327af91 (from https://pypi.python.org/simple/six/), version: 1.7.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/a6/af/4506a069312018665b8936e5d51b3aa013971ef65eab5231ef151a482dcd/six-1.0.0.tar.gz#md5=37c7ff036fdff2b1bb8d55e49ccb3b44 (from https://pypi.python.org/simple/six/), version: 1.0.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/aa/ec/e6954e19e617c1b9860325f0995d456d8416c84a6cb9bce1c10998280b59/six-1.7.1-py2.py3-none-any.whl#md5=c3c1e251733acc9db947e75c9a02cf06 (from https://pypi.python.org/simple/six/), version: 1.7.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/af/33/fa2097ac4bc7a9672517fdcb982bc7454fdd113f49f7ab353025b906a119/six-0.9.2.tar.gz#md5=92ea7c870396dd9222029a188c6bbd7f (from https://pypi.python.org/simple/six/), version: 0.9.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/b3/b2/238e2590826bfdd113244a40d9d3eb26918bd798fc187e2360a8367068db/six-1.10.0.tar.gz#md5=34eed507548117b2ab523ab14b2f8b55 (from https://pypi.python.org/simple/six/), version: 1.10.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/ba/19/aa48edcff9d0c396a4d009d362d0a0a1ac3db6f9d7d5736e0175b94d7ef8/six-1.6.1-py2.py3-none-any.whl#md5=ca195cc2271b03ae1c8750a88081c7f1 (from https://pypi.python.org/simple/six/), version: 1.6.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/c7/a4/35520d20a8e4b3c28c9db705fffd4c7053e0236928951da32167e5078faa/six-1.5.2-py2.py3-none-any.whl#md5=ba32222ad0c5c7057a7c42e66e81289d (from https://pypi.python.org/simple/six/), version: 1.5.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/c8/0a/b6723e1bc4c516cb687841499455a8505b44607ab535be01091c0f24f079/six-1.10.0-py2.py3-none-any.whl#md5=3ab558cf5d4f7a72611d59a81a315dc8 (from https://pypi.python.org/simple/six/), version: 1.10.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/ca/15/e62a66024dded9640f8d39112330e6b108e7ab21a1b8618c2d1e2eea7e1d/six-1.5.0-py2.py3-none-any.whl#md5=3307efe2bc4ca8556befc9afe297c530 (from https://pypi.python.org/simple/six/), version: 1.5.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/e8/70/b9c441d8c02b70eb3bf923c49944b8fc656f78a43c084d2a98534d7404e2/six-1.6.1.tar.gz#md5=07d606ac08595d795bf926cc9985674f (from https://pypi.python.org/simple/six/), version: 1.6.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/e9/b4/0ccbc17cd49a812ab8363058bb12f0134cf2d3ba752391f309ddf567ae97/six-1.2.0.tar.gz#md5=2a5d1afc79912832ac78fd38e3d75d7e (from https://pypi.python.org/simple/six/), version: 1.2.0
DEBUG:pip.index:1 location(s) to search for versions of certifi:
DEBUG:pip.index:* https://pypi.python.org/simple/certifi/
DEBUG:pip.index:Getting page https://pypi.python.org/simple/certifi/
DEBUG:pip._vendor.cachecontrol.controller:Looking up "https://pypi.python.org/simple/certifi/" in the cache
DEBUG:pip._vendor.cachecontrol.controller:Current age based on date: 181
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 > 181
DEBUG:pip.index:Analyzing links from page https://pypi.python.org/simple/certifi/
DEBUG:pip.index:Found link https://pypi.python.org/packages/08/59/d39d98454a4fd2c9e0955590398bcfc4047f8e6dde00d7731cefdb32b403/certifi-2015.11.20.1.tar.gz#md5=e04b512009401603f1485380ac879cf5 (from https://pypi.python.org/simple/certifi/), version: 2015.11.20.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/0c/4d/6e036d6158e533499272f7b82d0ffa115ecc7c930994475b7bf8f4047489/certifi-0.0.2.tar.gz#md5=c91ab8b034966f88f481ef8f6e0c07e1 (from https://pypi.python.org/simple/certifi/), version: 0.0.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/15/d4/2f888fc463d516ff7bf2379a4e9a552fef7f22a94147655d9b1097108248/certifi-2018.1.18.tar.gz#md5=068fd5c3c690ae47504b3e0bf4e56c4c (from https://pypi.python.org/simple/certifi/), version: 2018.1.18
DEBUG:pip.index:Found link https://pypi.python.org/packages/17/3d/7d037b5aadde37d95c067e5b26f064ae53f791201a89b5b38ee315409264/certifi-0.0.3.tar.gz#md5=88aa24faf5d46c2d8426450b38330f2a (from https://pypi.python.org/simple/certifi/), version: 0.0.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/1c/d1/0133a5084f0d17db0270c6061e824a11b0e417d743f5ff4c594f4090ed89/certifi-2016.8.31.tar.gz#md5=2f22d484a36d38d98be74f9eeb2846ec (from https://pypi.python.org/simple/certifi/), version: 2016.8.31
DEBUG:pip.index:Found link https://pypi.python.org/packages/20/d0/3f7a84b0c5b89e94abbd073a5f00c7176089f526edb056686751d5064cbd/certifi-2017.7.27.1.tar.gz#md5=48e8370da8b370a16e223ee9c7b6b063 (from https://pypi.python.org/simple/certifi/), version: 2017.7.27.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/21/f7/7bb6b1c5ba1db21515950bc16b22cd7ef7d27024100f326a19921efd2ce0/certifi-2017.1.23-py2.py3-none-any.whl#md5=b4c86480f1527eefc24a6a6f8c2253eb (from https://pypi.python.org/simple/certifi/), version: 2017.1.23
DEBUG:pip.index:Found link https://pypi.python.org/packages/23/3f/8be01c50ed24a4bd6b8da799839066ce0288f66f5e11f0367323467f0cbc/certifi-2017.11.5.tar.gz#md5=c15ac46ed1fe4b607ff3405928f9a992 (from https://pypi.python.org/simple/certifi/), version: 2017.11.5
DEBUG:pip.index:Found link https://pypi.python.org/packages/29/9b/25ef61e948321296f029f53c9f67cc2b54e224db509eb67ce17e0df6044a/certifi-2017.11.5-py2.py3-none-any.whl#md5=429fdf238d878f8090a80ccc3488049b (from https://pypi.python.org/simple/certifi/), version: 2017.11.5
DEBUG:pip.index:Found link https://pypi.python.org/packages/34/21/ebb383f944dfc3a14461ee021089da90477be919a5554117c184ae3d44be/certifi-2016.8.31-py2.py3-none-any.whl#md5=0931a7d2576083826efa419d695117a3 (from https://pypi.python.org/simple/certifi/), version: 2016.8.31
DEBUG:pip.index:Found link https://pypi.python.org/packages/38/70/d777da670969367780cb0cb66f43799e17e050dcdeb0fa4e26189519f9f2/certifi-0.0.8.tar.gz#md5=dc5f5e7f0b5fc08d27654b17daa6ecec (from https://pypi.python.org/simple/certifi/), version: 0.0.8
DEBUG:pip.index:Found link https://pypi.python.org/packages/40/66/06130724e8205fc8c105db7edb92871c7fff7d31324d7f4405c762624a43/certifi-2017.7.27.1-py2.py3-none-any.whl#md5=c78c8e571e3556b8f0222bd221e471ac (from https://pypi.python.org/simple/certifi/), version: 2017.7.27.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/41/bf/88a3269c7c95fc94a2c581c4b1b3d3ec21af7a268d6a3a4e54578adccfd6/certifi-2016.8.8.tar.gz#md5=b57513f7670482da45bb350b792f659e (from https://pypi.python.org/simple/certifi/), version: 2016.8.8
DEBUG:pip.index:Found link https://pypi.python.org/packages/43/10/aafebf9677ccec8b227f15eef20a4aac65fbff7f14fc9462f06855fecdd2/certifi-0.0.7.tar.gz#md5=86eee1cacdf8167d7ea7ea3572d233d5 (from https://pypi.python.org/simple/certifi/), version: 0.0.7
DEBUG:pip.index:Found link https://pypi.python.org/packages/4a/41/52617061e93551d5c8041b70d35db395ad647cc356beb764cd9b278e3114/certifi-2015.04.28.tar.gz#md5=12c7c3a063b2ff97a0f8291d8de41e8c (from https://pypi.python.org/simple/certifi/), version: 2015.04.28
DEBUG:pip.index:Found link https://pypi.python.org/packages/4e/58/86422944e1f228a4e90c291388bf69675826c995f163b2894541365f1f0e/certifi-1.0.1-py2.py3-none-any.whl#md5=7a7f27120a39ab0be1bfb6884c6e9ebf (from https://pypi.python.org/simple/certifi/), version: 1.0.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/4f/75/e1bc6e363a2c76f8d7e754c27c437dbe4086414e1d6d2f6b2a3e7846f22b/certifi-2016.9.26.tar.gz#md5=baa81e951a29958563689d868ef1064d (from https://pypi.python.org/simple/certifi/), version: 2016.9.26
DEBUG:pip.index:Found link https://pypi.python.org/packages/55/bf/e1094f052b5932a452b12ac5a6c229f3d7dbf41a66cfc8d5832fe3fb6463/certifi-0.0.1.tar.gz#md5=bad50249a8e0a2e5f7858e6322cf06d2 (from https://pypi.python.org/simple/certifi/), version: 0.0.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/58/41/b16d4787c30bfb27d608fd2383ab2a7823afa0491fa16df04336d7b7519b/certifi-2015.9.6.2-py2.py3-none-any.whl#md5=512f112ac0d3cb1efe88786e00fde931 (from https://pypi.python.org/simple/certifi/), version: 2015.9.6.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/5c/f8/f6c54727c74579c6bbe5926f5deb9677c5810a33e11da58d1a4e2d09d041/certifi-2016.2.28.tar.gz#md5=5d672aa766e1f773c75cfeccd02d3650 (from https://pypi.python.org/simple/certifi/), version: 2016.2.28
DEBUG:pip.index:Found link https://pypi.python.org/packages/60/d8/e4dbd7239f1dd3854135949cc2cc8344602b1545a7929b7bf652ac69fbb6/certifi-2016.8.2.tar.gz#md5=004ae166985d3a684bcac5368e22ed63 (from https://pypi.python.org/simple/certifi/), version: 2016.8.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/63/71/422814652028afbff99347da9f3d102f53113a1d2389e255a2dde15c5d8d/certifi-2015.9.6.2.tar.gz#md5=323884431b31aa0eccb5f8086d92196b (from https://pypi.python.org/simple/certifi/), version: 2015.9.6.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/65/da/116b7b175ecdb089406ec24238d1fe668b52d3f25e4e7ba88983807eac6a/certifi-2016.8.2-py2.py3-none-any.whl#md5=7e8f31a38035586cc28033c06dec3875 (from https://pypi.python.org/simple/certifi/), version: 2016.8.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/76/4a/92995898df84d15c42d49e38b814caa94502cbf28be9b9732703303f2107/certifi-0.0.6.tar.gz#md5=e5238cfffd61be7fef5b5db4aa29f818 (from https://pypi.python.org/simple/certifi/), version: 0.0.6
DEBUG:pip.index:Found link https://pypi.python.org/packages/84/b9/a5aac1c71b154f18dad87b39e42a118a538ce4f95fe10f3f651b0c3d0ac2/certifi-0.0.5.tar.gz#md5=0d5005feb495e83f78e0fb1b3f2ec70f (from https://pypi.python.org/simple/certifi/), version: 0.0.5
DEBUG:pip.index:Found link https://pypi.python.org/packages/86/35/9758a67004a266047c779ae40a3d937869bfc6fc3422f6c606b8afbc9d23/certifi-2015.04.28-py2.py3-none-any.whl#md5=4b0d6599c8297becffeb369c0b3ef47b (from https://pypi.python.org/simple/certifi/), version: 2015.04.28
DEBUG:pip.index:Found link https://pypi.python.org/packages/a2/35/b7b457c95fdd661d4c179201e9e58a2181934695943b08ccfcba09284b4e/certifi-2016.9.26-py2.py3-none-any.whl#md5=f48b1ab06489776c408cc5062a826971 (from https://pypi.python.org/simple/certifi/), version: 2016.9.26
DEBUG:pip.index:Found link https://pypi.python.org/packages/a5/2b/83904abc08c3d95808d098163b049e923cbf9fa04f6fa5c0f3750959da8e/certifi-2015.11.20-py2.py3-none-any.whl#md5=6206cd9ca559c1d7390da307fe96f661 (from https://pypi.python.org/simple/certifi/), version: 2015.11.20
DEBUG:pip.index:Found link https://pypi.python.org/packages/b6/fa/ca682d5ace0700008d246664e50db8d095d23750bb212c0086305450c276/certifi-2017.1.23.tar.gz#md5=b72521a8badff5e89a8eabea586d79ab (from https://pypi.python.org/simple/certifi/), version: 2017.1.23
DEBUG:pip.index:Found link https://pypi.python.org/packages/c1/ed/4a424a55f77679700452972e583393b64160583c80ffa893b4be9391f3ae/certifi-14.05.14.tar.gz#md5=315ea4e50673a16ab047099f816fd32a (from https://pypi.python.org/simple/certifi/), version: 14.05.14
DEBUG:pip.index:Found link https://pypi.python.org/packages/c5/8a/d007319d95bd2424adb3f2a41ffb29de76f2c07b3dd5fd98f3651f9a14f5/certifi-2015.11.20.tar.gz#md5=25134646672c695c1ff1593c2dd75d08 (from https://pypi.python.org/simple/certifi/), version: 2015.11.20
DEBUG:pip.index:Found link https://pypi.python.org/packages/c6/aa/85432217f85f1553dc0926a3e00b48e00819b80097dd056e482c19766f11/certifi-2015.9.6-py2.py3-none-any.whl#md5=353670355bc7b0b87b99d101d693aff0 (from https://pypi.python.org/simple/certifi/), version: 2015.9.6
DEBUG:pip.index:Found link https://pypi.python.org/packages/cc/7f/fb45b6c47ff3a1e119b8fa0aec4a9d1812f0c9f774d877eca582065ef21e/certifi-2015.9.6.1-py2.py3-none-any.whl#md5=0a6bc6cbbadcbc8e4ada2979294923d9 (from https://pypi.python.org/simple/certifi/), version: 2015.9.6.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/cd/b9/ad866737dfde6b459fa3188b13d249e50101fa06bab408e6d9e5029b6838/certifi-0.0.4.tar.gz#md5=f79d78ea1404dc6ad607a2f035e25d3f (from https://pypi.python.org/simple/certifi/), version: 0.0.4
DEBUG:pip.index:Found link https://pypi.python.org/packages/d6/8d/700b62e1cbcd0264450b8bb476757808ef2c3f6060ee552c3717d010b616/certifi-2015.9.6.1.tar.gz#md5=4653a5fe35985fd3b5d6a19c88f50135 (from https://pypi.python.org/simple/certifi/), version: 2015.9.6.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/db/60/1ed0106bde7b14b363b15b17cc308aad93ba57d3582570f3ad7180ae0fae/certifi-2016.2.28-py2.py3-none-any.whl#md5=409448ee124f3159d912e4e155b034b0 (from https://pypi.python.org/simple/certifi/), version: 2016.2.28
DEBUG:pip.index:Found link https://pypi.python.org/packages/dc/ec/38df4e406cfca294fd6e242ea38bd943f47885d95e4dbf1783146f80e391/certifi-2017.7.27-py2.py3-none-any.whl#md5=c84dfaa15d456c86c5b91e8758a920d0 (from https://pypi.python.org/simple/certifi/), version: 2017.7.27
DEBUG:pip.index:Found link https://pypi.python.org/packages/dd/0e/1e3b58c861d40a9ca2d7ea4ccf47271d4456ae4294c5998ad817bd1b4396/certifi-2017.4.17.tar.gz#md5=db40445044feda1437ce3ccd5fc28a57 (from https://pypi.python.org/simple/certifi/), version: 2017.4.17
DEBUG:pip.index:Found link https://pypi.python.org/packages/dd/ed/e9bf6a9dc79e23c68385c4ea692f0e9e1a7880518872564f88be013b552f/certifi-2016.8.8-py2.py3-none-any.whl#md5=cd6b969efda72327c5178c3ef0946ff2 (from https://pypi.python.org/simple/certifi/), version: 2016.8.8
DEBUG:pip.index:Found link https://pypi.python.org/packages/df/21/86903664789d010c7693523aa44cd6f96f9d60c7bc813761ff3db5fa8aad/certifi-2015.11.20.1-py2.py3-none-any.whl#md5=144eb8a498f1b98c372eebc6f9a76bc6 (from https://pypi.python.org/simple/certifi/), version: 2015.11.20.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/e2/ec/ab8442e4d6cf92ea4df67ed81e078bd6a9e092c96ffcd03dbd910e1eb389/certifi-2015.9.6.tar.gz#md5=433489b1ccdd1ffe91500866fea7042d (from https://pypi.python.org/simple/certifi/), version: 2015.9.6
DEBUG:pip.index:Found link https://pypi.python.org/packages/eb/01/c1f58987b777d6c4ec535b4e004a4a07bfc9db06f0c7533367ca6da8f2a6/certifi-2017.4.17-py2.py3-none-any.whl#md5=7d6198f160686046fd727900adf39f5b (from https://pypi.python.org/simple/certifi/), version: 2017.4.17
DEBUG:pip.index:Found link https://pypi.python.org/packages/eb/fe/3ba38b686003664a75c01c42c6f1be02f9837d007c0f15727e6f8f2040a3/certifi-1.0.0.tar.gz#md5=1ef0ac75aabb7bfd4ab6261a55f08493 (from https://pypi.python.org/simple/certifi/), version: 1.0.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/fa/53/0a5562e2b96749e99a3d55d8c7df91c9e4d8c39a9da1f1a49ac9e4f4b39f/certifi-2018.1.18-py2.py3-none-any.whl#md5=38f1c6a4a5d6b5e8bcb614354d6584c9 (from https://pypi.python.org/simple/certifi/), version: 2018.1.18
DEBUG:pip.index:Found link https://pypi.python.org/packages/fa/70/bf24052d94f00bfdb70ac70840bfa1ba61e6d56ee7da5f62ecbca743c87e/certifi-2017.7.27.tar.gz#md5=bf4506df00739efb8fbc490f6cab5375 (from https://pypi.python.org/simple/certifi/), version: 2017.7.27
DEBUG:pip.index:Found link https://pypi.python.org/packages/ff/3a/ec07518540a090d463aa20c615a170d52a3633057fde480bd462883a0de2/certifi-1.0.1.tar.gz#md5=45f5cb94b8af9e1df0f9450a8f61b790 (from https://pypi.python.org/simple/certifi/), version: 1.0.1
DEBUG:pip.index:1 location(s) to search for versions of chardet:
DEBUG:pip.index:* https://pypi.python.org/simple/chardet/
DEBUG:pip.index:Getting page https://pypi.python.org/simple/chardet/
DEBUG:pip._vendor.cachecontrol.controller:Looking up "https://pypi.python.org/simple/chardet/" in the cache
DEBUG:pip._vendor.cachecontrol.controller:Current age based on date: 180
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 > 180
DEBUG:pip.index:Analyzing links from page https://pypi.python.org/simple/chardet/
DEBUG:pip.index:Found link https://pypi.python.org/packages/11/da/101ef38e05881445c1dec36dbd0573f9561e357a2da9e2409656e4677ffa/chardet-1.1.tar.gz#md5=15838de570d0703baf191dcf831cf0de (from https://pypi.python.org/simple/chardet/), version: 1.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/13/29/9336841b1a5d9de9de808e1797ab04057bc17982bbab87dd14fc06aa4160/chardet-1.0.tar.gz#md5=1381eac6e12d79a90fd426a7bd748f0e (from https://pypi.python.org/simple/chardet/), version: 1.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/33/d9/43cd46d6b8cf2e393aeb60f338cfe0154cee7dd3de13a1752d3e4814aee2/chardet-3.0.0.tar.gz#md5=f99fb635c61fe37e14570becaa281c76 (from https://pypi.python.org/simple/chardet/), version: 3.0.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/42/d1/c7e0023643df3c53ff72513f53f28bc1e948cb18a56f8a20aee289537ee9/chardet-3.0.1.tar.gz#md5=bf3ea9df23c79d134aea8ef65745da06 (from https://pypi.python.org/simple/chardet/), version: 3.0.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/63/8b/44ea61e33bd7d38c1416b625c87a98aeb4ee9abdad3bff630c69b6b5ffc8/chardet-3.0.0-py2.py3-none-any.whl#md5=9dc57a0e5c79d0cc9f45d865c7d72f0d (from https://pypi.python.org/simple/chardet/), version: 3.0.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/63/b7/de3834dc5c84dec3b839690bd663a07613b166b0b7217e46687a1f7eced2/chardet-2.2.1-py2.py3-none-any.whl#md5=556de73cc5d2d14233b3512798423da1 (from https://pypi.python.org/simple/chardet/), version: 2.2.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/7d/87/4e3a3f38b2f5c578ce44f8dc2aa053217de9f0b6d737739b0ddac38ed237/chardet-2.3.0.tar.gz#md5=25274d664ccb5130adae08047416e1a8 (from https://pypi.python.org/simple/chardet/), version: 2.3.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/7e/5c/605ca2daa5cf21c87690d8fe6ab05a6f2278c451f4ede6456dd26453f4bd/chardet-2.3.0-py2.py3-none-any.whl#md5=ed72df7ce6a2956ac3483e029d951fa2 (from https://pypi.python.org/simple/chardet/), version: 2.3.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/86/e5/e5f97d77cda0622e875d83edfdbb2f81ba38165e7197f9d185ba2c799f77/chardet-2.2.1.tar.gz#md5=4a758402eaefd0331bdedc7ecb6f452c (from https://pypi.python.org/simple/chardet/), version: 2.2.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/8c/27/99f781a11e4daa5acadf97add6e5883ec5f8f9abbf279e790fd0ff371db7/chardet-3.0.3-py2.py3-none-any.whl#md5=9f33113c118ab9754ef4316aad359d6e (from https://pypi.python.org/simple/chardet/), version: 3.0.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/91/05/28f23094cdf1410fb03533f0d71e6b4aad3c504100e83b8cea6fc899552c/chardet-3.0.2.tar.gz#md5=96e364abdbde20b5f6dbbe2ad9d54d04 (from https://pypi.python.org/simple/chardet/), version: 3.0.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/94/f1/f3237e3045c422c83968d3a2dfdefc7d4d687d84957e12810564b16ac5d5/chardet-1.0.1.tar.gz#md5=7c28b02bca7847c13bebedaf4df6c5a3 (from https://pypi.python.org/simple/chardet/), version: 1.0.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/b8/74/54fdc2fcfdd46b6c486964b64c5bb7db9a3664033ab25cf11aab06dd2a5d/chardet-3.0.2-py2.py3-none-any.whl#md5=f18688841820b46ecc430aabdc274cde (from https://pypi.python.org/simple/chardet/), version: 3.0.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/bc/a9/01ffebfb562e4274b6487b4bb1ddec7ca55ec7510b22e4c51f14098443b8/chardet-3.0.4-py2.py3-none-any.whl#md5=0004b00caff7bb543a1d0d0bd0185a03 (from https://pypi.python.org/simple/chardet/), version: 3.0.4
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/d4/bc/c1b877d19bc02610873a21cc3978260008c2839acac36772dd29c1f78316/chardet-1.0.1-py2.5.egg#md5=aa49cb7ef2793fc83e5b08abcf2dff79 (from https://pypi.python.org/simple/chardet/); unsupported archive format: .egg
DEBUG:pip.index:Found link https://pypi.python.org/packages/de/e5/3226e65c6f4291bc3f7ec0a9329ed9949bf074d8663a037c58c78d275745/chardet-3.0.1-py2.py3-none-any.whl#md5=2ecd2aac7eebe48484afb917d2bdcce3 (from https://pypi.python.org/simple/chardet/), version: 3.0.1
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/ec/32/19eab081980cc61aa8d49c44930cf897c1dbce6888579743aed12140810a/chardet-1.0.1-py2.4.egg#md5=44e5cb181436c8b86f1a6fb492f9e409 (from https://pypi.python.org/simple/chardet/); unsupported archive format: .egg
DEBUG:pip.index:Found link https://pypi.python.org/packages/f2/f1/2b5ab854299fe1ea312a9c10dda58421ea24af98a128ad1bff6b87c0c927/chardet-2.1.1.tar.gz#md5=295367fd210d20f3febda615a88e1ef0 (from https://pypi.python.org/simple/chardet/), version: 2.1.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/fc/bb/a5768c230f9ddb03acc9ef3f0d4a3cf93462473795d18e9535498c8f929d/chardet-3.0.4.tar.gz#md5=7dd1ba7f9c77e32351b0a0cfacf4055c (from https://pypi.python.org/simple/chardet/), version: 3.0.4
DEBUG:pip.index:Found link https://pypi.python.org/packages/fc/f9/3963ae8e196ceb4a09e0d7906f511fdf62a631f05d9288dc4905a93a1f52/chardet-3.0.3.tar.gz#md5=d92908d1b0b61dbbd63fb18d33c6493a (from https://pypi.python.org/simple/chardet/), version: 3.0.3
DEBUG:pip.index:1 location(s) to search for versions of idna:
DEBUG:pip.index:* https://pypi.python.org/simple/idna/
DEBUG:pip.index:Getting page https://pypi.python.org/simple/idna/
DEBUG:pip._vendor.cachecontrol.controller:Looking up "https://pypi.python.org/simple/idna/" in the cache
DEBUG:pip._vendor.cachecontrol.controller:Current age based on date: 179
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 > 179
DEBUG:pip.index:Analyzing links from page https://pypi.python.org/simple/idna/
DEBUG:pip.index:Found link https://pypi.python.org/packages/08/c6/71319d9ac2055156562992b16cb01dbee74f431c0372d580a8fef6ca0e4c/idna-2.4-py2.py3-none-any.whl#md5=952d5c1df7fca0ca4b1a050e77781bea (from https://pypi.python.org/simple/idna/), version: 2.4
DEBUG:pip.index:Found link https://pypi.python.org/packages/0d/3b/ebe79efc3c00fc8dfd391938c6594c73539aeb55d5a38ebb901bae95c770/idna-1.1.tar.gz#md5=9f5bfff6b317763c5a6f674707744dbe (from https://pypi.python.org/simple/idna/), version: 1.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/11/7d/9bbbd7bb35f34b0169542487d2a8859e44306bb2e6a4455d491800a5621f/idna-2.5-py2.py3-none-any.whl#md5=a7e9abecc669f5bd2ddb53b453008d32 (from https://pypi.python.org/simple/idna/), version: 2.5
DEBUG:pip.index:Found link https://pypi.python.org/packages/22/35/04dedec60e9366ba19ac7c147cd715c88a7e87d43cda47a75802190c0950/idna-0.2.tar.gz#md5=36d5a8db3d6d46cb5d401d0ead4acde6 (from https://pypi.python.org/simple/idna/), version: 0.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/27/cc/6dd9a3869f15c2edfab863b992838277279ce92663d334df9ecf5106f5c6/idna-2.6-py2.py3-none-any.whl#md5=875c4a7b32b4897537d5ea9247b5c79e (from https://pypi.python.org/simple/idna/), version: 2.6
DEBUG:pip.index:Found link https://pypi.python.org/packages/65/4a/a571c5d86b11d98244fc822bf75322d2f5663372b8a80d2348d8a55c4332/idna-0.8.tar.gz#md5=2bf526060960309de59d5dbbf7789a26 (from https://pypi.python.org/simple/idna/), version: 0.8
DEBUG:pip.index:Found link https://pypi.python.org/packages/69/27/5f76009f13c6dda4ed5016cbfebf68773f21374f9792db02821c05326a75/idna-2.0.tar.gz#md5=bd17a9d15e755375f48a62c13b25b801 (from https://pypi.python.org/simple/idna/), version: 2.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/6b/f4/bb42887fb16eb5f5957897fec9e16d18c56dd8cdd2a729c13947ed786b92/idna-2.2-py2.py3-none-any.whl#md5=fbda7cc9f538bc08e4b23745eba6abac (from https://pypi.python.org/simple/idna/), version: 2.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/71/02/dee75fc3e6f7455bf69221164f94586ee13552c5f33c8002335667a3d122/idna-2.1-py2.py3-none-any.whl#md5=3504ea3c28f95c5ce00fa02c07e1dba6 (from https://pypi.python.org/simple/idna/), version: 2.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/7c/75/b566d769455929ee6ab308d8a1c6c5aecc4928e72b25d42dd019c99f7015/idna-2.0-py2.py3-none-any.whl#md5=40fa688bb01833b2a807fcc40ddaa8c0 (from https://pypi.python.org/simple/idna/), version: 2.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/81/62/c32d933d487d9756f55782de85a70b90cd6827a59a3e330f6adada408241/idna-2.3.tar.gz#md5=b2e3cb6afde43ebd521c3b7484d22235 (from https://pypi.python.org/simple/idna/), version: 2.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/8e/52/8146be5f86bf668895e68e85d564572addae141a12a0344347c921002246/idna-0.3.tar.gz#md5=b5e01837926a3d293cd8e6e27c4244ea (from https://pypi.python.org/simple/idna/), version: 0.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/94/fe/efb1cb6f505e1a560b3d080ae6b9fddc11e7c542d694ce4635c49b1ccdcb/idna-2.2.tar.gz#md5=e2d3f8a45d3d048a653eb186896e9e3e (from https://pypi.python.org/simple/idna/), version: 2.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/a3/06/40cb383eaea6e97047666db51abc2f2b32046f3e2a6e5ab2b946630f6062/idna-2.4.tar.gz#md5=b27328914784bf3e4f6fae16f4b75ba9 (from https://pypi.python.org/simple/idna/), version: 2.4
DEBUG:pip.index:Found link https://pypi.python.org/packages/be/06/2c523c1aa1d85aafb21e95e6e207de373e5fad4f2062242ca3b69c69758d/idna-0.6.tar.gz#md5=3bedb7eb5a386b0bd8b5549c8e36378a (from https://pypi.python.org/simple/idna/), version: 0.6
DEBUG:pip.index:Found link https://pypi.python.org/packages/c4/93/a80bccdee90d97b113b76e2f0ba8e3260034bd0e55cea3ccb66098e710d8/idna-1.0.tar.gz#md5=01abd8bd98f119e02aad6e686ff6181b (from https://pypi.python.org/simple/idna/), version: 1.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/c8/6b/d109774559ad508c094c6e7d9b7f97722e61a964976c24ca3a4fa0a0b870/idna-0.9.tar.gz#md5=adeaa25679040dc6f8098a2e2ab6c42d (from https://pypi.python.org/simple/idna/), version: 0.9
DEBUG:pip.index:Found link https://pypi.python.org/packages/c9/8a/14a079eeb7e89449dd8af6037e57ff53722be0d927a11bd21490a5d0a7b0/idna-0.5.tar.gz#md5=590a2dc0fb09b5647d6a86d1585dfc1a (from https://pypi.python.org/simple/idna/), version: 0.5
DEBUG:pip.index:Found link https://pypi.python.org/packages/cf/57/53ac056e1a9d028dfce896929d0fc769e53a1e4d0917c2ec163acae4528f/idna-0.7.tar.gz#md5=235729aa2bf99e1b940eba53fcbfb37c (from https://pypi.python.org/simple/idna/), version: 0.7
DEBUG:pip.index:Found link https://pypi.python.org/packages/d5/af/5d5ed7f2a78182724234c025e5ab5f2166a5212b0c6bf9a9fa891f139c5d/idna-0.4.tar.gz#md5=3d9ad8650e630ffe7d47cd9756bcc126 (from https://pypi.python.org/simple/idna/), version: 0.4
DEBUG:pip.index:Found link https://pypi.python.org/packages/d8/82/28a51052215014efc07feac7330ed758702fc0581347098a81699b5281cb/idna-2.5.tar.gz#md5=fc1d992bef73e8824db411bb5d21f012 (from https://pypi.python.org/simple/idna/), version: 2.5
DEBUG:pip.index:Found link https://pypi.python.org/packages/e6/d7/930b670f75990f8fa5b2ad598b997d66afbf24b672ce504df224e6a4d760/idna-2.3-py2.py3-none-any.whl#md5=9a91c6e3a19352cc06f493e768a926d5 (from https://pypi.python.org/simple/idna/), version: 2.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/f4/bd/0467d62790828c23c47fc1dfa1b1f052b24efdf5290f071c7a91d0d82fd3/idna-2.6.tar.gz#md5=c706e2790b016bd0ed4edd2d4ba4d147 (from https://pypi.python.org/simple/idna/), version: 2.6
DEBUG:pip.index:Found link https://pypi.python.org/packages/fb/84/8c27516fbaa8147acd2e431086b473c453c428e24e8fb99a1d89ce381851/idna-2.1.tar.gz#md5=f6473caa9c5e0cc1ad3fd5d04c3c114b (from https://pypi.python.org/simple/idna/), version: 2.1
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/ff/ee/57ca2b52dea2df65a15d4ab2669c89ff29fa227668917cebc43e689360be/idna-2.1-py2-none-any.whl#md5=d87a2689779f273f3a67c97cdda2352d (from https://pypi.python.org/simple/idna/); it is not compatible with this Python
DEBUG:pip.index:1 location(s) to search for versions of urllib3:
DEBUG:pip.index:* https://pypi.python.org/simple/urllib3/
DEBUG:pip.index:Getting page https://pypi.python.org/simple/urllib3/
DEBUG:pip._vendor.cachecontrol.controller:Looking up "https://pypi.python.org/simple/urllib3/" in the cache
DEBUG:pip._vendor.cachecontrol.controller:Current age based on date: 178
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 > 178
DEBUG:pip.index:Analyzing links from page https://pypi.python.org/simple/urllib3/
DEBUG:pip.index:Found link https://pypi.python.org/packages/08/37/48b443a36af9eda6274f673b70a9140c13e2409edb2ef20b2d8a620efef5/urllib3-1.19.tar.gz#md5=4aa7c6c310cd938683e9b1831e110bac (from https://pypi.python.org/simple/urllib3/), version: 1.19
DEBUG:pip.index:Found link https://pypi.python.org/packages/0c/ef/936532f5f3b49a095f67cbece0f6d286c2175723c33de8c6d24e14d0b070/urllib3-1.8.3.tar.gz#md5=e94b812ff841fe4d3fda4536c82b1846 (from https://pypi.python.org/simple/urllib3/), version: 1.8.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/10/c7/8ed1d80ca1901a9ddbcbe2323a5c73049c4f957eecdb80d85577aa49dfa4/urllib3-1.10.2.tar.gz#md5=e5b04971d8e6a77b591284d407e810fb (from https://pypi.python.org/simple/urllib3/), version: 1.10.2
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/1b/db/660cb4590ddea7c56d3a1698d6983b5e9cfe010d6b54cd202c4b36e625fc/urllib3-1.9.1-py2-none-any.whl#md5=5b92e86b6482f1df664a42b7208ae918 (from https://pypi.python.org/simple/urllib3/); it is not compatible with this Python
DEBUG:pip.index:Found link https://pypi.python.org/packages/20/56/a6aa403b0998f857b474a538343ee483f5c02491bd1aebf61d42a3f60f77/urllib3-1.20.tar.gz#md5=34691d4e7e20a8e9cdb452ea24fc38e7 (from https://pypi.python.org/simple/urllib3/), version: 1.20
DEBUG:pip.index:Found link https://pypi.python.org/packages/24/53/f397db567de0aa0e81b211d81c13c41a779f14893e42189cf5bdb97611b2/urllib3-1.21.1-py2.py3-none-any.whl#md5=b83ea4ad4905f6f0ca432b0db829a80b (from https://pypi.python.org/simple/urllib3/), version: 1.21.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/28/55/7b1177b9eeea37ef4a0b2a68d0843f9f4c33d0b21a7287e6a6b31f7955c0/urllib3-1.9.1.tar.gz#md5=c9358c5a85dd6aa3942f5121efed064d (from https://pypi.python.org/simple/urllib3/), version: 1.9.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/2b/33/9d90a753026d1869a7925372f0ac310f58b46a661b7cb4c54eb5c22cf6eb/urllib3-1.10.1.tar.gz#md5=820cae9eb984edc41dea504a56ec0267 (from https://pypi.python.org/simple/urllib3/), version: 1.10.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/34/02/f043d2c9e2360dd6f6f1f7e44c71733ede2478e8b084de43375b316105c5/urllib3-1.19-py2.py3-none-any.whl#md5=1687d0862ee048f42ca577dbeea47224 (from https://pypi.python.org/simple/urllib3/), version: 1.19
DEBUG:pip.index:Found link https://pypi.python.org/packages/34/95/7b28259d0006ed681c424cd71a668363265eac92b67dddd018eb9a22bff8/urllib3-1.21.tar.gz#md5=1ee27ce604215b36e61bced0b88abce7 (from https://pypi.python.org/simple/urllib3/), version: 1.21
DEBUG:pip.index:Found link https://pypi.python.org/packages/37/ff/2c224b19aa21da51b85b2f5f5be5e8ed47a0a2ab9bb1c09c271f9351786b/urllib3-1.8.2.tar.gz#md5=52f7513335dfd0943082cbb7400d693e (from https://pypi.python.org/simple/urllib3/), version: 1.8.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/39/00/cb4ffa715096532f6cd6055083f980a113739f7cf50486aae584e24ca195/urllib3-1.15.tar.gz#md5=19c136027dfae028f664b9e45ee55a92 (from https://pypi.python.org/simple/urllib3/), version: 1.15
DEBUG:pip.index:Found link https://pypi.python.org/packages/3b/aa/fdf493811c0357588c99f47fb36b99853d70bd26fcac11d51a329976c864/urllib3-1.7.1.tar.gz#md5=8b05bb2081379fe3c332542aa7c172f3 (from https://pypi.python.org/simple/urllib3/), version: 1.7.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/3b/f0/e763169124e3f5db0926bc3dbfcd580a105f9ca44cf5d8e6c7a803c9f6b5/urllib3-1.16.tar.gz#md5=fcaab1c5385c57deeb7053d3d7d81d59 (from https://pypi.python.org/simple/urllib3/), version: 1.16
DEBUG:pip.index:Found link https://pypi.python.org/packages/3f/0c/7c4e8c634a6285ace89516629ff33cd452218587b8082e7f08080e25c9a4/urllib3-1.11-py2.py3-none-any.whl#md5=bfe41df0dbc47880ba15960be721a08b (from https://pypi.python.org/simple/urllib3/), version: 1.11
DEBUG:pip.index:Found link https://pypi.python.org/packages/40/4e/54411cb5f7c69782304a7ab27ba9d7d9a3908cd68b67f6502137342d0d9c/urllib3-1.17-py2.py3-none-any.whl#md5=d59d42c6811c730649d66fbd4d4e22ca (from https://pypi.python.org/simple/urllib3/), version: 1.17
DEBUG:pip.index:Found link https://pypi.python.org/packages/41/06/c72e782e156dd722419915baeced8f3bdd0ae12aa58818b8e9497bc1d2d3/urllib3-1.11.tar.gz#md5=4cdfe9b51c181700f9c7beb84bb42770 (from https://pypi.python.org/simple/urllib3/), version: 1.11
DEBUG:pip.index:Found link https://pypi.python.org/packages/41/a7/5bda0eaea36dda6be079650f399d7713693d556ce71f0011d3881c6957c5/urllib3-1.12.tar.gz#md5=befd9dbb2c373681bd88710ba96abbdb (from https://pypi.python.org/simple/urllib3/), version: 1.12
DEBUG:pip.index:Found link https://pypi.python.org/packages/49/26/a7d12ea00cb4b9fa1e13b5980e5a04a1fe7c477eb8f657ce0b757a7a497d/urllib3-1.15.1.tar.gz#md5=5be254b0dbb55d1307ede99e1895c8dd (from https://pypi.python.org/simple/urllib3/), version: 1.15.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/4f/34/afb7336d1fdaaae1a93a172ebe12aa530ef2637e67ce6767d09c7bcc04b1/urllib3-1.6.tar.gz#md5=8ee95b963e151aba80de90ad1cc55487 (from https://pypi.python.org/simple/urllib3/), version: 1.6
DEBUG:pip.index:Found link https://pypi.python.org/packages/50/77/bfbf9cd637d50eb29d28211688d300b867b71eb614d11327dfb1cce073c8/urllib3-1.7.tar.gz#md5=a055b7f51b0c9ffadd7172c21b2885a3 (from https://pypi.python.org/simple/urllib3/), version: 1.7
DEBUG:pip.index:Found link https://pypi.python.org/packages/56/94/54bb6d49c05dca737102a15f0cef247f3b763e840172cbddedad5b6f64d7/urllib3-1.5.tar.gz#md5=3ee4b375a095bb6098f1ed75f8058e48 (from https://pypi.python.org/simple/urllib3/), version: 1.5
DEBUG:pip.index:Found link https://pypi.python.org/packages/57/65/9ad7a929e3d9b39709ac0c253dafbe2e2ddf66c6f49584f43e8b32f37252/urllib3-1.1.tar.gz#md5=389fd9d231e613b571a91b459f50041f (from https://pypi.python.org/simple/urllib3/), version: 1.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/5b/5a/bd0b868a3412429b10be936087a9e260f3a7373e18e2330118a58e98004d/urllib3-1.13.tar.gz#md5=80a5b59dfb9860857250a96b3cf564f2 (from https://pypi.python.org/simple/urllib3/), version: 1.13
DEBUG:pip.index:Found link https://pypi.python.org/packages/61/54/3f6149b3b9027f3386ad56816a3be83c201fe7bed1ba67a0ca249f1a8cb1/urllib3-1.16-py2.py3-none-any.whl#md5=3dfc4a65f15bb8fd42f236275168eeb4 (from https://pypi.python.org/simple/urllib3/), version: 1.16
DEBUG:pip.index:Found link https://pypi.python.org/packages/63/cb/6965947c13a94236f6d4b8223e21beb4d576dc72e8130bd7880f600839b8/urllib3-1.22-py2.py3-none-any.whl#md5=1c11e1c80371cc4e89911071010a98d1 (from https://pypi.python.org/simple/urllib3/), version: 1.22
DEBUG:pip.index:Found link https://pypi.python.org/packages/67/87/67be08389f8df83c9ba4c12e618a4ad93546e234a1e9530618735cd9b73d/urllib3-1.20-py2.py3-none-any.whl#md5=43fdf206d03cf3c20981b0f860452ea3 (from https://pypi.python.org/simple/urllib3/), version: 1.20
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/69/91/3a34efceef1b8d7d4a509c49343a6dcce6b9d53fd40c69515d7655f9d572/urllib3-1.10.3-py2-none-any.whl#md5=ae709e55fadd40ada64330ec4dad9d9e (from https://pypi.python.org/simple/urllib3/); it is not compatible with this Python
DEBUG:pip.index:Found link https://pypi.python.org/packages/6c/11/68602df8fb13daeb2b61e2dc3209c6d8a599af7943691dfa7d48f32ef69b/urllib3-1.14.tar.gz#md5=5e1407428ac33b521c71a7ac273b3847 (from https://pypi.python.org/simple/urllib3/), version: 1.14
DEBUG:pip.index:Found link https://pypi.python.org/packages/73/55/63deba73d82dfa39974ca3903110c3e3557ff8758a3a79482810915b385d/urllib3-1.14-py2.py3-none-any.whl#md5=8aaefe43e837daf2eff1d4a654917cf6 (from https://pypi.python.org/simple/urllib3/), version: 1.14
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/74/60/6c4f6e5de3394f25f6c87a521fd78a8f84260d88dbcb2a669f6a82133ac6/urllib3-1.10-py2-none-any.whl#md5=09a6469f5029f9e37812ebf86579fa21 (from https://pypi.python.org/simple/urllib3/); it is not compatible with this Python
DEBUG:pip.index:Found link https://pypi.python.org/packages/75/57/76c41db00e0a257ae7a648c2d74715eabf510a72298a0b969c574e163799/urllib3-1.2.tar.gz#md5=e62d42006807308fea9556c17af8e250 (from https://pypi.python.org/simple/urllib3/), version: 1.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/78/7c/4fdfe533e595854ab15b31a1116b2f9734796dfd7c5d3234d4927f88cc60/urllib3-1.12-py2.py3-none-any.whl#md5=f2d5530128e8935d22da26d9fc4e2b8c (from https://pypi.python.org/simple/urllib3/), version: 1.12
DEBUG:pip.index:Found link https://pypi.python.org/packages/7a/17/a23144c996748cc5136be27c9cdd0c1a16cdf93e81d948ef0e6140482bfb/urllib3-1.4.tar.gz#md5=fd844d20f5f58ad63cee308b2999d9c4 (from https://pypi.python.org/simple/urllib3/), version: 1.4
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/7e/db/e8f53e97768ced06c5d2841250a4abb2726611b3c06efe71227fcf264cc9/urllib3-1.10.2-py2-none-any.whl#md5=b889ff17dee521845f2c6446b975662e (from https://pypi.python.org/simple/urllib3/); it is not compatible with this Python
DEBUG:pip.index:Found link https://pypi.python.org/packages/82/c9/34a965c0c1ca6f982ea2f6820437d31271b86c9fddbe7576b49daf8c193c/urllib3-1.3.tar.gz#md5=6ae9acdaee2628b1c8b1de25b7e6c9da (from https://pypi.python.org/simple/urllib3/), version: 1.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/83/36/605e5ed6f7a117ffce6541cbe94e07495500f7713708783bedb1c98df2bd/urllib3-1.10.tar.gz#md5=9badc8f09ea2d3c36cbb5071bfe52ebd (from https://pypi.python.org/simple/urllib3/), version: 1.10
DEBUG:pip.index:Found link https://pypi.python.org/packages/8a/a5/f39d0c3333065807b2905d863fc46108a8d044db247d793c7fcffec1f6bc/urllib3-1.10.4.tar.gz#md5=517e6c293e1d144ff3e67486d69249c6 (from https://pypi.python.org/simple/urllib3/), version: 1.10.4
DEBUG:pip.index:Found link https://pypi.python.org/packages/8f/45/7434a6a44d42744b74fb969a39720f0c3d4f31f921737e51a69d8b15c859/urllib3-1.18.tar.gz#md5=1eadd93bd5e58d3528d977111f2997ea (from https://pypi.python.org/simple/urllib3/), version: 1.18
DEBUG:pip.index:Found link https://pypi.python.org/packages/90/37/437e3d89fa2314d69e0aef2e97b959b2b3431d616361d3ca4c06b271fdef/urllib3-1.0.1.tar.gz#md5=0cb196de48d13654c37a70a4cd73fc11 (from https://pypi.python.org/simple/urllib3/), version: 1.0.1
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/92/b7/37eabe93db6e719a69f9515c911ada4399afb88ea08b2cbfa864d846e5b7/urllib3-1.10.4-py2-none-any.whl#md5=4910c50d33f6657ef051a2df3cd2f613 (from https://pypi.python.org/simple/urllib3/); it is not compatible with this Python
DEBUG:pip.index:Found link https://pypi.python.org/packages/96/d9/40e4e515d3e17ed0adbbde1078e8518f8c4e3628496b56eb8f026a02b9e4/urllib3-1.21.1.tar.gz#md5=ef6c72c79b9c6bcd68c204f9b92abc86 (from https://pypi.python.org/simple/urllib3/), version: 1.21.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/9c/ed/c5fd0a26ba4c013a9320149edad93cf3440c6148fa6cc541d9b624ee398e/urllib3-0.3.tar.gz#md5=a6b2a75cef95b29c20a5f87a41f47296 (from https://pypi.python.org/simple/urllib3/), version: 0.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/9d/24/d9896ea827cdd3783f6bb4339ccca614411ee1ef4a0e11566ba81f190e66/urllib3-1.18-py2.py3-none-any.whl#md5=9c68b010f3262fa96ca373f4a4832da3 (from https://pypi.python.org/simple/urllib3/), version: 1.18
DEBUG:pip.index:Found link https://pypi.python.org/packages/a5/53/23aeac09ea963189abf72f38a6d1b951251178db5d9950b353492779d43e/urllib3-1.8.tar.gz#md5=d664781c08f98a83f28df087b6edfdca (from https://pypi.python.org/simple/urllib3/), version: 1.8
DEBUG:pip.index:Found link https://pypi.python.org/packages/ac/2a/fc9ac93901bdab0c4b48f86f2cc5ac9c249bbc030debb3fe9e5c0191833d/urllib3-1.18.1-py2.py3-none-any.whl#md5=e136266e9f26683abbd63df238945d9c (from https://pypi.python.org/simple/urllib3/), version: 1.18.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/b1/54/5b2f3d215a47f1a7fabb9f24d58135db9f4e9478a301ebf2b34f620518b2/urllib3-1.13.1-py2.py3-none-any.whl#md5=2927c42022bfe337c0ab422cefb2e15d (from https://pypi.python.org/simple/urllib3/), version: 1.13.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/b4/cb/0f195aa96fd63a4ef8b3578c67f56eb0804e394d9789080a8862c06c2f68/urllib3-1.19.1.tar.gz#md5=7c4edfc86680c8467cfab204ed4ab2dc (from https://pypi.python.org/simple/urllib3/), version: 1.19.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/bd/c5/d95aba2c7d87fa135df89f603c1ec2248c6f134d51395f3b4cf6d7774d40/urllib3-1.21-py2.py3-none-any.whl#md5=8fdb0120f36264625dbf7896a24a8b47 (from https://pypi.python.org/simple/urllib3/), version: 1.21
DEBUG:pip.index:Found link https://pypi.python.org/packages/be/90/3479e16866a61f973d37296d27dd56f923b3259950ff57ab865d3caf1ef1/urllib3-1.13-py2.py3-none-any.whl#md5=da9f2cf0cec5767d4aca10ce9d7c4b6a (from https://pypi.python.org/simple/urllib3/), version: 1.13
DEBUG:pip.index:Found link https://pypi.python.org/packages/c2/79/8851583070bac203561d21b9478340535893f587759608156aaca60a615a/urllib3-1.17.tar.gz#md5=12d5520f0fffed0e65cb66b5bdc6ddec (from https://pypi.python.org/simple/urllib3/), version: 1.17
DEBUG:pip.index:Found link https://pypi.python.org/packages/c8/f6/992ef6a35c792b2bc04d7cc0a27a8f6e00e56f5581e77b3fe9c53e1d6491/urllib3-1.0.2.tar.gz#md5=75f129b9c8923d85d9b2e02e59522843 (from https://pypi.python.org/simple/urllib3/), version: 1.0.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/d3/22/4cbcf82178d038efe03fc33093df8d0792c7e143748fc5bc3f43be4b83fe/urllib3-1.0.tar.gz#md5=f81b07c858ce6860480812724fabae12 (from https://pypi.python.org/simple/urllib3/), version: 1.0
DEBUG:pip.index:Found link https://pypi.python.org/packages/d6/19/7c20b00695f6f0c967edb5d63d73d5fc20803db739ed7b939a8ef2bbeb78/urllib3-1.10.3.tar.gz#md5=82fd4811f6164fcac0f8e959843c4a63 (from https://pypi.python.org/simple/urllib3/), version: 1.10.3
DEBUG:pip.index:Found link https://pypi.python.org/packages/d8/1f/7e5e7e7d36fa82c179085ef06c32abe2a1f8a25067e1724921f7e871da1a/urllib3-1.18.1.tar.gz#md5=30b6f366a691b7b5d2eb67d20932b77f (from https://pypi.python.org/simple/urllib3/), version: 1.18.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/dd/91/bc4deb900f263147fa8d600025ea938fe9c43c9fda43e3dc22e5008e6983/urllib3-1.9.tar.gz#md5=e035f0ccbf37ac0e7c0ebbc190e666a1 (from https://pypi.python.org/simple/urllib3/), version: 1.9
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/dd/f4/4b4f988ce627121c3a7695324bb314fed5fec02f202aac239c0f54ea42ba/urllib3-1.10.1-py2-none-any.whl#md5=ac10657400063b1c6286d1df26f3ccab (from https://pypi.python.org/simple/urllib3/); it is not compatible with this Python
DEBUG:pip.index:Found link https://pypi.python.org/packages/e3/3d/b1702870ac6959af840f2249eb4bf64acb11279612b4da90079a4044db11/urllib3-1.2.2.tar.gz#md5=76619fab345d8e66411e2fffe336be63 (from https://pypi.python.org/simple/urllib3/), version: 1.2.2
DEBUG:pip.index:Found link https://pypi.python.org/packages/e4/97/716fb40e72ceea3944e7a2ec908f3d72c232e8dc1a4030569742bee08884/urllib3-1.15-py2.py3-none-any.whl#md5=321a17dd16178c4a9efd6755c4b8e872 (from https://pypi.python.org/simple/urllib3/), version: 1.15
DEBUG:pip.index:Found link https://pypi.python.org/packages/ea/11/0c858701745b76148b292406fcee31fa7f39c28aae18ac7d75792ac6d433/urllib3-1.15.1-py2.py3-none-any.whl#md5=00a5541c03971b9a3a2b6517e8da4869 (from https://pypi.python.org/simple/urllib3/), version: 1.15.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/ee/11/7c59620aceedcc1ef65e156cc5ce5a24ef87be4107c2b74458464e437a5d/urllib3-1.22.tar.gz#md5=0da7bed3fe94bf7dc59ae37885cc72f7 (from https://pypi.python.org/simple/urllib3/), version: 1.22
DEBUG:pip.index:Found link https://pypi.python.org/packages/ee/16/7eeb3da799c044c7394158cbfaaaf8ac1cb3bb716bf251ee9a6ca09614c5/urllib3-1.13.1.tar.gz#md5=380bde6575f53196119ddacfb5b8a6fd (from https://pypi.python.org/simple/urllib3/), version: 1.13.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/fd/33/620c8778d72eb919f5d5518dc28ae634253bc0ecfdf342b5d76a291b1ddc/urllib3-1.2.1.tar.gz#md5=c6266e26ce8851862a7273bca850bee1 (from https://pypi.python.org/simple/urllib3/), version: 1.2.1
DEBUG:pip.index:Found link https://pypi.python.org/packages/ff/45/7b5d82c483634b6b4cd94392a07c94d36255402286098b7fb10b6cb88e6a/urllib3-1.19.1-py2.py3-none-any.whl#md5=c1c9adaec813c5d1ce62ce6fb2c5ad02 (from https://pypi.python.org/simple/urllib3/), version: 1.19.1
RESULTS:
[{"name": "requests", "version": "2.18.4", "hashes": ["sha256:6a1b267aa90cac58ac3a765d067950e7dbbf75b1da07e895d1f594193a40a38b", "sha256:9c443e7324ba5b85070c4a818ade28bfabedf16ea10206da1132edaa6dda237e"]}, {"name": "future", "version": "0.16.0", "hashes": ["sha256:e39ced1ab767b5936646cedba8bcce582398233d6a627067d4c6a454c90cfedb"]}, {"name": "chardet", "version": "3.0.4", "hashes": ["sha256:fc323ffcaeaed0e0a02bf4d117757b98aed530d9ed4531e3e15460124c106691", "sha256:84ab92ed1c4d4f16916e05906b6b75a6c0fb5db821cc65e70cbd64a3e2a5eaae"]}, {"name": "django-oidc-provider", "version": "0.5.2", "hashes": ["sha256:9981855f2965893c053353bd7d0a8bb7217f92d8fc94178ae9dd6bad5120a271"]}, {"name": "certifi", "version": "2018.1.18", "hashes": ["sha256:14131608ad2fd56836d33a71ee60fa1c82bc9d2c8d98b7bdbc631fe1b3cd1296", "sha256:edbc3f203427eef571f79a7692bb160a2b0f7ccaa31953e99bd17e307cf63f7d"]}, {"name": "pyjwkest", "version": "1.4.0", "hashes": ["sha256:128e3c81d02993ac4cd7e29ef7aac767d91daa59380e6883ae589092945e4aad"]}, {"name": "idna", "version": "2.6", "hashes": ["sha256:8c7309c718f94b3a625cb648ace320157ad16ff131ae0af362c9f21b80ef6ec4", "sha256:2c6a5de3089009e3da7c5dde64a141dbc8551d5b7f6cf4ed7c2568d0cc520a8f"]}, {"name": "urllib3", "version": "1.22", "hashes": ["sha256:06330f386d6e4b195fbfc736b297f58c5a892e4440e54d294d7004e3a9bbea1b", "sha256:cc44da8e1145637334317feebd728bd869a35285b93cbb4cca2577da7e62db4f"]}, {"name": "six", "version": "1.11.0", "hashes": ["sha256:832dc0e10feb1aa2c68dcc57dbb658f1c7e65b9b61af69048abc87a2db00a0eb", "sha256:70e8a77beed4562e7f14fe23a786b54f6296e34344c23bc42f07b15018ff98e9"]}, {"name": "pycryptodomex", "version": "3.5.1", "hashes": ["sha256:2f71dc2b91288cf4a164287858eaccdc7053bf5765ebc47c5188f94eccc35e80", "sha256:a7d836d6284c4734841c7c9d851be546650302ebca281de851129c22f1298ad5", "sha256:729da9aa2b8ea0bd8e35bc89ecd1ff4e482e6e9c2275e2e19de8b68dd8156fb5", "sha256:e303a4a1b242d3277e8dea07ab4e3737d0d1ed122990c713d6f88b0dda10c378", "sha256:bf2e6cf6e78c8e6d63eeaa9641cad5008a382af98f2dc25cb7c6444f13133df9", "sha256:16ab612ca9164e971dc00f8fe895ac835e8bfe64c3174b368f80172ff5a98300", "sha256:91b87c3abb24da1a980cb0f05e150eb0525235129bc5cb59277ea96860677f0a", "sha256:563512542dcab3e95d8cef70e45cc5a43ef35ff84bc040c388b305015343e51e", "sha256:5d058decae88f86833a430afc0517df815d9efa4255b3a6d576c7fb305cb56d4", "sha256:e75e7fe725dd5989e89da25a2fe7e3d35ed8123ac30eaae2f2340d0ba0431a88", "sha256:2f81caf3ee08f00a957fd074c33430e8781958c616e864c5a1e709fb954750bc", "sha256:2a55e8fd69c84287b44e2c9c07eaad314e76680b86e873774314c27266728670", "sha256:3d4c77f1d4273ae753e49dac5c916f2278b0dd354a0c5f2a29fcf88bbae4efa9", "sha256:f0ca00abf69827e78415050780cf838c7af9f378e591611210e25a03d6d0ea90", "sha256:299a79efba6152ea438cc37f7349161e7bbd914f918342cad6316a4a5f29f2d7", "sha256:82df0a7cda5c94e9e4c62fb8d6507d5418f6593c8ed1b40b538a771ca003b597", "sha256:eac46844350302c93f3fd3eaa37353ee9e25cffcd1c574dfffb22de157ddce17", "sha256:67f6573ff84ce7f7ea8ffc01ba5821c15dc85bf43291e4f8e11d7b6e2d5f504e", "sha256:a02b1b17d7c86b12bc1d4ede75846a7971e7df6d75508cd0696e383c18cad4ce", "sha256:e378bd7a09257a7a9a58f7f04b088991cf23a99847e9f42d6f996b4e52a11c33", "sha256:5ec5903197d256b4559ff5c6a4756c34219ec81aff92be1174681623ba1e6383", "sha256:a36d5a5b73e51d66e3f1da53ce00e56de860a9c529f2811bb8d95374d9da06df", "sha256:bb60d38111ebc383a5a1c909545562926c66c846d03fc65ba7b8a3487cb23078"]}]

Ya, seperti itulah tampilan 0.5.3 di mesin saya.

Oke, jadi Anda perlu menghapus cache pip Anda. Biarkan saya mencari tahu bagaimana melakukannya :)

di MacOS: ~/Library/Caches/pip .

Saya akan mencatat bahwa saya mendapat masalah yang sama dengan build Docker dari proyek tempat saya menemukan masalah.

Saya menduga kelucuan Fastly.

Menghapus cache pip tidak menyelesaikannya. Harus masalah CDN / PyPI. Aku hanya harus menunggu yang satu ini.

Saya akan terus mengabari Anda jika saya mengetahui sesuatu.

@kennethreitz bagaimana jika itu bukan masalah dengan cache pip tetapi cache http di pypi json api?

tidak, output verbose-nya akan berisi banyak informasi lagi

Juga pipenv / pip-tools cache di $PIPENV_CACHE_DIR alias ~/Libraries/Caches/pipenv mungkin di osx?

Dia mengunci --clear

Saya mengalami kesulitan menentukan di mana cache tepi akan terletak berdasarkan output. Saya melihat semua data untuk 0,5.3 dalam output debug ketika mencoba menginstal dan informasi ketergantungan sama sekali bukan bagian dari halaman JSON.

Jika Anda mengetahui di mana CDN berbohong kepada Anda, saya akan dengan senang hati menyelidiki lebih lanjut. Karena saya melihat pembersihan cache penuh yang berhasil untuk proyek penyedia Django-oidc dan data yang benar dari berbagai sudut pandang.

Saya tidak terbiasa dengan PyPI JSON API, jadi bisakah seseorang memberi saya URL untuk dicoba? Terima kasih!

Menariknya, ia tidak memiliki dependensi yang terdaftar di JSON API! Ini mungkin bug di pihak kami.

Kami sedang melakukan penyatuan dua set (satu dari pypi json, satu dari piptools resolver), dan saya ingin tahu apakah urutannya salah pada penyatuan, atau kami perlu membuat penggabungan itu lebih cerdas.

Aku akan menyelidiki.

Ya, saya melihat melalui tanggapan dan saya tidak melihat ada yang salah (mengingat @ewdurbin mengatakan dependensi tidak terdaftar).

Terima kasih @kennethreitz. Kamu mungkin berencana untuk melakukan sesuatu. Senang menguji apa pun di pihak saya.

mungkinkah Anda berbicara dengan gudang?

ewdurbin$ curl -s https://pypi.python.org/pypi/django-oidc-provider/json | jq '.info.requires_dist'
null
ewdurbin$ curl -s https://pypi.org/pypi/django-oidc-provider/json | jq '.info.requires_dist'
[]

itu sepertinya bug besar :)

oh kita pasti sedang berbicara dengan gudang

@kennethreitz jika itu masalah melakukan serikat tidak akan menjadi masalah bagi Anda juga?

saya pikir saya memperbaikinya di master

dan dirilis — dapatkah Anda mencoba ini lagi?

(jika Anda mendapatkan hasil yang sama, saya tidak akan terkejut)

Tidak ada perubahan.

Versi Pipenv: '11.2.2'

Lokasi Pipenv: '/Users/brian/.local/venvs/pipenv/lib/python3.6/site-packages/pipenv'

Lokasi Python: '/Users/brian/.local/venvs/pipenv/bin/python'

Instalasi Python lainnya di PATH :

  • 2.7 : /Users/brian/.pyenv/shims/python2.7
  • 2.7 : /Users/brian/.pyenv/shims/python2.7
  • 2.7 : /usr/bin/python2.7
  • 3.6 : /Users/brian/.pyenv/shims/python3.6m
  • 3.6 : /Users/brian/.pyenv/shims/python3.6
  • 3.6 : /usr/local/bin/python3.6

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

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

Informasi PEP 508:

{'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'}

Variabel lingkungan sistem:

  • TERM_SESSION_ID
  • SSH_AUTH_SOCK
  • Apple_PubSub_Socket_Render
  • COLORFGBG
  • ITERM_PROFILE
  • XPC_FLAGS
  • LANG
  • PWD
  • SHELL
  • TERM_PROGRAM_VERSION
  • TERM_PROGRAM
  • PATH
  • COLORTERM
  • TERM
  • HOME
  • TMPDIR
  • USER
  • XPC_SERVICE_NAME
  • LOGNAME
  • __CF_USER_TEXT_ENCODING
  • ITERM_SESSION_ID
  • SHLVL
  • OLDPWD
  • NVM_DIR
  • NVM_CD_FLAGS
  • NVM_BIN
  • PYENV_ROOT
  • PYENV_SHELL
  • EDITOR
  • PYTHONDONTWRITEBYTECODE
  • GPGKEY
  • SSH_KEY_PATH
  • CLICOLOR
  • LSCOLORS
  • VIRTUAL_ENV_DISABLE_PROMPT
  • PYTHONSTARTUP
  • GPG_TTY
  • GIT_PS1_SHOWDIRTYSTATE
  • _
  • PIP_PYTHON_PATH
  • PYTHONUNBUFFERED

Variabel lingkungan spesifik Pipenv:

Variabel lingkungan khusus debug:

  • PATH : /Users/brian/.local/bin:/Users/brian/.cargo/bin:/Users/brian/.config/yarn/global/node_modules/.bin:/Applications/Postgres.app/Contents/Versions/latest/bin:/usr/local/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/bin:/Users/brian/.pyenv/shims:/Users/brian/.pyenv/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin
  • SHELL : /usr/local/bin/zsh
  • EDITOR : nvim
  • LANG : en_US.UTF-8
  • PWD : /Users/brian/o

Isi Pipfile ('/Users/brian/o/Pipfile'):

[[source]]

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


[packages]

django-oidc-provider = "*"


[dev-packages]



[requires]

python_version = "3.6"

Isi Pipfile.lock ('/Users/brian/o/Pipfile.lock'):

{
    "_meta": {
        "hash": {
            "sha256": "c9edf25ec27dba42bb0e2a4bedbbbc4481eed9dae2b64f565d0e25d437b7fee4"
        },
        "pipfile-spec": 6,
        "requires": {
            "python_version": "3.6"
        },
        "sources": [
            {
                "name": "pypi",
                "url": "https://pypi.python.org/simple",
                "verify_ssl": true
            }
        ]
    },
    "default": {
        "django-oidc-provider": {
            "hashes": [
                "sha256:963b39ebc1e289e1812d462eb5913a0dd4e6ac1d6f178581b411fa838b3f62b1"
            ],
            "version": "==0.5.3"
        }
    },
    "develop": {}
}

Ini sangat aneh, dan tidak dapat direproduksi.

Saya pikir saya melihat banyak hal yang sama.

$ pipenv --version
pipenv, version 11.3.1


$ pipenv menginstal bokeh

 Membuat virtualenv untuk proyek ini…
 Menggunakan /usr/bin/python3.6 (3.6.4) untuk membuat virtualenv…
 Sudah menggunakan juru bahasa /usr/bin/python3.6
 Menggunakan awalan dasar '/ usr'
 Python baru dapat dieksekusi di /home/centos/.local/share/virtualenvs/test-boIfay_Q/bin/python3.6
 Juga membuat executable di /home/centos/.local/share/virtualenvs/test-boIfay_Q/bin/python
 Instalasi setuptools, pip, wheel...selesai.

 Lokasi virtualenv: /home/centos/.local/share/virtualenvs/test-boIfay_Q
 Membuat Pipfile untuk proyek ini…
 Memasang bokeh…
 Mengumpulkan bokeh
 Mengumpulkan enam>=1.5.2 (dari bokeh)
 Menggunakan cache six-1.11.0-py2.py3-none-any.whl
 Mengumpulkan Jinja2>=2,7 (dari bokeh)
 Menggunakan Jinja2-2.10-py2.py3-none-any.whl yang di-cache
 Mengumpulkan PyYAML>=3.10 (dari bokeh)
 Mengumpulkan python-dateutil>=2.1 (dari bokeh)
 Menggunakan cache python_dateutil-2.6.1-py2.py3-none-any.whl
 Mengumpulkan tornado>=4.3 (dari bokeh)
 Mengumpulkan numpy>=1.7.1 (dari bokeh)
 Menggunakan cache numpy-1.14.1-cp36-cp36m-manylinux1_x86_64.whl
 Mengumpulkan kemasan>=16.8 (dari bokeh)
 Menggunakan kemasan yang di-cache-17.1-py2.py3-none-any.whl
 Mengumpulkan MarkupSafe>=0.23 (dari Jinja2>=2.7->bokeh)
 Mengumpulkan pyparsing>=2.0.2 (dari kemasan>=16.8->bokeh)
 Menggunakan cache pyparsing-2.2.0-py2.py3-none-any.whl
 Menginstal paket yang dikumpulkan: enam, MarkupSafe, Jinja2, PyYAML, python-dateutil, tornado, numpy, pyparsing, pengemasan, bokeh
 Berhasil menginstal Jinja2-2.10 MarkupSafe-1.0 PyYAML-3.12 bokeh-0.12.14 numpy-1.14.1 packaging-17.1 pyparsing-2.2.0 python-dateutil-2.6.1 six-1.11.0 tornado-5.0

 Menambahkan bokeh ke [paket] Pipfile…
 Pipfile.lock tidak ditemukan, membuat…
 Mengunci dependensi [paket dev]…
 Mengunci dependensi [paket]…
 Diperbarui Pipfile.lock (6e77de)!
 Menginstal dependensi dari Pipfile.lock (6e77de)…
 1/1 — 00:00:00
 Untuk mengaktifkan virtualenv proyek ini, jalankan yang berikut ini:
 $pipenv shell
 $ pipenv jalankan pip freeze
 bokeh==0.12.14
 Jinja2==2.10
 MarkupSafe==1.0
 numpy == 1.14.1
 kemasan == 17.1
 pyparsing == 2.2.0
 python-dateutil==2.6.1
 PyYAML==3.12
 enam == 1.11.0
 angin puting beliung==5.0

File kunci yang dihasilkan:

{
    "_meta": {
        "hash": {
            "sha256": "bc5aaeeed8874bba8ad6a924841326e64df10b8219250099474f86ca3e6e77de"
        },
        "pipfile-spec": 6,
        "requires": {
            "python_version": "3.6"
        },
        "sources": [
            {
                "name": "pypi",
                "url": "https://pypi.python.org/simple",
                "verify_ssl": true
            }
        ]
    },
    "default": {
        "bokeh": {
            "hashes": [
                "sha256:42abada2e484d2d5b290d14a943e1c3cd7adabd39933b5f074f57b6cf7920a87"
            ],
            "version": "==0.12.14"
        }
    },
    "develop": {}
}


pipenv-resolver setelah membersihkan ~/.cache/pip

$ pipenv-resolver bokeh --debug
DEBUG:pip.index:1 lokasi untuk mencari versi bokeh:
DEBUG:pip.index:* https://pypi.python.org/simple/bokeh/
DEBUG:pip.index:Mendapatkan halaman https://pypi.python.org/simple/bokeh/
DEBUG:pip._vendor.cachecontrol.controller:Mencari "https://pypi.python.org/simple/bokeh/" di cache
DEBUG:pip._vendor.cachecontrol.controller:Tidak ada entri cache yang tersedia
INFO:pip._vendor.requests.packages.urllib3.connectionpool: Memulai koneksi HTTPS baru (1): pypi.python.org
DEBUG:pip._vendor.requests.packages.urllib3.connectionpool:"GET /simple/bokeh/ HTTP/1.1" 200 4205
DEBUG:pip._vendor.cachecontrol.controller:Memperbarui cache dengan respons dari "https://pypi.python.org/simple/bokeh/"
DEBUG:pip._vendor.cachecontrol.controller: Caching tanggal b/c ada dan usia maks > 0
DEBUG:pip.index:Menganalisis tautan dari halaman https://pypi.python.org/simple/bokeh/
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/01/bc/a24cad8d3d9cb8de5d1d2157ee63658f9a6ee395c5c0b5cc0f994131bf09/bokeh-0.8.2.zip#md5=b48ab47091ebde. /bokeh/), versi: 0.8.2
(DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/0c/88/c5acce99153de32addddbb5361e4fea4fb6ef2b2f067fb919cca4d47ef88/bokeh-0.12.11.tar.gz#md5=c3dfdc56e866. /sederhana/bokeh/), versi: 0.12.11
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/12/52/d2583420188873bc1bc324ececbf6bf2ef1d19e6a82aa08360385325efef/bokeh-0.5.0.tar.gz#md5=4e0ca58ffaf370aefef3b56. /sederhana/bokeh/), versi: 0.5.0
(DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/13/0f/d7ea9648b86f68124d011e05ab30902226b5e7249c0c9145816f6e7f0257/bokeh-0.9.3.tar.gz#md5=2bddarimd431319f623c /sederhana/bokeh/), versi: 0.9.3
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/13/c2/28f9e8ca31c4f2a0bc33510366ee96ce69aad6a6f2d900d3903bcb39de38/bokeh-0.10.0.zip#md5=1432ed7d3034ce0c16c16c. /bokeh/), versi: 0.10.0
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/13/e0/0cb23fb464441174f49c27e2c55c3e9154667bd3d9161eaa4586ad4bcf6e/bokeh-0.8.0.zip#md5=8f75a61d9be81feth16. /bokeh/), versi: 0.8.0
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/15/78/4b036e5b04c29fd2fdc50f5c3f3c3e47ad7457f3fbc275a8296db0c38a94/bokeh-0.12.1.tar.gz#md5=org5fa0af /sederhana/bokeh/), versi: 0.12.1
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/1a/89/2d8c11e55da0fcff478361234698e597dae005d4bfb277f2f831ceb621bd/bokeh-0.6.0.zip#md5=3fbd1c34913035baf /bokeh/), versi: 0.6.0
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/1c/42/e970b594aed32976ac23200808611a1a8113b36095aa23e10c03928b6a18/bokeh-0.12.3.zip#md5=76bd8ee70798fe6d8821046203c /bokeh/), versi: 0.12.3
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/22/c4/5eede1a79e923c93182b45dabc02e1df11dc90cdff454103ec4770fcd7e8/bokeh-0.6.0.tar.gz#md5=f95020388ea851cpy /sederhana/bokeh/), versi: 0.6.0
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/30/92/9d92a2fcfe4e9633dd2e2de246b3fa7668450fa4c3237542118502c7e7a7/bokeh-0.3.tar.gz#md5=81fb90108953ad17c0078. /bokeh/), versi: 0.3
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/37/79/4a5e54f5c014d7d84a1159c494779f2b923d24d44c72203217f6e70165a0/bokeh-0.11.0.tar.gz#md5=16064e126bce03506cadd126b7orgc0ca4py /sederhana/bokeh/), versi: 0.11.0
(DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/45/6c/6d1ad9da2e713f69d3df6e4e5eb3e8f971db03e66f3154c9e5ab142a6bd8/bokeh-0.12.6.tar.gz#md5://a287aa11frompy422a287aa /sederhana/bokeh/), versi: 0.12.6
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/45/c7/c0738637a16e4174ab7ec5f7f487786b9217846f1f2245358e368633682e/bokeh-0.12.0.tar.gz#md5=7c50e4orga4afc42c /sederhana/bokeh/), versi: 0.12.0
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/53/45/b3e7df7aeae95f827fa99bba50dfb4546b0ad8b06472b768c615f824a0ce/bokeh-0.11.1.tar.gz#md5=b9002689668732 /sederhana/bokeh/), versi: 0.11.1
DEBUG:pip.index: Tautan yang ditemukan https://pypi.python.org/packages/54/39/37118ca92786a1b5b6fd2735c41fba603fd8292c0c1ede02b2838a821e08/bokeh-0.9.1.zip#md5=b78a77cdcdc0c1ede02b2838a821e08/bokeh-0.9.1.zip#md5=b78a77cdcdc478cddc /bokeh/), versi: 0.9.1
(DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/5f/59/f1983e4cb2a07440d1a507793561a3e4993e2bf5363fa762e32afc43e3d6/bokeh-0.8.1.tar.gz#md5=3db46ea1538apy. /sederhana/bokeh/), versi: 0.8.1
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/68/be/cd27d86f6f6440c5b697a65c42ae5c40c0da0607e49d24829837279c09df/bokeh-0.6.1.zip#md5=971a85c26ca1562. /bokeh/), versi: 0.6.1
(DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/6c/f5/6a4b75f5f7c35771b172994c5b5642dd0f923d781b8eb7a9167339eb63b4/bokeh-0.12.4.tar.gz#md5=8258pya5ce7a. /sederhana/bokeh/), versi: 0.12.4
(DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/71/e3/0b41cd3be31d54f02367457565052d426bbc802779021e09e445de0b9298/bokeh-0.8.0.tar.gz#md5=d1e58639fe1b5376c /sederhana/bokeh/), versi: 0.8.0
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/73/8c/8e5a460301c782eb792787b7db3faa92237d5ad752b921efeb704acecfb2/bokeh-0.6.1.tar.gz#md5=104693e3e72290db1 /sederhana/bokeh/), versi: 0.6.1
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/73/a3/4f66b577b27a627e42253b1ff7c47cef946a0859b911ab2c454454e6a98b/bokeh-0.7. /simple/bokeh/), versi: 0.7.1
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/75/71/c4bb873d79b8818494a1cfc4981f8df0cad59f03dc1bc8a2ba1f22283ce0/bokeh-0.4.4.tar.gz#md5=689654969orgec54ddb /sederhana/bokeh/), versi: 0.4.4
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/7b/81/6422f47023358a749cf7d5f7a748410cc933af3c9726383189b6c84254e3/bokeh-0.12.2.zip#md5=3497336a01cac3f999ee.org /bokeh/), versi: 0.12.2
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/7e/6a/66925127f71868d0665a8f332218aff3f3187f8c7bd617dddeb14e90d422/bokeh-0.7.0.tar.gz#md5=fe6874d4e2347b4498b29py /simple/bokeh/), versi: 0.7.0
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/80/da/120e4becdce302d700c27a2b27873838a032e5e780710f2fdd75cf0433b4/bokeh-0.2.tgz#md5=fa17b2bdae75515de4capy /), versi: 0.2
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/96/20/0d94a6aba5aba3aee5f4f02e44f17438c0a496dec725415b8d3946a61663/bokeh-0.4.4.zip#md5=5e1274de97898269dab221. /bokeh/), versi: 0.4.4
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/a3/bc/39b865de571b8c890f226a9ee0cc3a5e4967829f6ff9dd3d78155393860f/bokeh-0.12.9.tar.gz#md5=ecc02510313295 /sederhana/bokeh/), versi: 0.12.9
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/a7/49/fd84d75aa1765db2e3ba897a35f835bcf9464ce5808392cc8e0a5e559320/bokeh-0.11.1.zip#md5=a3476da9397deb55677032 /bokeh/), versi: 0.11.1
(DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/a8/07/180695d26a55c4c4f4ed1deb0b46bb47297032b37ae007b690fd56dffbfc/bokeh-0.12.7.tar.gz#md5=dbc5977b423ef53. /sederhana/bokeh/), versi: 0.12.7
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/ae/8d/7b185f911c3e8456fadea5cf35111903c23beec469b401ff6e9049360b56/bokeh-0.12.1.zip#md5=94dc25a56ce4cfe35a03d24c9768 /bokeh/), versi: 0.12.1
DEBUG:pip.index: Tautan yang ditemukan https://pypi.python.org/packages/b1/ed/32a32155675dfad0b75744e0d5e00015cfcc942ad95d593138271ed6902d/bokeh-0.4.tar.gz#md5=9b4c82c77e1463b044556 /bokeh/), versi: 0.4
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/b2/fe/a154d2d8ca86c3e3c16174cdd32c502de1845bd53bf72ef2097b7494de11/bokeh-0.7. /bokeh/), versi: 0.7.1
(DEBUG:pip.index:Tautan ditemukan https://pypi.python.org/packages/b3/bb/b989978587b7c6454c8e64c6cc90201c279b42d3fb5008d4d86157652647/bokeh-0.5.1.tar.gz#md5=cbb256d26a5a /sederhana/bokeh/), versi: 0.5.1
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/ba/78/7c168c43e270bb07e41bf1d12a67fd2137eca16ec9303ec6dc488639cdf3/bokeh-0.5.1.zip#md5=c75dba1eaae99ee235968637c6 /bokeh/), versi: 0.5.1
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/bb/4a/ce1c3b469fb3a74146ae887cafbd1a6ebacafc4d50b332e565570451b842/bokeh-0.12.13.tar.gz#md5=3b9e72d819 /sederhana/bokeh/), versi: 0.12.13
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/c2/86/5c233b17c87ac9206b7839d966396c5eb1e30c915dde6b85e4abe1fded7f/bokeh-0.8.2.tar.gz#md5=7f6043d1d008 /sederhana/bokeh/), versi: 0.8.2
(DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/c7/44/73ba873be72bb2d0faab6c36e0b02ec094b7579a8459790bc30cf72143e4/bokeh-0.9.2.tar.gz#md5=cd1from746254e4429. /sederhana/bokeh/), versi: 0.9.2
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/cb/b8/274dd0f01c9a97ca250c3a1f6abdd2b4714e0f88a05a4e8c16ab32c2eb53/bokeh-0.4.1.tar.gz#md5=c7b89102d285 /sederhana/bokeh/), versi: 0.4.1
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/d0/07/4ffe0142e23c8b4bad1eac885b4291b76207f57926a894f1c38b869f07fd/bokeh-0.10.0.tar.gz#md5=23a03449505840cbbaf9e66. /sederhana/bokeh/), versi: 0.10.0
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/d0/eb/ac682378c97394339127663f2b1f1337aee4ce242c9c3224f8604db05835/bokeh-0.9.1.tar.gz#md5=a9b28415f20726fd4baonddpi. /sederhana/bokeh/), versi: 0.9.1
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/d1/d6/29c4e57ea8489d28cdc2307cfd668c16ccab25cce9987b78d517a1532db4/bokeh-0.5.2.tar.gz#md5=e2494d7daccc. /sederhana/bokeh/), versi: 0.5.2
(DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/d2/5f/486973c6f676405dda81fa83b18801e41e5a8541d5907150ddc8cb8a3cc1/bokeh-0.4.2p1.tar.gz#md5=bcdba476be8d /simple/bokeh/), versi: 0.4.2p1
(DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/d4/2e/6fff9f6dd869127592a2d9f2d678aaa60bfe8cfcd57f132c0d2228d4cd6a/bokeh-0.12.3.tar.gz#md5=8e3433e2d /sederhana/bokeh/), versi: 0.12.3
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/d8/ce/83320bfd330316a7f3aa8e422e2c9d18723b2e88631190f80a8613135e16/bokeh-0.9.2.zip#md5=335f41a757f9880d /bokeh/), versi: 0.9.2
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/dc/3f/3f8bc31e3b8c7a2164ac30890657d90c08da8b151ccf5c410a442b62195c/bokeh-0.12.0.zip#md5=6b529fromb0c5cef85c /bokeh/), versi: 0.12.0
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/de/11/f5612c70aab61bfe7b8df2be7974dcd57b4f6b843ba43b7bc5d8a3c0ad0c/bokeh-0.11.0.zip#md5=bb0fromc8b12eb2115 /bokeh/), versi: 0.11.0
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/de/5d/88a95eacebbd863e77f78cc47152955c8afe28dc4ed1fe243fc3fb40ceb4/bokeh-0.12.2.tar.gz#md5=2d1621bffeorge2abpy /sederhana/bokeh/), versi: 0.12.2
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/e3/e2/b379c5bfe337746ebd7919df14a68c35e5d78e31689adb96b32067d51362/bokeh-0.12.5.tar.gz#md5=53bb53darib852e5c /sederhana/bokeh/), versi: 0.12.5
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/e5/9b/09e3907c8ff6a567554e517b06316fabc1228e34a0becb677c68aa7aaecd/bokeh-0.9.3.zip#md5=8d6a8224f83dimpled /bokeh/), versi: 0.9.3
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/ea/90/4933ed34e55c7d4ee3692b34cdb97bd8f51555ea15f8dd75cf898b9bd1f4/bokeh-0.9.0.zip#md5=d5a14fcd/533593d /bokeh/), versi: 0.9.0
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/ea/f5/7a6e2b6c7bdd320facf839e283669fd48c722670f177b5a7d97837471e7c/bokeh-0.8.1.zip#md5=ed8dd76ffrom8f3872089d00 /bokeh/), versi: 0.8.1
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/ec/24/798c20d9cd1a981e4815fa945c9886d2ac327b8187aae2b532cacb8dcb1e/bokeh-0.7.0.zip#md5=f740e16291f77998 /bokeh/), versi: 0.7.0
(DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/ed/ce/bc531f42fb6aba4df5bb968cd134469e5c6bcaef845a1f6f8b4e1ac881eb/bokeh-0.9.0.tar.gz#md5=94d55a2878dpifba17ad. /sederhana/bokeh/), versi: 0.9.0
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/ee/70/a189fc0cf14940bfb3d21fa54765f4b230e7a512fba5342b2920c824a43f/bokeh-0.5.0.zip#md5=b37881acdea9038c /bokeh/), versi: 0.5.0
(DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/f3/3c/1fda6c0d67b58a0a6dad907f3bc942adc6e600516a1b1a10d054d2039b10/bokeh-0.12.10.tar.gz#md5b://org /sederhana/bokeh/), versi: 0.12.10
(DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/f3/b1/69d6b3544de4d31d7b735e6e3e075afc8ef962c4e1bce93cb4252632122f/bokeh-0.12.14.tar.gz#md5=ca5cbb00onpy.gz#md5=ca5cbb00 /sederhana/bokeh/), versi: 0.12.14
(DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/fb/8b/f294caf3b9c4508c9e87eff15f9dbda0996a21f1014488a27cd1ba819e40/bokeh-0.5.2.zip#md5=8bbfc141c3d324 /bokeh/), versi: 0.5.2
DEBUG:pip.index:1 lokasi untuk mencari versi bokeh:
DEBUG:pip.index:* https://pypi.python.org/simple/bokeh/
DEBUG:pip.index:Mendapatkan halaman https://pypi.python.org/simple/bokeh/
DEBUG:pip._vendor.cachecontrol.controller:Mencari "https://pypi.python.org/simple/bokeh/" di cache
DEBUG:pip._vendor.cachecontrol.controller:Usia saat ini berdasarkan tanggal: 0
DEBUG:pip._vendor.cachecontrol.controller:Freshness lifetime dari max-age: 600
DEBUG:pip._vendor.cachecontrol.controller:Freshness lifetime dari request max-age: 600
DEBUG:pip._vendor.cachecontrol.controller:Responsnya "segar", mengembalikan respons yang di-cache
DEBUG:pip._vendor.cachecontrol.controller:600 > 0
DEBUG:pip.index:Menganalisis tautan dari halaman https://pypi.python.org/simple/bokeh/
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/01/bc/a24cad8d3d9cb8de5d1d2157ee63658f9a6ee395c5c0b5cc0f994131bf09/bokeh-0.8.2.zip#md5=b48ab47091ebde. /bokeh/), versi: 0.8.2
(DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/0c/88/c5acce99153de32addddbb5361e4fea4fb6ef2b2f067fb919cca4d47ef88/bokeh-0.12.11.tar.gz#md5=c3dfdc56e806org. /sederhana/bokeh/), versi: 0.12.11
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/12/52/d2583420188873bc1bc324ececbf6bf2ef1d19e6a82aa08360385325efef/bokeh-0.5.0.tar.gz#md5=4e0ca58ffaf370aefef3b56. /sederhana/bokeh/), versi: 0.5.0
(DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/13/0f/d7ea9648b86f68124d011e05ab30902226b5e7249c0c9145816f6e7f0257/bokeh-0.9.3.tar.gz#md5=2bd42211319f623c /sederhana/bokeh/), versi: 0.9.3
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/13/c2/28f9e8ca31c4f2a0bc33510366ee96ce69aad6a6f2d900d3903bcb39de38/bokeh-0.10.0.zip#md5=1432ed7d3034ce0c16c16c. /bokeh/), versi: 0.10.0
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/13/e0/0cb23fb464441174f49c27e2c55c3e9154667bd3d9161eaa4586ad4bcf6e/bokeh-0.8.0.zip#md5=8f75a61d9be81feth16. /bokeh/), versi: 0.8.0
DEBUG:pip.index: Tautan yang ditemukan https://pypi.python.org/packages/15/78/4b036e5b04c29fd2fdc50f5c3f3c3e47ad7457f3fbc275a8296db0c38a94/bokeh-0.12.1.tar.gz#md5=org /sederhana/bokeh/), versi: 0.12.1
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/1a/89/2d8c11e55da0fcff478361234698e597dae005d4bfb277f2f831ceb621bd/bokeh-0.6.0.zip#md5=3fbd1c34913035baf /bokeh/), versi: 0.6.0
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/1c/42/e970b594aed32976ac23200808611a1a8113b36095aa23e10c03928b6a18/bokeh-0.12.3.zip#md5=76bd8ee70798fe6d8821046203c /bokeh/), versi: 0.12.3
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/22/c4/5eede1a79e923c93182b45dabc02e1df11dc90cdff454103ec4770fcd7e8/bokeh-0.6.0.tar.gz#md5=f95020388ea851cf. /sederhana/bokeh/), versi: 0.6.0
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/30/92/9d92a2fcfe4e9633dd2e2de246b3fa7668450fa4c3237542118502c7e7a7/bokeh-0.3.tar.gz#md5=81fb90108953ad17c0078. /bokeh/), versi: 0.3
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/37/79/4a5e54f5c014d7d84a1159c494779f2b923d24d44c72203217f6e70165a0/bokeh-0.11.0.tar.gz#md5=16064e126b703506cadpy /sederhana/bokeh/), versi: 0.11.0
(DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/45/6c/6d1ad9da2e713f69d3df6e4e5eb3e8f971db03e66f3154c9e5ab142a6bd8/bokeh-0.12.6.tar.gz#md5://a287aa11frompy422a287aa /sederhana/bokeh/), versi: 0.12.6
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/45/c7/c0738637a16e4174ab7ec5f7f487786b9217846f1f2245358e368633682e/bokeh-0.12.0.tar.gz#md5=7c50e4orga4afc42c /sederhana/bokeh/), versi: 0.12.0
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/53/45/b3e7df7aeae95f827fa99bba50dfb4546b0ad8b06472b768c615f824a0ce/bokeh-0.11.1.tar.gz#md5=b9002689668732 /sederhana/bokeh/), versi: 0.11.1
DEBUG:pip.index: Tautan yang ditemukan https://pypi.python.org/packages/54/39/37118ca92786a1b5b6fd2735c41fba603fd8292c0c1ede02b2838a821e08/bokeh-0.9.1.zip#md5=b78a77cdcdc0c1ede02b2838a821e08/bokeh-0.9.1.zip#md5=b78a77cdcdc478cddc /bokeh/), versi: 0.9.1
(DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/5f/59/f1983e4cb2a07440d1a507793561a3e4993e2bf5363fa762e32afc43e3d6/bokeh-0.8.1.tar.gz#md5=3db46ea1538apy. /sederhana/bokeh/), versi: 0.8.1
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/68/be/cd27d86f6f6440c5b697a65c42ae5c40c0da0607e49d24829837279c09df/bokeh-0.6.1.zip#md5=971a85c26ca1562. /bokeh/), versi: 0.6.1
(DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/6c/f5/6a4b75f5f7c35771b172994c5b5642dd0f923d781b8eb7a9167339eb63b4/bokeh-0.12.4.tar.gz#md5=8258pya5ce7a. /sederhana/bokeh/), versi: 0.12.4
(DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/71/e3/0b41cd3be31d54f02367457565052d426bbc802779021e09e445de0b9298/bokeh-0.8.0.tar.gz#md5=d1e58639fe1b5376c /sederhana/bokeh/), versi: 0.8.0
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/73/8c/8e5a460301c782eb792787b7db3faa92237d5ad752b921efeb704acecfb2/bokeh-0.6.1.tar.gz#md5=104693e3e72290db1 /sederhana/bokeh/), versi: 0.6.1
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/73/a3/4f66b577b27a627e42253b1ff7c47cef946a0859b911ab2c454454e6a98b/bokeh-0.7. /sederhana/bokeh/), versi: 0.7.1
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/75/71/c4bb873d79b8818494a1cfc4981f8df0cad59f03dc1bc8a2ba1f22283ce0/bokeh-0.4.4.tar.gz#md5=689654967orgec54ddb /sederhana/bokeh/), versi: 0.4.4
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/7b/81/6422f47023358a749cf7d5f7a748410cc933af3c9726383189b6c84254e3/bokeh-0.12.2.zip#md5=3497336a01cac3f999ee.org /bokeh/), versi: 0.12.2
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/7e/6a/66925127f71868d0665a8f332218aff3f3187f8c7bd617dddeb14e90d422/bokeh-0.7.0.tar.gz#md5=fe6874d4e2347b4498b29py /sederhana/bokeh/), versi: 0.7.0
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/80/da/120e4becdce302d700c27a2b27873838a032e5e780710f2fdd75cf0433b4/bokeh-0.2.tgz#md5=fa17b2bdae75515de4capy /), versi: 0.2
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/96/20/0d94a6aba5aba3aee5f4f02e44f17438c0a496dec725415b8d3946a61663/bokeh-0.4.4.zip#md5=5e1274de97898269dab221. /bokeh/), versi: 0.4.4
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/a3/bc/39b865de571b8c890f226a9ee0cc3a5e4967829f6ff9dd3d78155393860f/bokeh-0.12.9.tar.gz#md5=ecc02510313295 /sederhana/bokeh/), versi: 0.12.9
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/a7/49/fd84d75aa1765db2e3ba897a35f835bcf9464ce5808392cc8e0a5e559320/bokeh-0.11.1.zip#md5=a3476da9397deb55677032 /bokeh/), versi: 0.11.1
(DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/a8/07/180695d26a55c4c4f4ed1deb0b46bb47297032b37ae007b690fd56dffbfc/bokeh-0.12.7.tar.gz#md5=dbc5977b423ef53. /sederhana/bokeh/), versi: 0.12.7
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/ae/8d/7b185f911c3e8456fadea5cf35111903c23beec469b401ff6e9049360b56/bokeh-0.12.1.zip#md5=94dc25a56ce4cfe35a03d24c9768 /bokeh/), versi: 0.12.1
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/b1/ed/32a32155675dfad0b75744e0d5e00015cfcc942ad95d593138271ed6902d/bokeh-0.4.tar.gz#md5=9b4c82c77e1463b044556 /bokeh/), versi: 0.4
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/b2/fe/a154d2d8ca86c3e3c16174cdd32c502de1845bd53bf72ef2097b7494de11/bokeh-0.7. /bokeh/), versi: 0.7.1
(DEBUG:pip.index:Tautan ditemukan https://pypi.python.org/packages/b3/bb/b989978587b7c6454c8e64c6cc90201c279b42d3fb5008d4d86157652647/bokeh-0.5.1.tar.gz#md5=cbb256d26a5a /sederhana/bokeh/), versi: 0.5.1
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/ba/78/7c168c43e270bb07e41bf1d12a67fd2137eca16ec9303ec6dc488639cdf3/bokeh-0.5.1.zip#md5=c75dba1eaae99ee235968637c6 /bokeh/), versi: 0.5.1
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/bb/4a/ce1c3b469fb3a74146ae887cafbd1a6ebacafc4d50b332e565570451b842/bokeh-0.12.13.tar.gz#md5=3b9e72d819 /sederhana/bokeh/), versi: 0.12.13
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/c2/86/5c233b17c87ac9206b7839d966396c5eb1e30c915dde6b85e4abe1fded7f/bokeh-0.8.2.tar.gz#md5=7f6043d1d008 /sederhana/bokeh/), versi: 0.8.2
(DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/c7/44/73ba873be72bb2d0faab6c36e0b02ec094b7579a8459790bc30cf72143e4/bokeh-0.9.2.tar.gz#md5=cd1from746254e4429. /sederhana/bokeh/), versi: 0.9.2
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/cb/b8/274dd0f01c9a97ca250c3a1f6abdd2b4714e0f88a05a4e8c16ab32c2eb53/bokeh-0.4.1.tar.gz#md5=c7b89102d285 /sederhana/bokeh/), versi: 0.4.1
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/d0/07/4ffe0142e23c8b4bad1eac885b4291b76207f57926a894f1c38b869f07fd/bokeh-0.10.0.tar.gz#md5=23a03449505840cbbaf9e66. /sederhana/bokeh/), versi: 0.10.0
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/d0/eb/ac682378c97394339127663f2b1f1337aee4ce242c9c3224f8604db05835/bokeh-0.9.1.tar.gz#md5=a9b28415f65dpi.pyd4baonddpi. /sederhana/bokeh/), versi: 0.9.1
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/d1/d6/29c4e57ea8489d28cdc2307cfd668c16ccab25cce9987b78d517a1532db4/bokeh-0.5.2.tar.gz#md5=e2494d637daccc. /sederhana/bokeh/), versi: 0.5.2
(DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/d2/5f/486973c6f676405dda81fa83b18801e41e5a8541d5907150ddc8cb8a3cc1/bokeh-0.4.2p1.tar.gz#md5=bcdba476be8d /sederhana/bokeh/), versi: 0.4.2p1
(DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/d4/2e/6fff9f6dd869127592a2d9f2d678aaa60bfe8cfcd57f132c0d2228d4cd6a/bokeh-0.12.3.tar.gz#md5=8e3433e2d /sederhana/bokeh/), versi: 0.12.3
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/d8/ce/83320bfd330316a7f3aa8e422e2c9d18723b2e88631190f80a8613135e16/bokeh-0.9.2.zip#md5=335f41a757f9880d /bokeh/), versi: 0.9.2
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/dc/3f/3f8bc31e3b8c7a2164ac30890657d90c08da8b151ccf5c410a442b62195c/bokeh-0.12.0.zip#md5=6b529darib0orgc5cef85c /bokeh/), versi: 0.12.0
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/de/11/f5612c70aab61bfe7b8df2be7974dcd57b4f6b843ba43b7bc5d8a3c0ad0c/bokeh-0.11.0.zip#md5=bb0fromc8b12eb2115 /bokeh/), versi: 0.11.0
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/de/5d/88a95eacebbd863e77f78cc47152955c8afe28dc4ed1fe243fc3fb40ceb4/bokeh-0.12.2.tar.gz#md5=2d1621bffecpy4b. /sederhana/bokeh/), versi: 0.12.2
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/e3/e2/b379c5bfe337746ebd7919df14a68c35e5d78e31689adb96b32067d51362/bokeh-0.12.5.tar.gz#md5=53bb53darib852e5c /sederhana/bokeh/), versi: 0.12.5
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/e5/9b/09e3907c8ff6a567554e517b06316fabc1228e34a0becb677c68aa7aaecd/bokeh-0.9.3.zip#md5=8d6a8224f83dimpled /bokeh/), versi: 0.9.3
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/ea/90/4933ed34e55c7d4ee3692b34cdb97bd8f51555ea15f8dd75cf898b9bd1f4/bokeh-0.9.0.zip#md5=d5a14fcd/533593d /bokeh/), versi: 0.9.0
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/ea/f5/7a6e2b6c7bdd320facf839e283669fd48c722670f177b5a7d97837471e7c/bokeh-0.8.1.zip#md5=ed8dd76ffrom8872089d00 /bokeh/), versi: 0.8.1
DEBUG:pip.index: Tautan yang ditemukan https://pypi.python.org/packages/ec/24/798c20d9cd1a981e4815fa945c9886d2ac327b8187aae2b532cacb8dcb1e/bokeh-0.7.0.zip#md5=f740e16291f77998 /bokeh/), versi: 0.7.0
(DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/ed/ce/bc531f42fb6aba4df5bb968cd134469e5c6bcaef845a1f6f8b4e1ac881eb/bokeh-0.9.0.tar.gz#md5=94d55a2878dpifba17ad. /sederhana/bokeh/), versi: 0.9.0
DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/ee/70/a189fc0cf14940bfb3d21fa54765f4b230e7a512fba5342b2920c824a43f/bokeh-0.5.0.zip#md5=b37881acdea9038c /bokeh/), versi: 0.5.0
(DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/f3/3c/1fda6c0d67b58a0a6dad907f3bc942adc6e600516a1b1a10d054d2039b10/bokeh-0.12.10.tar.gz#md5b://org /sederhana/bokeh/), versi: 0.12.10
(DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/f3/b1/69d6b3544de4d31d7b735e6e3e075afc8ef962c4e1bce93cb4252632122f/bokeh-0.12.14.tar.gz#md5=ca5cbb00onpy.gz#md5=ca5cbb00 /sederhana/bokeh/), versi: 0.12.14
(DEBUG:pip.index:Tautan yang ditemukan https://pypi.python.org/packages/fb/8b/f294caf3b9c4508c9e87eff15f9dbda0996a21f1014488a27cd1ba819e40/bokeh-0.5.2.zip#md5=8bbfc141c3d324 /bokeh/), versi: 0.5.2
DEBUG:pip._vendor.cachecontrol.controller:Mencari "https://pypi.python.org/packages/f3/b1/69d6b3544de4d31d7b735e6e3e075afc8ef962c4e1bce93cb4252632122f/bokeh-0.12.14.tar.gz"
DEBUG:pip._vendor.cachecontrol.controller:Tidak ada entri cache yang tersedia
DEBUG:pip._vendor.requests.packages.urllib3.connectionpool:"GET /packages/f3/b1/69d6b3544de4d31d7b735e6e3e075afc8ef962c4e1bce93cb4252632122f/bokeh-0.12.14.tar.gz HTTP/1.1"
DEBUG:pip._vendor.cachecontrol.controller:Memperbarui cache dengan respons dari "https://pypi.python.org/packages/f3/b1/69d6b3544de4d31d7b735e6e3e075afc8ef962c4e1bce93cb4252632122f/bokeh-0.12.14.tar.gz"
DEBUG:pip._vendor.cachecontrol.controller:Caching karena etag
HASIL:
[{"name": "bokeh", "version": "0.12.14", "hash": ["sha256:42abada2e484d2d5b290d14a943e1c3cd7adabd39933b5f074f57b6cf7920a87"]}]

oke akhirnya kita sampai ke dasar ini, terima kasih kepada @hynek! silakan coba pipenv v11.3.2.

masih mengerjakan bug

@brosner @kadrach coba dari master jika Anda mau dan beri tahu kami

Masih rusak untuk saya dengan master terbaru. pipenv install pytest berakhir dengan Pipfile.lock dengan hanya satu entri:


Pipfile.lock

{
    "_meta": {
        "hash": {
            "sha256": "497286c97fbfe422be45e95a2ef6cf044f88a7d0c777c0a926674894ca547f9b"
        },
        "pipfile-spec": 6,
        "requires": {},
        "sources": [
            {
                "name": "pypi",
                "url": "https://pypi.python.org/simple",
                "verify_ssl": true
            }
        ]
    },
    "default": {
        "pytest": {
            "hashes": [
                "sha256:062027955bccbc04d2fcd5d79690947e018ba31abe4c90b2c6721abec734261b",
                "sha256:117bad36c1a787e1a8a659df35de53ba05f9f3398fb9e4ac17e80ad5903eb8c5"
            ],
            "version": "==3.4.2"
        }
    },
    "develop": {}
}

@jtratner bahkan dengan pipenv lock --clear ?

Saya dapat mengonfirmasi bahwa setelah membersihkan semua cache:

rm -rf ~/Library/Caches/{pip,pipenv}

Menjalankan pipenv lock bekerja untuk saya di master.

@techalchemy - ya / masih tidak menarik dependensi :( https://Gist.github.com/jtratner/440e949b64889aa5afe90e1c871385af/f77b279da18e7e5a2b4b00d8c95439f236dd84a4 - mencoba membersihkan cache juga

maaf atas masalah ini, akan segera dikerjakan.

ini adalah bug yang dikenal saat ini.

@jtratner alur kerja Anda membuat Anda menggunakan pipenv run dari dalam pipenv shell -- itu sangat dilarang

pipenv run adalah untuk di luar subkulit -- dan pelari Anda tidak menghapus file kunci

Keluar dari subkulit lalu pipenv lock --verbose --clear

@techalchemy - Saya tidak mengerti apa yang Anda maksud. Tidak ada yang berjalan di dalam shell pipenv (dan itu melompat ke direktori temp sehingga tidak ada Pipfile sama sekali dan tidak perlu menghapus lockfile karena hanya tertinggal di direktori temp)

(Saya hanya menjalankannya dengan ./runner.sh 2>&1 | tee >(pbcopy) agar lebih mudah menempel di hasil)

Pipfile dihasilkan dari menjalankan pipenv install pytest

file pip

[[source]]

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


[dev-packages]



[packages]

pytest = "*"


[requires]

python_version = "2.7"

pipenv lock --verbose --clear (gagal menemukan dependensi untuk ptyest)

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:
  pytest

Finding the best candidates:
  found candidate pytest==3.4.2 (constraint was <any>)

Finding secondary dependencies:
  pytest==3.4.2             requires pytest==3.4.2

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

                          ROUND 2
Current constraints:
  pytest==3.4.2

Finding the best candidates:
  found candidate pytest==3.4.2 (constraint was ==3.4.2)

Finding secondary dependencies:
  pytest==3.4.2             requires pytest==3.4.2
------------------------------------------------------------
Result of round 2: stable, done

Updated Pipfile.lock (a52cde)!

Akhirnya naik ke mesin yang berbeda untuk mengujinya dan tidak mereproduksi, jadi pasti ada yang salah dengan pengaturan saya :( - sepertinya Anda telah memperbaiki masalah di tiket ini :)

Tampaknya diselesaikan pada master (diuji 00d468b3dd3c23a468c52b9279ef7e1c08bca567).

dirilis

di lingkungan cygwin saya di win10 saya tidak dapat memperbarui ke 1.15.2 untuk memperbaiki masalah ini, jadi saya harus menggunakan 1.14.0 pip install pipenv==1.4.0
untuk memperbaiki semua masalah caching saya harus menghapus ~/.cache/pip ~/.cache/pipenv dan <project_folder>/Pipfile.lock
setelah itu saya berhasil mengunci semua ketergantungan dan subdependensi dengan pipenv lock --verbose --clear dan menginstalnya lagi dengan pipenv install

Saya pikir saya memiliki masalah yang sama. Saya punya ini Pipfile :

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

[packages]
mkdocs = "==0.15.3"
pymdown-extensions = "==1.1"

[dev-packages]

[requires]
python_version = "2.7"
dan menjalankan `pipenv --two`, `pipenv shell`, `pipenv install` menghasilkan `Pipfile.lock` ini:
 {
 "_meta": {
 "hash": {
 "sha256": "f575f26e98bde6540683f9360e47d7d743c34dda7a9511f2053c8724d15bc8fd"
 },
 "pipfile-spec": 6,
 "membutuhkan": {
 "python_version": "2.7"
 },
 "sumber": [
 {
 "nama": "pipi",
 "url": "https://pypi.python.org/simple",
 "verify_ssl": benar
 }
 ]
 },
 "bawaan": {
 "klik": {
 "hash": [
 "sha256:29f99fc6125fbc931b758dc053b3114e55c77a6e4c6c3a2674a2dc986016381d",
 "sha256:f15516df478d5a56180fbf80e68f206010e6d160fc39fa508b65e035fd75130b"
 ],
 "versi": "==6.7"
 },
 "jinja2": {
 "hash": [
 "sha256:74c935a1b8bb9a3947c50a54766a969d4846290e1e788ea44c1392163723c3bd",
 "sha256:f84be1bb0040caca4cea721fcbbbbd61f9be9464ca236387158b0feea01914a4"
 ],
 "versi": "==2.10"
 },
 "muat ulang": {
 "hash": [
 "sha256:422de10d7ea9467a1ba27cbaffa84c74b809d96fb1598d9de4b9b676adf35e2c",
 "sha256:5ed6506f5d526ee712da9f3739c27714e6f3376f3e481728d298efceae0ec83a"
 ],
 "versi": "==2.5.1"
 },
 "penurunan harga": {
 "hash": [
 "sha256:9ba587db9daee7ec761cfc656272be6aabe2ed300fece21208e4aab2e457bc8f",
 "sha256:a856869c7ff079ad84a3e19cd87a64998350c2b94e9e08e44270faef33400f81"
 ],
 "versi": "==2.6.11"
 },
 "markupsafe": {
 "hash": [
 "sha256:a6be69091dac236ea9c6bc7d012beab42010fa914c459791d627dad4910eb665"
 ],
 "versi": "==1.0"
 },
 "mkdocs": {
 "hash": [
 "sha256:39b993183dac9654d1b5eaa093be2d059aae5d89e0badf480b447a646c725d02",
 "sha256:7709daf71f737e03813b39d7d2333ad4819247c00aed598c018a3ff66fe1f691"
 ],
 "indeks": "pipi",
 "versi": "== 0.15.3"
 },
 "mkdocs-bootstrap": {
 "hash": [
 "sha256:51482d9869af5838b3fe3bb4b0dd7a86bb055031dab970e39649b52ac8ade5b0",
 "sha256:ba5dbf3928b3dcaf6c5ffb0fdf915c493b0dd405138d63142511402d6f662bc8"
 ],
 "versi": "==0.2.0"
 },
 "mkdocs-bootswatch": {
 "hash": [
 "sha256:4efadca1d3919f02515ed1135221b46be0af94f4b3f99e5f001404d371006574",
 "sha256:f82f8fb5538f2b32691d3bb93dde1430d63c4127331cad3da440a9281e025891"
 ],
 "versi": "== 0.5.0"
 },
 "pymdown-extensions": {
 "hash": [
 "sha256:1832c74744119a08f17a1f46fe5cba6b47cbe44f118d5daa1df9da5a6ff801a7",
 "sha256:cceb5ffbfff24fc29b13d11b8e211040a5d296ce2889eb8f75b64518b5edf3bc"
 ],
 "indeks": "pipi",
 "versi": "==1.1"
 },
 "pyyaml": {
 "hash": [
 "sha256:0c507b7f74b3d2dd4d1322ec8a94794927305ab4cebbe89cc47fe5e81541e6e8",
 "sha256:16b20e970597e051997d90dc2cddc713a2876c47e3d92d59ee198700c5427736",
 "sha256:3262c96a1ca437e7e4763e2843746588a965426550f3797a79fca9c6199c431f",
 "sha256:326420cbb492172dec84b0f65c80942de6cedb5233c413dd824483989c000608",
 "sha256:4474f8ea030b5127225b8894d626bb66c01cda098d47a2b0d3429b6700af9fd8",
 "sha256:592766c6303207a20efc445587778322d7f73b161bd994f227adaa341ba212ab",
 "sha256:5ac82e411044fb129bae5cfbeb3ba626acb2af31a8d17d175004b70862a741a7",
 "sha256:5f84523c076ad14ff5e6c037fe1c89a7f73a3e04cf0377cb4d017014976433f3",
 "sha256:827dc04b8fa7d07c44de11fabbc888e627fa8293b695e0f99cb544fdfa1bf0d1",
 "sha256:b4c423ab23291d3945ac61346feeb9a0dc4184999ede5e7c43e1ffb975130ae6",
 "sha256:bc6bced57f826ca7cb5125a10b23fd0f2fff3b7c4701d64c439a300ce665fff8",
 "sha256:c01b880ec30b5a6e6aa67b09a2fe3fb30473008c85cd6a67359a1b15ed6d83a4",
 "sha256:ca233c64c6e40eaa6c66ef97058cdc80e8d0157a443655baa1b2966e812807ca",
 "sha256:e863072cdf4c72eebf179342c94e6989c67185842d9997960b3e69290b2fa269"
 ],
 "versi": "==3.12"
 },
 "enam": {
 "hash": [
 "sha256:70e8a77beed4562e7f14fe23a786b54f6296e34344c23bc42f07b15018ff98e9",
 "sha256:832dc0e10feb1aa2c68dcc57dbb658f1c7e65b9b61af69048abc87a2db00a0eb"
 ],
 "versi": "==1.11.0"
 },
 "tornado": {
 "hash": [
 "sha256:186ba4f280429a24120f329c7c08ea91818ff6bf47ed2ccb66f8f460698fc4ed",
 "sha256:3e9a2333362d3dad7876d902595b64aea1a2f91d0df13191ea1f8bca5a447771",
 "sha256:4d192236a9ffee54cb0032f22a8a0cfa64258872f1d83d71f3356681f69a37be",
 "sha256:69194436190b777abf0b631a692b0b29ba4157d18eeee07327b486e033b944dc",
 "sha256:b5bf7407f88327b80e666dabf91a1e7beb11236855a5c65ba5cf0e9e25ae296b"
 ],
 "versi": "==5.0.1"
 }
 },
 "mengembangkan": {}
 }



yang tidak mengandung backports-abc yang diperlukan oleh tornado .

@revolter Tornado's setup.py menghasilkan persyaratan saat run-time, sehingga Pipenv tidak mungkin mendeteksi dependensi yang tidak cocok dengan host Python Anda. Beri tahu mereka untuk memperbaruinya agar menggunakan spesifikasi PEP 508 . Referensi pytest-dev/pytest#3098 jika mereka membutuhkan contoh.

Apakah halaman ini membantu?
0 / 5 - 0 peringkat