Pipenv: lock fails with conditional dependencies on sys_platform

Created on 9 Mar 2018  Â·  17Comments  Â·  Source: pypa/pipenv

tldr: Locking fails when a dependency isn't available on the current platform, even though it's declared conditional on the platform.

Background

I have a machine learning project where development happens on macOS and longer training runs on linux machines with gpus, for which I use tensorflow. Tensorflow uses different packages depending on if you use gpu or not (tensorflow vs tensorflow-gpu).

The availability for these packages looks like the following:
tensorflow==1.6.0: linux - :white_check_mark: | macOS :white_check_mark:
tensorflow-gpu==1.6.0: linux - :white_check_mark: | macOS :x:

In the Pipfile the tensorflow requirement is specified as follows:

tensorflow = {version = "==1.6.0", sys_platform = "== 'darwin'"}
tensorflow-gpu = {version = "==1.6.0", sys_platform = "!= 'darwin'"}
Problem

If I create the Pipfile.lock on the linux machine, and the run pipenv sync with that lockfile on a mac everything installs fine. However, if I try to add a new requirement on a mac (e.g. pipenv install requests), which results in pipenv creating another lock, it fails because it can't find the requirement tensorflow-gpu==1.6.0.

Describe your environment
  1. OS Type: macOS Version 10.13.3
  2. Python version: 3.5.2
  3. Pipenv version: 11.1.7
Expected result
>> pipenv lock
Locking [dev-packages] dependencies…
Locking [packages] dependencies…

Or: to be able to use pipenv together with PEP508 dependency specification to do cross-platform development in situations where a specific package is only available on one platform.

Actual result
>> pipenv lock --verbose
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:
  requests
  tensorflow==1.6.0
  tensorflow-gpu==1.6.0

Finding the best candidates:
  found candidate requests==2.18.4 (constraint was <any>)
  found candidate tensorflow==1.6.0 (constraint was ==1.6.0)
  found candidate tensorflow-gpu==1.6.0 (constraint was ==1.6.0)

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

                          ROUND 1
Current constraints:
  requests
  tensorflow==1.6.0
  tensorflow-gpu==1.6.0

Finding the best candidates:
  found candidate requests==2.18.4 (constraint was <any>)
  found candidate tensorflow==1.6.0 (constraint was ==1.6.0)
  found candidate tensorflow-gpu==1.6.0 (constraint was ==1.6.0)

Finding secondary dependencies:
  requests==2.18.4          requires certifi>=2017.4.17, chardet<3.1.0,>=3.0.2, idna<2.7,>=2.5, urllib3<1.23,>=1.21.1


CRITICAL:pip.index:Could not find a version that satisfies the requirement tensorflow-gpu==1.6.0 (from versions: 0.12.0rc1, 0.12.0, 0.12.1, 1.0.0, 1.0.1, 1.1.0rc1, 1.1.0rc2, 1.1.0)
Warning: Your dependencies could not be resolved. You likely have a mismatch in your sub-dependencies.
  You can use $ pipenv install --skip-lock to bypass this mechanism, then run $ pipenv graph to inspect the situation.
No matching distribution found for tensorflow-gpu==1.6.0
Steps to replicate

Pipfile:

[[source]]

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


[packages]

tensorflow-gpu = {version = "==1.6.0", sys_platform = "!= 'darwin'"}
tensorflow = {version = "==1.6.0", sys_platform = "== 'darwin'"}
requests = "*"


[dev-packages]



[requires]

python_version = "3.5"

On macOS run:

pipenv lock
Dependency Resolution Type

All 17 comments

Please upgrade pipenv, we are doing continual work on the resolver and making near-daily and sometimes multiple times a day releases with those improvements.

Updated to latest (11.1.7) no difference. Will update original description as well to avoid other people having to check for this as well

will investigate — thank you for the report!

i just did a bunch of work that should enable this use case — i'm surprised this doesn't work.

i was mostly focused on python_version though during that work, sys_platform might be another story.

I think it will be, I think running setup.py hard fails currently for things with mismatched platform tags. I had a fix for this somewhere, having to do with forging platform and abi tags and passing them down the resolver stack.

$ pipenv-resolver 'tensorflow-gpu==1.6.0' --debug
…
No matching distribution found for tensorflow-gpu==1.6.0
INFO:pip.req.req_set:Collecting tensorflow-gpu==1.6.0
DEBUG:pip.index:1 location(s) to search for versions of tensorflow-gpu:
DEBUG:pip.index:* https://pypi.python.org/simple/tensorflow-gpu/
DEBUG:pip.index:Getting page https://pypi.python.org/simple/tensorflow-gpu/
DEBUG:pip._vendor.cachecontrol.controller:Looking up "https://pypi.python.org/simple/tensorflow-gpu/" in the cache
DEBUG:pip._vendor.cachecontrol.controller:Current age based on date: 350
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 > 350
DEBUG:pip.index:Analyzing links from page https://pypi.python.org/simple/tensorflow-gpu/
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/00/57/af755383e00ce4f992f7d6872c9a06a6921bc286e6c559c17f548467364b/tensorflow_gpu-1.0.0-cp34-cp34m-manylinux1_x86_64.whl#md5=0219f5996e6ec76a0713ebab7421e35f (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/00/63/068c81e5f50cdbbb30ca4be611979633c5591a7452c6c60ffbf675fac6fe/tensorflow_gpu-1.5.0-cp35-cp35m-win_amd64.whl#md5=ea5f42ef288efc5ac6d23563cc1217f9 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/02/43/39ab0085c60286420aa465e767e0d44bb6c358ce6e2897fbc8c3e4dbf5f5/tensorflow_gpu-1.5.0rc1-cp36-cp36m-manylinux1_x86_64.whl#md5=eb05610849417e869f88975e8bda8162 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/03/06/0f21f5c3c3c8c4a8b8e0944e033660e0af42d7e037aecf201eada875f334/tensorflow_gpu-1.4.0rc1-cp35-cp35m-win_amd64.whl#md5=06f5d81e8cb7e03671b464e58d68b62d (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/03/2b/ac3af64944a7867fadd0233eaddb87d7f91b38c28824132e1b202e2591c6/tensorflow_gpu-1.1.0-cp35-cp35m-macosx_10_11_x86_64.whl#md5=74ca1ccfe1dd95d9420a334acea10717 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/04/08/432e201d71a5d0fc7af5ea1127538ff8b14410040ce955ba1bf276e9da02/tensorflow_gpu-1.1.0-cp34-cp34m-manylinux1_x86_64.whl#md5=ed50a0a8189feb75644d53478e59f403 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/04/65/cf2931db94a43ac9cfa840a4f25915226ed6a5833aa2babd77cdbe43b2ae/tensorflow_gpu-1.6.0rc0-cp27-cp27mu-manylinux1_x86_64.whl#md5=586ff540a36faa19a614c3af3766c219 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/04/c4/ffb89dbea9e43e82665ff088fd08aa25aa93301aa8c480de278c8f576ea1/tensorflow_gpu-1.0.1-cp27-cp27mu-manylinux1_x86_64.whl#md5=c06b11dee765a99b1814ca393aaf558a (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/05/3c/9a8a8bbec4cec40f8654b19707ce08e862d204f48352f7e76e1a1208292c/tensorflow_gpu-1.4.0rc0-cp33-cp33m-manylinux1_x86_64.whl#md5=536c3fa29361377357af5aa90a859274 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Found link https://pypi.python.org/packages/06/3a/5f7cf24af13265eaea2406d88fc3df5ad870aba0b4f4a0851213519f12bd/tensorflow_gpu-1.1.0-cp36-cp36m-macosx_10_11_x86_64.whl#md5=0dbcd3f34139f188d61f51199b52f458 (from https://pypi.python.org/simple/tensorflow-gpu/), version: 1.1.0
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/07/89/e1dcc174fec4a7ef29c5f6d4b41939d60fd78e29bf61362aa71b0205eea7/tensorflow_gpu-1.6.0rc0-cp35-cp35m-manylinux1_x86_64.whl#md5=54d2b8dfe23d52435186b2ecf7debcc4 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/08/47/bc3ccd2ecae8f9f18a93c683a66339714090a36e1b69307787fb28e72e2b/tensorflow_gpu-1.4.0-cp36-cp36m-manylinux1_x86_64.whl#md5=110fbd34ae26089a3d966ecd4bf27455 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/0a/0d/1a52e775e490f2fcb0eba08b3df773e6e6d64934c77346b351f6df2ed8df/tensorflow_gpu-1.4.0-cp35-cp35m-win_amd64.whl#md5=640a737551a4d1551e3b94370009f059 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/0b/80/094c2f7b05acb1089333d93c41323e93f3296eaa7a785d9848973e4e36bd/tensorflow_gpu-1.5.0-cp27-cp27mu-manylinux1_x86_64.whl#md5=d519dd5669665acc286b7eb186e58f7a (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/0c/a4/f761ba50667059c822695a6a7a56dfb77a7eefe36b181734c6c90bbcd6d9/tensorflow_gpu-1.3.0rc0-cp35-cp35m-win_amd64.whl#md5=9b410265bac063fa94dd2114b8ca3029 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/0d/96/9fbb8d093a7ece4bbfd4909bdc160e850339ca8ac1150f66ff037078a0fa/tensorflow_gpu-1.4.0rc0-cp35-cp35m-manylinux1_x86_64.whl#md5=875e7752b01ea9694b9c8bc72dc5120c (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/0d/cb/25f2cdd8905070373945c1f57edbe9d5f51a4482aa7097e5613cbdc4a41f/tensorflow_gpu-1.1.0rc2-cp35-cp35m-win_amd64.whl#md5=80ccd71614b438ffe8af3cd0dd572d3b (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/0e/be/798a7c55479a17f49efa4e8cf881d6fc59750c32f37d2c19f9b783e919fe/tensorflow_gpu-1.1.0rc0-cp33-cp33m-macosx_10_11_x86_64.whl#md5=23c8553edab776e068a6263c49df1c38 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/0f/a2/38929ec9677cb0009837b77674388ab4a35ad81573f3289b21963eda0f9a/tensorflow_gpu-1.6.0-cp27-cp27mu-manylinux1_x86_64.whl#md5=6aeae66cb813e26086dd460eede672bd (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/10/3d/b02004c80da2b28f1d927a86f9453b036884e8666edbe75105b2122148de/tensorflow_gpu-1.5.0rc0-cp35-cp35m-win_amd64.whl#md5=9af2aa0a767ea12e6c58596d25e2292e (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/10/94/1c0b13708c3c5c3f86bb65d25d51fe529078fed7df9b503883f2da30773f/tensorflow_gpu-1.6.0rc1-cp36-cp36m-win_amd64.whl#md5=01188679b7ffea21196ea0af2b7b2d98 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/14/fd/2adf9dde6ac93d55f82a86ee482801b43aa439cefe2b0cd69bf4ec20399c/tensorflow_gpu-1.2.1-cp33-cp33m-manylinux1_x86_64.whl#md5=b9e9b5b3ea3c939594e300eb44bccbe5 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/15/2e/e7aa4388bac8ab9767d4688193c2623c00b1e285d80bd49a72a548d19bec/tensorflow_gpu-1.5.0rc0-cp35-cp35m-manylinux1_x86_64.whl#md5=9afb04ff56af9d560e182756c24135a4 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/15/a7/f048197a857ad13d4fef48f26192cb0f0d4db89d9480cbcf8d9d90681656/tensorflow_gpu-1.6.0-cp35-cp35m-manylinux1_x86_64.whl#md5=3d26c2fd3845ad0b2a04d82ba4088841 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/16/e9/cddaafe5b2e94eb1041978a0a24fac4663705c567189d310f71965aec4d8/tensorflow_gpu-0.12.0-cp34-cp34m-manylinux1_x86_64.whl#md5=2a47dab311cf6b40e45c66ffe3f65fb3 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/17/26/3c01b7502b5af311940c3753eaf88f24c39d6bcbbbcf8e55c7289c1bd782/tensorflow_gpu-1.4.0rc1-cp36-cp36m-win_amd64.whl#md5=068de5cf55b17df41827b0cb6aa1163d (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/18/7c/ffea6b725f91f31cc47ea540b8cbd9758167e6c7687e6e10bef576d20ba3/tensorflow_gpu-1.1.0rc1-cp36-cp36m-manylinux1_x86_64.whl#md5=a1980ece9f9eff17d21202a0e6becac1 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/18/a0/20275e23ffedb4230d40459b6c94d0116e862039d59c681b2be841b00c4f/tensorflow_gpu-1.6.0rc1-cp27-cp27mu-manylinux1_x86_64.whl#md5=992d8ea7af9f4721d211605f45e62dfd (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Found link https://pypi.python.org/packages/19/8c/cc95c5cc62819b07392c75d1e4b1e5cd557d992fbafa132017b120b46366/tensorflow_gpu-1.1.0rc2-cp36-cp36m-macosx_10_11_x86_64.whl#md5=5afc749d971cca0e37aa66d000480b0c (from https://pypi.python.org/simple/tensorflow-gpu/), version: 1.1.0rc2
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/1b/36/478c5cc40b280061130c30acad118940b442d35b36e11c7ffedd652db58f/tensorflow_gpu-1.1.0-cp27-cp27mu-manylinux1_x86_64.whl#md5=bd1bc90cbd2957947c16b08a4535bc21 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/1e/3c/e1c4d55573fc8795c68e6420500a3e2e6bc86413ecb87ba0b0d2cfd12815/tensorflow_gpu-1.5.0rc1-cp35-cp35m-win_amd64.whl#md5=1bc7ff710c5596a79394467285e9d4c3 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/1e/be/b72fd4690c2a557ed4a253364df8a328860851008935b84dfe47615b6eb5/tensorflow_gpu-1.3.0rc0-cp35-cp35m-manylinux1_x86_64.whl#md5=e0d732610e060191f11c085b3e189cd8 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/1f/1c/e26c94c3b41fa7763a42b047c6f663679f692596c9d1ba27fc3ccc7d6538/tensorflow_gpu-1.5.0-cp35-cp35m-manylinux1_x86_64.whl#md5=4a23846e4a37f24b278505b698a90dfa (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/21/6b/73d8132ca3e276ccec4f548ff7282dd2c96c1e9eef81e35eb14606e24725/tensorflow_gpu-1.3.0rc0-cp36-cp36m-win_amd64.whl#md5=1d05a549215e950629002c5150fb6edd (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/22/16/b38d8ddcf8e7914059782b139b614444f1b0785a88494f73ec98b9c2387f/tensorflow_gpu-1.2.0rc2-cp36-cp36m-win_amd64.whl#md5=c62f7bd8d309c9ccfb5129eee9423c71 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Found link https://pypi.python.org/packages/23/1e/97cf183733d37c930fcdc3ddffa0e1416c7bab0c789138c4a2bf42e235d7/tensorflow_gpu-1.1.0rc0-cp36-cp36m-macosx_10_11_x86_64.whl#md5=2ce5492b3bc4f9a91f0db6bcf7d5cefa (from https://pypi.python.org/simple/tensorflow-gpu/), version: 1.1.0rc0
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/23/3b/d2806915af99209c53f648c7709be6a16c8ef68927f477098db198f22e0d/tensorflow_gpu-1.4.0rc1-cp34-cp34m-manylinux1_x86_64.whl#md5=fb44af97e3be06e1168bb93afb667330 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Found link https://pypi.python.org/packages/25/9d/f0a62cda5fe573027e871b8a450274f7fea0804737c8a961e0c345d54b0c/tensorflow_gpu-0.12.1-cp36-cp36m-macosx_10_11_x86_64.whl#md5=b8d2128a054fe0632a4031306ff8df3d (from https://pypi.python.org/simple/tensorflow-gpu/), version: 0.12.1
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/26/1e/067fa5a334df570f7ea060450585568d9d4e3847f85dcf01f4ecc9c6814f/tensorflow_gpu-1.5.0-cp36-cp36m-win_amd64.whl#md5=1dd6fc46b14d9ef6cca5f14ad0d3682f (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/26/27/8bc402cc73df3184810729d1bc48fb8562729b590c64d967eca308cb1061/tensorflow_gpu-1.3.0rc1-cp35-cp35m-manylinux1_x86_64.whl#md5=1f901e1bb7b984fab6a3c6d00f83a0f7 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/28/83/48870b153418a34e6244c6480babad65f1a23aa77e53d1aea2cac647c08e/tensorflow_gpu-1.1.0-cp36-cp36m-manylinux1_x86_64.whl#md5=4dc01066dd455d40cfb22126923ed418 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/29/90/e9f70bbfa553a205af876644fc644ae3f463ce63743d9eaf8b8fa95bddff/tensorflow_gpu-1.3.0rc0-cp36-cp36m-manylinux1_x86_64.whl#md5=be573c57972f6aedf49a9c138216c8ab (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/29/cf/594a131d3f4af2c9a783b433f58e76419a19047f3c2a62b72a01bd384db8/tensorflow_gpu-1.5.0rc0-cp36-cp36m-manylinux1_x86_64.whl#md5=04396374ae18eae481085239499b0571 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/2a/7b/051fbbac507238bab192179f809b734d0e7c25032c59b60c1601612faa85/tensorflow_gpu-1.3.0rc2-cp36-cp36m-win_amd64.whl#md5=3e76a5b85cb5d1d0783869f62158e8e1 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/2b/64/67efaa6a37b3492a01c7b7d7a30935ce0271b13873fdd68efa716445771f/tensorflow_gpu-1.2.0rc1-cp34-cp34m-manylinux1_x86_64.whl#md5=a060e7199f6921613e2a0fe09a193b45 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/2d/ed/de04623b56114e0ce66d8f5e0f4af9f54fdf9d72529aa734c6d2907c5563/tensorflow_gpu-1.6.0rc0-cp33-cp33m-manylinux1_x86_64.whl#md5=31b2160fbd0e677421677d7c1bf462ff (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/31/17/a73e0cdb95b1100179b3ee7d5e0261ebca90d77704000f7270333389c8e5/tensorflow_gpu-1.1.0rc1-cp35-cp35m-win_amd64.whl#md5=ea87dd2d5d4be3daa03e7139cc97d797 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/31/20/e3ecee0595dd424791f1aecc9ed74b402eb7047d5cc2d3fd1d5f1c3d522f/tensorflow_gpu-0.12.0-cp35-cp35m-manylinux1_x86_64.whl#md5=b8f2225cc49a88f4d1a266dc4d3bf990 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/31/ee/651736436f5b11ab0f7c642314548cd7081ce07cba3f7499df3f3fbd7d60/tensorflow_gpu-0.12.0rc1-cp35-cp35m-manylinux1_x86_64.whl#md5=af28fcbae7b3dc85fd296239ff2e2dfb (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/32/35/3d7fc0fbaefa2a73679f31bfe2f40e0f13e49fbf15412682cd6dd5558d18/tensorflow_gpu-1.3.0rc2-cp35-cp35m-win_amd64.whl#md5=cbb75575ed5ee262b3e2900da9d2bda0 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/33/84/d9cd6f255d9e3b295adb78f382a8e17e5c3f918d2a3f39bcbfbd74bf89e6/tensorflow_gpu-1.2.0-cp36-cp36m-win_amd64.whl#md5=022def0426e3656ff3614a394e0fcf47 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/37/2d/13d2813a23bb4f323da7c825b63d54b2bdbced4a78ea5b24170ee5d125f9/tensorflow_gpu-1.0.1-cp27-cp27m-macosx_10_11_intel.whl#md5=1c7924759414fe64988bfdc9939ea63a (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/37/db/3b3393fb2fcac66a3c06f488642b73c37bdfe3cf4b3cb20dc9e38a9f23a7/tensorflow_gpu-1.0.0-cp27-cp27m-macosx_10_11_intel.whl#md5=b232e410ccdda7dd0838be65aa3f3a43 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/38/ee/045b62d63957fc0176de3d9faa43cffe49a77a1db38728b152871e9b9635/tensorflow_gpu-1.2.0-cp27-cp27mu-manylinux1_x86_64.whl#md5=f7a1aec3bfd177f0529fe42c673ea493 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/39/e9/e900e4f8222b1e1b1f5432cd9781d33552d1636f37b280d7a2a5549de5c7/tensorflow_gpu-1.2.0rc2-cp34-cp34m-manylinux1_x86_64.whl#md5=4fa0cea40f7ac54bc6095aa098a9741f (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/3a/a3/c3bb8b851f2b28fe605c2a95df2d450e30ad421670950be0cad3af4cb4db/tensorflow_gpu-0.12.0rc1-cp35-cp35m-win_amd64.whl#md5=55f76575e827cc0c1216241744cb3546 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/3b/10/e538bbf1a63c7aab2fa48edd2342ca14f46ac5ac686c3ac4ecc67e1d4b9a/tensorflow_gpu-1.5.0rc1-cp27-cp27mu-manylinux1_x86_64.whl#md5=2021fb6e6a25ce9ba56e713906550f66 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/3b/57/f402046c4e8b7cb348825aeace62378337786694f44b9de69391a50768a1/tensorflow_gpu-1.3.0-cp33-cp33m-manylinux1_x86_64.whl#md5=401c0b2542072b2f9922a7debffd04dc (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/3d/59/7b74db1ce032b5368d96d0b0965baa02b8d6a91726b4ed58be249c268e98/tensorflow_gpu-1.4.0-cp35-cp35m-manylinux1_x86_64.whl#md5=92604029f3dcdcac8a8e74edcfe3f73f (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/40/ae/445b891b1b1710f973482a2af46baebb692350e5cbe52f5fffec2237e82b/tensorflow_gpu-1.3.0rc2-cp35-cp35m-manylinux1_x86_64.whl#md5=03faf2bffbfa61f8df1176aa1fdc7069 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/41/b6/a0351378c2a495797932c55a3c0a2917a29b6fcd6b8f26a275c5beb992bf/tensorflow_gpu-1.2.0rc1-cp35-cp35m-win_amd64.whl#md5=853c7bf98b0017821de85cb419e38a1b (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/43/46/0373e30d0cbbcbe0559e53f17e8118cd008545bcdd774a15491f70bd6797/tensorflow_gpu-1.2.0rc2-cp33-cp33m-manylinux1_x86_64.whl#md5=0fdbae8beec749e79cc2f0ffd99d293c (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/44/f5/12c9c4ba9ab3081caafb387f0145a18155f30258122ddc6248aec95e3571/tensorflow_gpu-1.6.0rc1-cp36-cp36m-manylinux1_x86_64.whl#md5=b403ecd4b793d9d17a718850dc811a99 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/46/e2/7389e7a1c10eb209ddabe0b35cca2e522a3985a1df7e07904c76d1d5609c/tensorflow_gpu-1.0.0-cp36-cp36m-manylinux1_x86_64.whl#md5=3f5190fae36bea277863699e8d7cad1c (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/47/27/a18b4b877e00e437e88730b63795e35e84f9e2c5a159152347e7ce844de9/tensorflow_gpu-1.0.1-cp33-cp33m-macosx_10_11_x86_64.whl#md5=230bd824132354c4f2d04305989d0196 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/47/78/3f3eb3d4e3023e2c143f31c3179ec548dbb485912fc2a6d353e7705fba42/tensorflow_gpu-1.1.0rc0-cp34-cp34m-manylinux1_x86_64.whl#md5=d1e32c308e0d28e30d6feb5b25a43301 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/47/81/2b8020393615b06af06e0d7c32d74b9a844ebebf4385f9eb00cfdfdbdd92/tensorflow_gpu-1.2.1-cp36-cp36m-win_amd64.whl#md5=46bb283df033c7fb7c233346eb26d40f (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/4b/a1/7779e7ac4f30aee9732757a0bff893465240a5f8962ce7533fcc1db2a040/tensorflow_gpu-1.2.0rc2-cp27-cp27mu-manylinux1_x86_64.whl#md5=4dfcfbf1c097a6485ff6d85f4e6d7866 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/4b/ef/dbba13068821e6be2b06f591152caffb22e1e8a81b7cb092f2706077709a/tensorflow_gpu-1.1.0rc1-cp27-cp27m-macosx_10_11_x86_64.whl#md5=134e18d7c0f0d13d572170977a295306 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/4e/03/78fff4909d2dc52cbd5bc8f2cfeac62a960d190cdfd8c4482f8969477758/tensorflow_gpu-1.3.0-cp34-cp34m-manylinux1_x86_64.whl#md5=4699a017e2c13dcaddaaa3c08d0d9a82 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/50/6f/5802568368f3c23acbb9aebdab801889181c9ead3e14ce3245ef6eff078d/tensorflow_gpu-0.12.1-cp35-cp35m-manylinux1_x86_64.whl#md5=32b15e32c2e914e039e0975f29bf3ccc (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/53/3f/c13e3e2954b4527afd7292fde0a4faaf518a14978ddcd385d0298aaefd7e/tensorflow_gpu-1.2.0-cp33-cp33m-manylinux1_x86_64.whl#md5=2dfed0db04008e9a2847c572142e7e0c (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/55/13/5059f6c16ebe4342053cf3a233e94b6e09ba8bfea4a9e033745afb0531fc/tensorflow_gpu-1.6.0rc0-cp35-cp35m-win_amd64.whl#md5=0b8930b501ebbca6a3fb1c7d0d6bde53 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/55/4f/cf59f26feb467122ee4a1e7ca37f718dc545bcc3a6d09d0c9749e7eeac55/tensorflow_gpu-0.12.1-cp34-cp34m-manylinux1_x86_64.whl#md5=e4b350fd09afcef6bef146306ffa7cd4 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/55/68/d99d2a93e5ea22eb410e5e173d014d926ce30aa10a3d2ed7e9033deeb563/tensorflow_gpu-1.4.1-cp35-cp35m-manylinux1_x86_64.whl#md5=1cda67643cfca3feef0fea9968864bf3 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/55/83/2c5c1ea8a65cde6388495e376d7718fd3b49f3798c6ffa1720bd810f9905/tensorflow_gpu-1.2.0rc1-cp36-cp36m-manylinux1_x86_64.whl#md5=c0827b2e643a3001e2681569b060bb07 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/56/c1/dd335c0eb17b38ddd9d522ce4eee751ba36302798d8b9b404a36372bb4a2/tensorflow_gpu-1.4.0-cp36-cp36m-win_amd64.whl#md5=113bbac780c56ad09da38a1f67533184 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/59/78/f20518aae27a00e5a4813b74adffd10e9a922ef24c7c72bbdec85b4e7e4a/tensorflow_gpu-1.3.0-cp35-cp35m-win_amd64.whl#md5=b7ae5ba55b7d05519ff2be6b5fb065ce (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/5a/9f/690e244609537d7ab739a29f4abad79e9e3a36a2937ebbecf2c894c93e7e/tensorflow_gpu-0.12.1-cp27-cp27mu-manylinux1_x86_64.whl#md5=f1b82311410c8aaa2ae2bd51fa830e69 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/5c/2a/347bc5cb145f97c0d79de8f3017fb7d6a42b638b06c2ea2ac1097cddc2a7/tensorflow_gpu-1.1.0rc2-cp34-cp34m-macosx_10_11_x86_64.whl#md5=64b4748fb06297101f3152617df22337 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/5c/80/9cd952136aa96d7dda83e423572d0bf06cb29f9df2f4b568073853a63669/tensorflow_gpu-1.3.0rc1-cp35-cp35m-win_amd64.whl#md5=e018ca0fb7df95af45253d3a8aa920cb (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/5c/91/3c7ae075feb5a320ba161a46e529f4df9eb975126fb8c0003458b5259c49/tensorflow_gpu-1.2.0rc0-cp33-cp33m-manylinux1_x86_64.whl#md5=06e63fc7af41215254605dc285c211af (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/5d/17/4b42d30a750e1bc26fef5ba734ce296a02eb0f56f96d9259232a34c22ecc/tensorflow_gpu-1.6.0rc0-cp36-cp36m-manylinux1_x86_64.whl#md5=c2bf50757a4ec9713acbb1cc32c9f740 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/5d/7c/ecd5e3009cc85b41a5313eb09693ddc976cf4afe694b6e151709810c944c/tensorflow_gpu-1.0.1-cp35-cp35m-manylinux1_x86_64.whl#md5=144baae1d0446e34426457721c1e0c90 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/60/1e/e9bcce98b35f51a358b36d39050711b69c56b10a2d62e5eb112c7bc6d1b2/tensorflow_gpu-1.4.1-cp34-cp34m-manylinux1_x86_64.whl#md5=29202269d67295df8c68721880aa3ad7 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/61/0e/8550c1bb5549cabf252474c73339ea768ceac9f18baab67f17693b34b737/tensorflow_gpu-1.5.0rc0-cp27-cp27mu-manylinux1_x86_64.whl#md5=7c39b4e4184faddf07a00bf5404022f2 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/62/28/e167532703473af093ca957459c2bd42e6469ebf16eaa853677e99bdcb59/tensorflow_gpu-1.5.0rc0-cp36-cp36m-win_amd64.whl#md5=d70889202429a863a70ad3d6bcec4120 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Found link https://pypi.python.org/packages/63/1e/e4604fe41d4d515da1f6ad4a4f19ffa866055456c5b28e0549c93c072bd9/tensorflow_gpu-1.0.0-cp36-cp36m-macosx_10_11_x86_64.whl#md5=7b73d521fa396e3da45b9fbc3505c357 (from https://pypi.python.org/simple/tensorflow-gpu/), version: 1.0.0
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/66/84/0b5c25eeb5466fc85e6f478b8e3f15460b89c0854acda63dc850a3c9bd53/tensorflow_gpu-1.1.0rc0-cp27-cp27m-macosx_10_11_x86_64.whl#md5=de70f95a43e40cae21e7df85d49febd0 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/67/27/37c75a64402c913fac3dd262447dc1a967e799100aea79eb5c53e801484b/tensorflow_gpu-0.12.0rc1-cp34-cp34m-manylinux1_x86_64.whl#md5=78198bef0a3842db5ff2ddd668fc670f (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/68/b4/8731e144a68a6044b8eba47f51f0a862c696b0c016c8512ca2aa3916f62a/tensorflow_gpu-1.4.0rc1-cp27-cp27mu-manylinux1_x86_64.whl#md5=4160ef13a210cc714c6eb94525b99539 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/6a/5b/09bb0bd72f4c5f5f6823d86372cc0232941a311c21fec766ce016e5bd2ba/tensorflow_gpu-0.12.1-cp36-cp36m-manylinux1_x86_64.whl#md5=9f0448327f2be850d807cc1787388f76 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/6d/61/903d434b9bd61eca9aeb4aa535e8ed3e1d081fa2aafcb5407e0a431401ce/tensorflow_gpu-1.0.0-cp35-cp35m-manylinux1_x86_64.whl#md5=a3f12edbfdd253fe7a5405f79a28149b (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/72/e8/ff6c2b9377d52a7a6b4edaaecc4f09a43a461ff7c9091bdc30eae0836460/tensorflow_gpu-1.5.0rc1-cp35-cp35m-manylinux1_x86_64.whl#md5=99d89cbaa920fc1195af5cdd26b2ae10 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/74/ac/68a41ccef2d1b2014327f43ad15e26a755a62bb10eb51d5090e4cbcdc763/tensorflow_gpu-0.12.1-cp35-cp35m-macosx_10_11_x86_64.whl#md5=3d199d867839a077a27238caa84b49b5 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/74/fd/ba27fdc2bb340e16d7c44ad511fea6b6a2ded33b7e150ca43f09980b3f9e/tensorflow_gpu-1.1.0rc2-cp35-cp35m-macosx_10_11_x86_64.whl#md5=09b1ad49fd7c34605af50ad617fef1b3 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/75/e7/bb83c11c1232b86099293d22cb341e94e4111bcac38d96b1fc138372aea5/tensorflow_gpu-1.2.0rc0-cp35-cp35m-win_amd64.whl#md5=ad861fe996a0b6bb354a50cc733d951f (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/78/02/3e24e2490f6a0bbe942ba53a924f6426d7737634d382a18e5f32b8783814/tensorflow_gpu-1.1.0-cp34-cp34m-macosx_10_11_x86_64.whl#md5=ae87332155264b340325db23b5f7b48e (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/78/e7/681c7ab0ab5efe51fd71bb50db9ef1d00312df69755bbad53ebb6100ab5d/tensorflow_gpu-1.1.0rc2-cp36-cp36m-manylinux1_x86_64.whl#md5=837b77c371fc7c04a27923e8f3eda2a6 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/7a/5c/a46b964a30efb3fc6d9d08bd973810d529d336491238ea92f38eb90b11a8/tensorflow_gpu-1.0.0-cp27-cp27mu-manylinux1_x86_64.whl#md5=daf689a62d5ff04058e21a6797cc1cd4 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/7c/12/ce97a30db3e436e400c0ef2908661f50fcedc3f472bad60be5a7e3688437/tensorflow_gpu-1.3.0rc1-cp36-cp36m-win_amd64.whl#md5=2162bc31e3ee548c65e6e999ad4c4699 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/7c/87/9f0c55b041ee4c1cf1278ebb5262926c744bf343637d15eaa501d4c227ca/tensorflow_gpu-1.2.0rc0-cp36-cp36m-manylinux1_x86_64.whl#md5=188af300ac5a70e9522a9de6b25245e4 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/7d/a7/b7cde8ae9345505e8f67ed659bb64a79e60e0340aea829f79758920538dc/tensorflow_gpu-1.3.0rc1-cp27-cp27mu-manylinux1_x86_64.whl#md5=e47670396d3708fd59c91ddc361ab5ac (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/7e/1c/bead42bf336a4e3200aaeaa30cceab6081457df913d8be65f5044f1fe0eb/tensorflow_gpu-1.1.0-cp35-cp35m-manylinux1_x86_64.whl#md5=a15fc411c191303f8694115ef2468404 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/7e/49/b1d27b5e6ef3555cdc7b454523def4de83f24b0b4fc58b53cb53a032fac8/tensorflow_gpu-0.12.0rc1-cp27-cp27m-macosx_10_11_intel.whl#md5=33dbfee5e7cf9749150e4d463441ed44 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/86/6e/05494acab52976660957f95a1e8c626300c252012ae1dfb5fab6a3951215/tensorflow_gpu-1.0.1-cp34-cp34m-manylinux1_x86_64.whl#md5=93dbbaa5c49ef133712aca34fe07c278 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/88/78/38c0428414ed69757b69fb84b394fd2580fc9a27d3a6f50e60b38e8930d7/tensorflow_gpu-0.12.0-cp35-cp35m-win_amd64.whl#md5=469860193c8fa558baf2d3d4564eb140 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/89/55/cf689acd71feb894c6069a2ddf8f4f25b3c75e710051047a6e5b79712521/tensorflow_gpu-1.1.0rc2-cp27-cp27m-macosx_10_11_x86_64.whl#md5=2689b06a780291077c1ce40ab9773b07 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/89/65/73b33592e53ad205582cc800b72083012fb8335830bb3ac1533739db2983/tensorflow_gpu-1.6.0-cp36-cp36m-win_amd64.whl#md5=2bbf0f73b395dfd57a50093d309eb189 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/89/70/9d3e18e674e74abe82c2a86f159143c74eb401ddd7e41e066358728fb700/tensorflow_gpu-1.5.0-cp33-cp33m-manylinux1_x86_64.whl#md5=ca4352a371fc725f02ec09a53fbb3fd4 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/8c/35/a72f6d5ef3f06adba6fa68f0234cfb4f7bd7f552f88d51e07ea8052f8a9c/tensorflow_gpu-1.5.0rc0-cp34-cp34m-manylinux1_x86_64.whl#md5=4c55922ee5af5ae26ba6af12b4bed4a4 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/8e/9c/68e83ca4d5dd1926d816714ef571fc55479e38cb210847478aab9602d8b1/tensorflow_gpu-1.1.0rc2-cp35-cp35m-manylinux1_x86_64.whl#md5=d082366875837955dfe221cead137fa1 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/8f/ea/59719f0d362c44fd15ac7b131faaf980e80e259beb03d669fe962df1577a/tensorflow_gpu-1.2.0-cp35-cp35m-win_amd64.whl#md5=9835b4060efe44b332cf0098602fd0ca (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/90/1c/1548927de75a68a7cd4d407fd4018b9da3b96ffba1502d305e8b2a3c7f1d/tensorflow_gpu-0.12.1-cp27-cp27m-macosx_10_11_intel.whl#md5=d52f95e7dfde2954e8268cf1a5c02ed6 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/91/74/a32889f0b515b067790dadb0d6a4ac55ec13b33b636502452124201a620c/tensorflow_gpu-1.0.1-cp34-cp34m-macosx_10_11_x86_64.whl#md5=563cb448a3764e2a12a8e2bb7cf22658 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/91/80/b8ad2bfdba2af2e0e09f084b3504770adefe7a23207ee3eb081f1ef7e852/tensorflow_gpu-1.4.1-cp33-cp33m-manylinux1_x86_64.whl#md5=e80f06b14d1a3cef98441beb43c8f33e (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/91/b5/5219622fa7c17197eb1611eaa045270737e1a57eb854ef5359aac7d79cd7/tensorflow_gpu-1.4.0-cp27-cp27mu-manylinux1_x86_64.whl#md5=34748cd1eec5181399f74b66d5202a0b (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/91/ed/b6370f46142eb783f6aabf0fb66b365e4d4519a2390ac56f91d746f05f93/tensorflow_gpu-1.2.0rc2-cp35-cp35m-manylinux1_x86_64.whl#md5=b78d7b0531f7a47ce8462367c07c31f7 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Found link https://pypi.python.org/packages/92/4f/3f20433f514a3c17aad48ce1b13b785b939ee08edfd152674cf89c4cafd9/tensorflow_gpu-1.0.1-cp36-cp36m-macosx_10_11_x86_64.whl#md5=1b4752a8f7ab7eb60d0c2538d2c6074c (from https://pypi.python.org/simple/tensorflow-gpu/), version: 1.0.1
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/92/a2/26b19ed54da01f8534ed3c4d4e42a28dc0a112caca8da93bec0ac1c2cc78/tensorflow_gpu-1.4.0rc1-cp35-cp35m-manylinux1_x86_64.whl#md5=57902011668e009d76337e5b56a74596 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/92/b2/ac00ed91f392bfb79564cf87f653544f8609263ec72fdef7fd0d868e8fd3/tensorflow_gpu-1.5.0rc1-cp34-cp34m-manylinux1_x86_64.whl#md5=305313b3eed161e53f803018f2809844 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/96/2f/add5d94ea25811a0f53d2b19b656b3ed36e9f2a87ecc0702b0b60d0f24ec/tensorflow_gpu-1.2.1-cp35-cp35m-win_amd64.whl#md5=558e3a2a7c0e3508117bd9996a5c416f (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/97/b8/c356739e174853defbe959504e36ff1ab457f14f6843ecfc70bd283f6c89/tensorflow_gpu-0.12.0-cp27-cp27mu-manylinux1_x86_64.whl#md5=4e65d3c03e403e12f65f302dc2cd4206 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/9c/5f/0899d614f72223670f32bc4859bbb5bd4c30f1bb8aa78ba8087750db3756/tensorflow_gpu-1.6.0-cp34-cp34m-manylinux1_x86_64.whl#md5=263d47ba52e34eb5b281bd2ae67caafb (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/9f/5a/6d172198d5319f43ee3304a6405715438e52aebe850e17e0c028c19e99a8/tensorflow_gpu-1.2.0rc1-cp33-cp33m-manylinux1_x86_64.whl#md5=e53609d081749a08cbe16031b032aee4 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/a0/92/e06934b5b24d003a359acfd7b9927969f95436f28b69493a8251eda512ab/tensorflow_gpu-1.0.0-cp33-cp33m-manylinux1_x86_64.whl#md5=c9c8a4616a980d895ccad58cddd6ba63 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/a1/3f/d2ce7c42b6fbb3dd5fdb9a6ad5dee42b2758cefc82f12000ba947b49a295/tensorflow_gpu-1.1.0rc1-cp34-cp34m-macosx_10_11_x86_64.whl#md5=0e86128eaba3842f6ebd633ff3219fc7 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/a6/00/047122c6f545df03a2cfdca9100c0f8ee3838e602f63a9e4ef7cba0c1e76/tensorflow_gpu-1.3.0rc1-cp33-cp33m-manylinux1_x86_64.whl#md5=16187f36966de9845ec2e80b8fffdd71 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/a6/1e/3b6d42c801e4d9713287f52fad39b337ea27640d4075dba1c74214834e87/tensorflow_gpu-1.0.0-cp35-cp35m-macosx_10_11_x86_64.whl#md5=51143b04be6813c6d49b806d212e6730 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/a7/d7/62fd3d30b335f34760c3de9bd70c32b6a6d18e1e243d28571410498bf37e/tensorflow_gpu-1.2.0rc2-cp35-cp35m-win_amd64.whl#md5=032e1044ce2596648086363feabb078b (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/a8/06/4ff27abc96059b83e8bd25d58863fae60c1f14fd506638596eb8c79129e6/tensorflow_gpu-1.6.0rc0-cp36-cp36m-win_amd64.whl#md5=0b5c136d303a22ab646929ae98403301 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/aa/8e/a209a8a1a6eb3d7053ccbd104a3ca251cda2baacd3c77145f2b140e7f734/tensorflow_gpu-0.12.1-cp33-cp33m-manylinux1_x86_64.whl#md5=523b3590d1ce9dc4c870e155f9c020b8 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/ac/80/2821c92ee5c60134a1edd8d5e4696a4d2b0a7e09360ab657d931b2660d14/tensorflow_gpu-1.2.1-cp34-cp34m-manylinux1_x86_64.whl#md5=e2597b5382a50ffd3113bfdf222a2f7c (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/ac/f3/20e7333a9aa413fd5df1826ecfc06f8241469da068677c3e136b5fa7e364/tensorflow_gpu-1.3.0rc2-cp33-cp33m-manylinux1_x86_64.whl#md5=2394f65fd0f80be0d58408d085381847 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/ad/70/4ed5a455f0e64b357c844c348e3ad6bc1424ed9fc1b99e7e09d5eebffb12/tensorflow_gpu-1.1.0rc0-cp27-cp27mu-manylinux1_x86_64.whl#md5=49e8b1249e3c6b744b19f7b48f0cd239 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/ad/bd/bb96a3203296fa4400e51068d48824efeb72922a5608300bdcceafb38eaa/tensorflow_gpu-1.3.0-cp35-cp35m-manylinux1_x86_64.whl#md5=5c1a79023cf04f1b4964595bf769b8a4 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/ae/54/7ead63ba0ac1785bdff742055afd0fd7c291fb6a14c10388c864565dace3/tensorflow_gpu-1.4.0rc1-cp33-cp33m-manylinux1_x86_64.whl#md5=38a756cb9f40902240938797b829bb3d (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/ae/9f/2d853ce10cebf12d15d9f4a65e9da76c02cef28c49c2ffc14f72c0934634/tensorflow_gpu-0.12.0rc1-cp35-cp35m-macosx_10_11_x86_64.whl#md5=d6e8b7d624b14efbbf74e31d97c43f29 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/b0/27/d9728a537b556845abaa23084834e286072e0a688b701353183656cf45a2/tensorflow_gpu-0.12.0-cp27-cp27m-macosx_10_11_intel.whl#md5=50e2b86aff959b9874eeee8dd5d675fa (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/b1/8b/b525c4352039c000819b6e122b7cd5cb5a76fe6a25cb3ca5ddeead9f2da3/tensorflow_gpu-0.12.1-cp35-cp35m-win_amd64.whl#md5=9759ac0bfbdf25176046c6f462c3e8ff (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/b1/8c/35ba6f94dd9729517b899c3ba764e604ffe22daeba04f7c771dd452ba55b/tensorflow_gpu-1.6.0-cp36-cp36m-manylinux1_x86_64.whl#md5=5e043ee87f76c1d0bf2fd9546174ac5d (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/b4/03/da328c1d1a1c5ed745607833dbe43938c909cf5c89b528e017c9cbc0403c/tensorflow_gpu-1.5.0rc1-cp36-cp36m-win_amd64.whl#md5=3476ceb95b805475f6ec172d96d809e1 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/b4/44/c6c9c8f04fc04b3240a2d5993470011cf8eda17516f5773cec607f3af49f/tensorflow_gpu-1.5.0-cp34-cp34m-manylinux1_x86_64.whl#md5=529dc3a88d99329251e1b0535c67edde (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/b4/71/854016ec42e426fca68b30d05e477d130c655a34b7cced8b203f666be292/tensorflow_gpu-1.2.1-cp36-cp36m-manylinux1_x86_64.whl#md5=703f6617ac1feedf5d2160d836a1b8ae (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/b6/42/5a26e8ed1d687661342f6fc2c807c1df150f7457e3fe14a23237f600bc14/tensorflow_gpu-0.12.0rc1-cp27-cp27mu-manylinux1_x86_64.whl#md5=594bec09cbda14d9ae587f1b0ce319d2 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/b7/f4/c0acfc734536bee76b69555edf12f8a05d40ee84ed4f24fa4dd60248d47a/tensorflow_gpu-1.3.0-cp36-cp36m-win_amd64.whl#md5=a952e4ec8efb46d5142acb1467af33c9 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/b8/16/14fbe414f2b3c39c5d01521e38e7aaec384f8fbf26eec021d247345260c3/tensorflow_gpu-1.3.0-cp36-cp36m-manylinux1_x86_64.whl#md5=7b694289e1fc977a47cd89f2876d3528 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/b8/76/7c746ffc96dd4eaa230b22ea06a965a480f7f6db5a7f7f7dcc1ae749e6ca/tensorflow_gpu-1.0.1-cp35-cp35m-win_amd64.whl#md5=f330d0aeacbd0fc76084764d16b1eed0 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/b8/8b/55f0106a8c52277778c76a160bb78f3d8c4cf138c72dfe135ed72ae54397/tensorflow_gpu-1.1.0rc0-cp35-cp35m-win_amd64.whl#md5=06e97dfe67b4224320fcf558e67c9a96 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/b9/3f/46bdae63c309e7cc0e96bead30294f82c870fae1a34a09b9a67cb31d1633/tensorflow_gpu-1.3.0rc2-cp36-cp36m-manylinux1_x86_64.whl#md5=d27d3e597040f16030eb6de456d24ead (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/ba/84/0bcc82b450eabe04c445969349f0e590b27ec516099c13a38da05f1299d9/tensorflow_gpu-1.1.0rc2-cp33-cp33m-manylinux1_x86_64.whl#md5=7c5571515a0a5ef15aed10db698e5f41 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/bb/3f/3198064f50980d637144439717057e5912e8806f2878e87db2e7997b5d03/tensorflow_gpu-1.4.0rc1-cp36-cp36m-manylinux1_x86_64.whl#md5=5d913091462c6c3c681a30a5f46241d5 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/bb/d3/770f5015e6843185aa5194a340bc32e8790958357cf788e95b9ec106acbd/tensorflow_gpu-1.6.0rc0-cp34-cp34m-manylinux1_x86_64.whl#md5=b5d3b5a36e1e8f416ad520aa3e7b4e25 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/bd/7b/a8e0626d77ee43248971c6c771512137e0ac8128731878f80ca5d4fdec09/tensorflow_gpu-1.1.0rc1-cp33-cp33m-manylinux1_x86_64.whl#md5=12558e16f85430df98c05f8c36ff30a2 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/bd/bd/0a22da55939aa3090f3cee1cb8d854d2ee865b4433c59459bc9b49699414/tensorflow_gpu-1.5.0rc1-cp33-cp33m-manylinux1_x86_64.whl#md5=0fd932095cbfd8f75603d395d8a9ba61 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/be/08/f6e75fe03602c320540069adad5b128840481a6563e2fa8cdebbd97985a5/tensorflow_gpu-1.4.0rc0-cp36-cp36m-win_amd64.whl#md5=337b8ebabb2b23a24075591f6b935d87 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/be/df/10bc0ad40f4dbef98d716f918a6f9fc8a9e4a61095f1ebcdbb3e8f519128/tensorflow_gpu-1.2.1-cp27-cp27mu-manylinux1_x86_64.whl#md5=eaf27c1798289068991c42ef0f2b4b03 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/c0/e8/bb0efa290731d4693073589ab0ce2038a4654a61604ffa8cba6f736c3b06/tensorflow_gpu-1.0.0-cp35-cp35m-win_amd64.whl#md5=99186695330564f2303eaac5fb381dc4 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/c0/eb/9a92c8ff72b3ffc6cf00a86394db5944772325e47e6d1e8dd6a12fb068ef/tensorflow_gpu-1.1.0rc1-cp35-cp35m-macosx_10_11_x86_64.whl#md5=3cbc1971c780e25717bbd0479ec9c80a (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/c1/65/dfdfdca9312d85a8ab01b3d4fd02dd9bf95de9bbb5ad01ac57b7aa99aee0/tensorflow_gpu-1.4.0-cp33-cp33m-manylinux1_x86_64.whl#md5=a919242ec4b0e179fa7e55b381626f3d (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/c2/10/61d08e5655494a52cfe1898a17600df00c8abc327aa2447e028159c68653/tensorflow_gpu-1.6.0rc1-cp35-cp35m-win_amd64.whl#md5=3208d86e7ee008e58f702f401d69f718 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/c4/5f/c3e30237047c7e4b8ef27d62dfd9ddb9941c3ec011bebfce0ba1525e28e0/tensorflow_gpu-1.1.0rc1-cp33-cp33m-macosx_10_11_x86_64.whl#md5=4725ce2b01f074cfc546a94488dad558 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/c4/bf/2fb874664753eb2f601cbecba8bd2238575e88ea05c7885c13b7bc5df406/tensorflow_gpu-1.6.0-cp35-cp35m-win_amd64.whl#md5=a425626dd7247e6261d68f5c17f76ec6 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/c8/3a/72933d79f8aabe18faf516e6fab8928b0be068cbdc4e23729782f3e5ba81/tensorflow_gpu-1.3.0rc0-cp34-cp34m-manylinux1_x86_64.whl#md5=602d5e67b6c63927261ce46485c4dc43 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/ca/5d/0cc7fe8943e96626e565d3e375422c78520d7a2fa7ea51fa65beed15e219/tensorflow_gpu-1.1.0-cp35-cp35m-win_amd64.whl#md5=d3c9066563ec98c22e550f2b6b4e28ba (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/ca/c4/e39443dcdb80631a86c265fb07317e2c7ea5defe73cb531b7cd94692f8f5/tensorflow_gpu-1.3.0-cp27-cp27mu-manylinux1_x86_64.whl#md5=c476a9ae1227fb072a781866bd77e7f7 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/cb/4d/c9c4da41c6d7b9a4949cb9e53c7032d7d9b7da0410f1226f7455209dd962/tensorflow_gpu-1.2.0-cp36-cp36m-manylinux1_x86_64.whl#md5=f6c4d4c671c591ef6e346252c85c0eaf (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/cc/8e/84670a077f78f8b7dca0d6da0873203befbaf9a5100b3bb55a8d9100c156/tensorflow_gpu-1.0.1-cp33-cp33m-manylinux1_x86_64.whl#md5=6bc9ed1a22c70c0eb99a3578d74727a0 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/cd/3e/aebe62254b463f8db5a66fa6ca2e8b8f63799ec66e52a998edd85fcf483c/tensorflow_gpu-1.4.0-cp34-cp34m-manylinux1_x86_64.whl#md5=cf0f2eceeb6504d43a95c0309a04b34d (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/cd/fa/37080d27f5ed0a4f3ac937bf74d18e20d3abe057d4176a3cd012fac9f093/tensorflow_gpu-1.1.0rc2-cp34-cp34m-manylinux1_x86_64.whl#md5=9e353b0953df89c9b2ca63bc9492052b (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/ce/1c/25cef5d6cfd9f2db09eb1d99dc8a4523e75806fd3a8ccc40ded21d7588cc/tensorflow_gpu-1.6.0-cp33-cp33m-manylinux1_x86_64.whl#md5=5d6d519acd29440fecb04e0326ea3335 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/ce/9e/30335222fd633fe362a86352f47e714035ba380375d89d13dabb256c33f4/tensorflow_gpu-1.0.1-cp35-cp35m-macosx_10_11_x86_64.whl#md5=44f7f6dee748319504b4dd39cd5cf732 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/cf/95/d7ba49e73125cf0f3f8d4dcbb05a5b3ebb25205b0af7ba844f1a1300f79a/tensorflow_gpu-1.4.1-cp27-cp27mu-manylinux1_x86_64.whl#md5=66d4da3aead93c888f3f8edb78260135 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/d0/96/810f85fec5689f1652ff1b04dff024e7bc4e390e0a0905cfb24fa8223c41/tensorflow_gpu-1.3.0rc0-cp33-cp33m-manylinux1_x86_64.whl#md5=e2fb5b01c2a718c57296e5acb2ad8836 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/d1/ac/4cbd5884ec518eb1064ebafed86fcbcff02994b971973d9e4d1c3fe72204/tensorflow_gpu-1.2.0-cp34-cp34m-manylinux1_x86_64.whl#md5=69c299e9af480a1f570279d7e8a0b959 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/d3/65/c89faecb6559cfcbaca901aea7ec4432363cb2e519481038e7f495f99aff/tensorflow_gpu-1.3.0rc1-cp34-cp34m-manylinux1_x86_64.whl#md5=01d66116dc8d43446eedaba0b244a437 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/d3/84/87cd052ffdb04c50985cdf23ac18fa6d479b916bc7048a05096eb2c522a0/tensorflow_gpu-1.1.0-cp27-cp27m-macosx_10_11_x86_64.whl#md5=e7366d4503155d5cb0079516a446bd51 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/d3/f9/de370ded9f8222236383c78a8f8bfea33c592d0b46a5e7e1fc3976d3730c/tensorflow_gpu-1.2.0rc0-cp35-cp35m-manylinux1_x86_64.whl#md5=f1ec090c2ed8560cd420bd96c9d5dafb (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/d5/8b/094add4d2d667ddfef867285e2c16ac4fee6a1d51cece87d6d490b6e5571/tensorflow_gpu-1.5.0-cp36-cp36m-manylinux1_x86_64.whl#md5=470ea7ec62a189424ed742f7743e761a (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Found link https://pypi.python.org/packages/d6/54/f7cf39483b16c25a8c132dc0b81aea2ae91e367da749f17dddeaf739123a/tensorflow_gpu-1.1.0rc1-cp36-cp36m-macosx_10_11_x86_64.whl#md5=92e696253d0a60f0b68e86c1de90062b (from https://pypi.python.org/simple/tensorflow-gpu/), version: 1.1.0rc1
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/d6/f1/de93066a938a9b49b214857046dc5c0a78429ab592d51fda14302bdc3569/tensorflow_gpu-1.4.0rc0-cp36-cp36m-manylinux1_x86_64.whl#md5=0eb197314ed39f821e2a14f72c5917be (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/d8/ed/2d16ed6989a8340381e8a93b307f5cc374d14bf2e3df1db0b9ebb95de121/tensorflow_gpu-1.3.0rc0-cp27-cp27mu-manylinux1_x86_64.whl#md5=5216dceb914b9b369366f4abe2b960e1 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/d9/9a/be0080b302d605b0db769985c272e8d9e8fda642a115bc4b5b4ca5ee1722/tensorflow_gpu-1.4.0rc0-cp34-cp34m-manylinux1_x86_64.whl#md5=2a2f4b680e1a54be2136504014abc1d8 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/dc/1b/4c69ecf43c4fe3a04912e7f185c8e395c6b93c62c77d0371d60a09ee9b74/tensorflow_gpu-1.0.1-cp36-cp36m-manylinux1_x86_64.whl#md5=5d2f6b36a217a3add779f4b3a235ca72 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/dd/81/fb8476f123116a7e7e0767914951bb0d0f9946d1f13b217ad1ae08218d17/tensorflow_gpu-1.1.0rc0-cp27-cp27m-macosx_10_12_x86_64.whl#md5=1b615a782f4a67d13b21c012457b5655 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/de/05/98581f1adf48be55390a0cf154b7f092bef3434cb6aa840eb8548f5332fc/tensorflow_gpu-1.2.0rc1-cp35-cp35m-manylinux1_x86_64.whl#md5=2b4d24ec49554f660f8297da6c35203e (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/de/19/8e3bb650c9bd197e786eeb825f6c35517b91255f8db5a076c02a77deeb0e/tensorflow_gpu-1.1.0rc1-cp34-cp34m-manylinux1_x86_64.whl#md5=c6db14eba8b977bf678f6b812e99f414 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/de/e7/55566f94315d2455cca0a4ce2ec05a5587ed59799ef38c4b1aa660977c39/tensorflow_gpu-1.3.0rc2-cp27-cp27mu-manylinux1_x86_64.whl#md5=a984d08e50aac377f9144a62e7078c2e (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/e0/b4/69e60910e5fb600d1203b6eaac8361741ed407855e45e41ba2dcfda88aa0/tensorflow_gpu-0.12.0-cp35-cp35m-macosx_10_11_x86_64.whl#md5=88765a6f1f425df5ca58a12beb95b339 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/e0/fe/9fb7fff32441dff89e00b359dade48f5f071127d604a7259fb6ee1f43e4f/tensorflow_gpu-0.12.0rc0-cp27-cp27mu-manylinux1_x86_64.whl#md5=2216716141fdb265dbd3c31393d196bd (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/e2/28/eec71dbba0499f19588a99d4960de0f4cdc0d0a3b40cc26f76054f4603aa/tensorflow_gpu-1.3.0rc2-cp34-cp34m-manylinux1_x86_64.whl#md5=2b6f9c9eb366b7cda0fafaed22098114 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/e3/6b/fa7ba3fbe364b74d5432d95f3622495fd4581d07e58e3bdd65c9f9400785/tensorflow_gpu-1.1.0rc2-cp27-cp27mu-manylinux1_x86_64.whl#md5=b31a540869c0d1ce4439166c554bcd52 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/e3/d3/4a356db5b6a2c9dcb30011280bc065cf51de1e4ab5a5fee44eb460a98449/tensorflow_gpu-1.4.1-cp36-cp36m-manylinux1_x86_64.whl#md5=b5ceb9705a8bbf57d854266a882c5757 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/e4/da/f86d86b941fa4281a46c0ac0a83c3950ade9f21f522d3d5046a938a048f6/tensorflow_gpu-1.2.0rc1-cp27-cp27mu-manylinux1_x86_64.whl#md5=d866dee6e6127466d5203124937f1e19 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/e5/0a/b3c2b589ec8851402b23a9d9ad54225ed845b9b479a17cfb0f73265aa7a0/tensorflow_gpu-1.2.0rc0-cp27-cp27mu-manylinux1_x86_64.whl#md5=5e76c58f1075c3ac39cda5364dafef63 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/e6/50/1da81909a26cedf5392570506b3b969a5a91d734cb1452229e1d469b7d46/tensorflow_gpu-1.1.0rc2-cp33-cp33m-macosx_10_11_x86_64.whl#md5=a6d5a425ff1b2d62619709f15d21392c (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/e6/ea/90181d922cc2fde8aac7e8d2cfbcca52527e92a0c1ba22a5d561522c0d60/tensorflow_gpu-1.5.0rc0-cp33-cp33m-manylinux1_x86_64.whl#md5=e2b19004059b339dffa6f4a8f35e5535 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/e8/1b/49b9776ce649959f9db0895f922b410798b1ba6c8893def8e6dc5d3fcf31/tensorflow_gpu-1.2.0rc2-cp36-cp36m-manylinux1_x86_64.whl#md5=e89367a2cb81efdcf02697ae73ff8386 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/e8/bb/5a0c110296c2801bbbeca5bd1d1a369ce108fe386446cc693adf74890132/tensorflow_gpu-1.3.0rc1-cp36-cp36m-manylinux1_x86_64.whl#md5=f48561fff8e24c1b8dd27ca599b05220 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/ea/5e/226926f6ac15b0ebd77d082909abf18e2c0cc1a4494e07b551e94127a72b/tensorflow_gpu-1.1.0rc1-cp27-cp27mu-manylinux1_x86_64.whl#md5=22bf9448fa7be438163f0ca074fb6cfc (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/ea/a6/b412d10426db1cf4d166d358cdbc4fd5b0bc4d70900bba2311184da81ecb/tensorflow_gpu-1.1.0rc0-cp35-cp35m-manylinux1_x86_64.whl#md5=742a8685aa58677f6c6392e49e0515d5 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/eb/3e/4ccfdf2a17277be59937dce6b498056e834db5d187ca79f3e446be019536/tensorflow_gpu-1.1.0-cp33-cp33m-manylinux1_x86_64.whl#md5=3a8db4779c8cb1837c21eb11ad755a49 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/ec/47/b9621f12c2aaa892658382af9493e611a0f3ea5e3d7001709d2d31c65507/tensorflow_gpu-1.4.0rc0-cp27-cp27mu-manylinux1_x86_64.whl#md5=dd2ed28d851d76613a9caef3a2c485de (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/ed/54/1cb108d15bead2e5dfce2eda073a95494f676b94021a898736f041915abf/tensorflow_gpu-1.1.0-cp33-cp33m-macosx_10_11_x86_64.whl#md5=b82281460d79a83db298e6fb2ab9e2ec (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/ed/9f/eca29a619627f23956eddc05493e0e651071cbc433c409d28984b0d0fca4/tensorflow_gpu-1.6.0rc1-cp33-cp33m-manylinux1_x86_64.whl#md5=8461b2411924f04ad10a3eb0b6944d30 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/ed/cf/113d0425bb2b2aee09b79e6445b8acdf5bfa49d60ca1c4d96651a1116885/tensorflow_gpu-1.1.0rc1-cp35-cp35m-manylinux1_x86_64.whl#md5=f448848a2485982c294e40e2aff03d3f (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/ee/c3/cdd629d348086fd8c8e2f55856c95ae2b85ddf0d0ae9b0421854e053de52/tensorflow_gpu-1.6.0rc1-cp35-cp35m-manylinux1_x86_64.whl#md5=3d580fef6c0c710e3a5c8ab916dc7db2 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/ef/a7/4ca070e78baad9584c100ab4055a7372cbfe5f7a8f6aeb7b64e821d1887c/tensorflow_gpu-1.2.0rc0-cp34-cp34m-manylinux1_x86_64.whl#md5=4eb1b6482e167b996905cc8f058920ac (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/f1/c9/6b9a2844f58f8d3e29b1ba34ffe4b358b1cc5d1b9e36fe5ebc9d51edeaa3/tensorflow_gpu-0.12.0rc0-cp35-cp35m-win_amd64.whl#md5=8e1a8e29a8ea5cf01f187f2809dc7357 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/f2/5e/a51a5df287753c69459ca4572ecd9db78a259007734c4e19af7c5d68080c/tensorflow_gpu-1.2.0-cp35-cp35m-manylinux1_x86_64.whl#md5=4ad78131f651c1022dc787025935e9a9 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/f3/8b/4d5616a0d9938a1bfb2d6eba5940637eb15799d36336ba2d4c6bf768aee1/tensorflow_gpu-1.6.0rc1-cp34-cp34m-manylinux1_x86_64.whl#md5=cc04b2e8cfdd7db0389b819ecc74e711 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/f9/f5/843f87879ceed143456d38cf8d027b870aff7b5bb941935fa58933c04d58/tensorflow_gpu-1.4.0rc0-cp35-cp35m-win_amd64.whl#md5=cd9e633244e824c7a78493cfb9a20b5e (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
DEBUG:pip.index:Skipping link https://pypi.python.org/packages/fc/06/93f9b5e9fe751dfcd4cbb516608636e036a0a03b935df7d7bb7102b09496/tensorflow_gpu-1.2.1-cp35-cp35m-manylinux1_x86_64.whl#md5=23effbb5c1a9319d2c5b333dcda50297 (from https://pypi.python.org/simple/tensorflow-gpu/); it is not compatible with this Python
CRITICAL:pip.index:Could not find a version that satisfies the requirement tensorflow-gpu==1.6.0 (from versions: 0.12.1, 1.0.0, 1.0.1, 1.1.0rc0, 1.1.0rc1, 1.1.0rc2, 1.1.0)
Warning: Your dependencies could not be resolved. You likely have a mismatch in your sub-dependencies.
  You can use $ pipenv install --skip-lock to bypass this mechanism, then run $ pipenv graph to inspect the situation.
No matching distribution found for tensorflow-gpu==1.6.0

I'll see if I can fix this, but I make no promises.

I actually think I can give you some quick answers to this one once I get in

I got pip to not ignore the wheels, but when it goes to parse them:

pip.exceptions.UnsupportedWheel: tensorflow_gpu-1.6.0-cp27-cp27mu-manylinux1_x86_64.whl is not a supported wheel for this platform. It can't be sorted.

@kennethreitz i was attempting to grab ABI tags from inside the virtualenv here. Same principle applies but swap out the virtualenv tags for others https://github.com/pypa/pipenv/compare/resolver_cross_compatibility

Fixed in master

The following Pipfile:

[packages]

tensorflow = {version = "==1.6.0", sys_platform = "== 'darwin'"}
tensorflow-gpu = {version = "==1.6.0", sys_platform = "!= 'darwin'"}

Now produces the following Pipfile.lock:

{
    "_meta": {
        "hash": {
            "sha256": "4f35136d67cb719e82587e5949dba7077b1059d3ea0a7c64ceba516331497bf6"
        },
        "pipfile-spec": 6,
        "requires": {},
        "sources": [
            {
                "name": "pypi",
                "url": "https://pypi.python.org/simple",
                "verify_ssl": true
            }
        ]
    },
    "default": {
        "absl-py": {
            "hashes": [
                "sha256:ba6dc5510108fdfcf7176f8b38a5cc2482f2e902eb7211cbe6666998ea58daf9"
            ],
            "version": "==0.1.11"
        },
        "astor": {
            "hashes": [
                "sha256:64c805f1ad6fbc505633416b6174fc23796eb164f371a7dc1f3951ea30560fb5",
                "sha256:ff6d2e2962d834acb125cc4dcc80c54a8c17c253f4cc9d9c43b5102a560bb75d"
            ],
            "version": "==0.6.2"
        },
        "gast": {
            "hashes": [
                "sha256:7068908321ecd2774f145193c4b34a11305bd104b4551b09273dfd1d6a374930"
            ],
            "version": "==0.2.0"
        },
        "grpcio": {
            "hashes": [
                "sha256:022dc2a6d1537a5a16af4ccc3355ad7b512f9c627a1d5d579cd7c18830378bb3",
                "sha256:025a591606b0aca13bec3e019d6acec01a39421f01b915b98a3a93ea0a53b412",
                "sha256:03265472d39bf26f124c3ef68446f7873c8260893e6ae65b323a5b51ed52e580",
                "sha256:10efe2e016c3ca7a370771ffcf1de9baa3456d4bccefde0f4ce3be091d871c8f",
                "sha256:14bca481188c3f19135012aaff9abefa4e15529c7e1aca3084183d78094d06bd",
                "sha256:17240d672b5c1c9ff22e52236c1870413b7fb5af762b97ce5a747a55e0a57e98",
                "sha256:1bc36e512741f82c1d73f42df536aa2ab75d840f0d35c149b5d0bee1aed16862",
                "sha256:224c513fbe0c3ca546870e5c21b08a8a56cd25795b76b3192ee9702a3344764b",
                "sha256:2894466c499d9752e0d49ee8adc5ee12c676d86211fc1b292bf713cc7cfe9853",
                "sha256:435b3bab2e34814666854eec203c77b169df1cd56cf22fe449cf5510af416e7d",
                "sha256:4fa658a7e1ba5727ca066b1c8bb64c6befb98f2b8007f04a16c7c84555bf11b9",
                "sha256:88afda198adb0a9da52a66152062027a57877b46f59ffcf55acc3cbfaff77160",
                "sha256:982439a872d41f969724efc139e0416ba45e0d7446e9a41fd2ebe19351adff9a",
                "sha256:a1bc37c9910d0fbf4d9e80d5822f92c6e01e28dd1eb01323636ed19666b537cb",
                "sha256:aa473b8276de39eeccc4ad6cbb7fd7feab0868180d72c0c93226033c79fa69b7",
                "sha256:ae82bf2f7ceac6ba956e816120b4f66bda035571350e46b61bbdde1808aed1dd",
                "sha256:b56e4f355c2499bb0bf8f8f4d0362b618b06afdfd2c10722710596dc7e295c6c",
                "sha256:d410835e7554d064c2d99cfa0dd393ffbb0ccf52145ab51c725a8472ed254a3c",
                "sha256:d9e3105f6de6cb759b028702bdd21cb36d27e010227669e43c675b9957a3c180",
                "sha256:da306c80d69801a3e4115c448ed4ad481957d723ec1e00b99497c6661573c3e5",
                "sha256:e86639989c03831912fd9924beda26f6e9ffcc267656cea035bde9d88cf793b2",
                "sha256:ea9564f58144e2f07995d57fb8e636be5efb084cd59c8651391ada2bb75dc0ff",
                "sha256:f4a38071dd27f140cfe774f56aecdf0e33de926c21289cc9c7521ce8dd91fc1c"
            ],
            "version": "==1.10.0"
        },
        "numpy": {
            "hashes": [
                "sha256:12cf4b27039b88e407ad66894d99a957ef60fea0eeb442026af325add2ab264d",
                "sha256:2da8dff91d489fea3e20155d41f4cd680de7d01d9a89fdd0ebb1bee6e72d3800",
                "sha256:377def0873bbb1fbdedb14b3275b10a29b1b55619a3f7f775c4e7f9ce2461b9c",
                "sha256:3d7ddd5bdfb12ec9668edf1aa49a4a3eddb0db4661b57ea431477eb9a2468894",
                "sha256:49880b47d7272f902946dd995f346842c95fe275e2deb3082ef0495f0c718a69",
                "sha256:4e2fc841c8c642f7fd44591ef856ca409cedba6aea27928df34004c533839eee",
                "sha256:6b1011ffc87d7e2b1b7bcc6dc21bdf177163658746ef778dcd21bf0516b9126c",
                "sha256:6b8c2daacbbffc83b4a2ba83a61aa3ce60c66340b07b962bd27b6c6bb175bee1",
                "sha256:788e1757f8e409cd805a7cd82993cd9252fa19e334758a4c6eb5a8b334abb084",
                "sha256:7d4c549e41507db4f04ec7cfab5597de8acf7871b16c9cf64cebcb9d39031ca6",
                "sha256:81b9d8f6450e752bd82e7d9618fa053df8db1725747880e76fb09710b57f78d0",
                "sha256:89b9419019c47ec87cf4cfca77d85da4611cc0be636ec87b5290346490b98450",
                "sha256:9501c9ccd081977ca5579a3ec4009d6baff6bacb04bf07214aade3324734195a",
                "sha256:9b762e78739b6e021124adbea07611682db99cd3fca7f3c3a8b98b8f74ea5699",
                "sha256:a1f5173df8190ef9c6235d260d70ca70c6fb029683ceb66e244c5cc6e335947a",
                "sha256:a3d5dd437112292c707e54f47141be2f1100221242f07eda7bd8477f3ddc2252",
                "sha256:a8bc80f69570e11967763636db9b24c1e3e3689881d10ae793cec74cf7a627b6",
                "sha256:b803306c4c201e7dcda0ce1b9a9c87f61a7c7ce43de2c60c8e56147b76849a1a",
                "sha256:c8000a6cbc5140629be8c038c9c9cdb3a1c85ff90bd4180ec99f0f0c73050b5e",
                "sha256:e2335d56d2fd9fc4e3a3f2d3148aafec4962682375f429f05c45a64dacf19436",
                "sha256:e5ade7a69dccbd99c4fdbb95b6d091d941e62ffa588b0ed8fb0a2854118fef3f",
                "sha256:e8522cad377cc2ef20fe13aae742cc265172910c98e8a0d6014b1a8d564019e2",
                "sha256:fa0944650d5d3fb95869eaacd8eedbd2d83610c85e271bd9d3495ffa9bc4dc9c"
            ],
            "version": "==1.14.1"
        },
        "protobuf": {
            "hashes": [
                "sha256:09879a295fd7234e523b62066223b128c5a8a88f682e3aff62fb115e4a0d8be0",
                "sha256:14813a3421ff0144e8d4e81ed83a3fbe350d8d85cbe480bf2e81cf45e8083e0d",
                "sha256:18a4a387e8378dbbd53ebe9cc925ea2fe2a7b98c497833ea345803cb53b885d9",
                "sha256:24c1cc840b4832a909bbeac664fd8f878cf72b8ab97bfe4fb82a156c3f1f0e15",
                "sha256:40c943a8ffb3501164da1d2b537ad2e33d08daf81fbb3e9073bf291726a24467",
                "sha256:41e916354265d2f54b95e454305c98f90bb30fafb817119540753e67f193de57",
                "sha256:59610aeb5ade675106dca26c771814a1aa63bf2b3780584853e3dd447ed5c52f",
                "sha256:59ff8a204aa2ef98d6c25c2adffb13dda81bb4ac6ffb0829c92e801241b6477b",
                "sha256:64a3600d2a531d7c516c371efa431035ce501ab8425dcc8bdb99eddf5a4d34c9",
                "sha256:6e1c0972462ce9dc4d2860d533487b39f89de00b3f30b99c31a6b3e8fbf8b787",
                "sha256:75e1a7b12248a98b620ffbda3e41767aa2ae57c7cc553a12407a48c44f58f2e7",
                "sha256:84ed523853c82c76dd1dfd15f31de2d66fa7cb22a48aa42dbc32465868d7e4af",
                "sha256:87908d494be2b46a55de5e55ca11d9a2508b59b035c1b0549c3b692a77f57a7b",
                "sha256:88c7958dad426920a43af58c5805d2de860a33f82d47f5a102af25f2788682c7",
                "sha256:8ba58356fc40ed7749c73eeae3d86f6a9e756ba1ae5f5833990b237b7d61ba09",
                "sha256:94d159e2bbbe4df1b5f0715965e284f2156ce127a7d521a3dcbdd38e945bc4c0",
                "sha256:c4d531e745168c16fc7abff12922c491d34f4063c1b49fe5417b72be869f5df6",
                "sha256:e457146bb9f997736460b10b2f2a9284603db4bbd60c8c431b5b4b309efbe036",
                "sha256:e774cd03628c0b2f850a09a8c005fe6113f97e37f6df07a7b20221dc1ee4efd3",
                "sha256:ec51286554eceebcf169a3a8604861e113d28fc98094dcbedc6067f058478917"
            ],
            "version": "==3.5.2"
        },
        "six": {
            "hashes": [
                "sha256:70e8a77beed4562e7f14fe23a786b54f6296e34344c23bc42f07b15018ff98e9",
                "sha256:832dc0e10feb1aa2c68dcc57dbb658f1c7e65b9b61af69048abc87a2db00a0eb"
            ],
            "version": "==1.11.0"
        },
        "tensorboard": {
            "hashes": [
                "sha256:835ecbfee0ce505f8365435c23d1c7d6fd527fcad8a4829e4145b9f6f41d0ca2",
                "sha256:ab3e4568a277d4d06fc2928e6e5aa2a32ece073ad234a6b7ade08671dbf8f339"
            ],
            "version": "==1.6.0"
        },
        "tensorflow": {
            "hashes": [
                "sha256:0b41fb0d1d0be2d495dad67138b5a118f7b206a07b2c96474414109dbfe056a8",
                "sha256:17981691a5711dd8b0479b293229f3a22d2f0503d04c2691a2ef66ee50903257",
                "sha256:1ba17a5df0c2d3e0000f88479b3ce7a35e05ced3056e4594781e81afb45ac8fd",
                "sha256:2f89cf8a05198e7e2415d040b679b4f50ef86c0c3834f4bf86d0b836ecc14a27",
                "sha256:638e690a4efc675dbfd0bb98f0c5db1b6b54e9791513fced4a4df80a3db946cb",
                "sha256:6d6f8ac26f857ab79c13b594efcb13d5485d1dbfdaa8e54b064ea7b4b28a9cf8",
                "sha256:8c504b9c70649d8602592b148944b34207fde8d1f5d61aaf435dab99118a58bc",
                "sha256:afb1f05ab3f8ff569b91be5ecb066b926dff1afd029f4f296964317f461268a6",
                "sha256:b6b4c52c61f9cea58a93e4c178e8acec157ab2ed8824350ec536f107fa67a491",
                "sha256:d0e5daf51cf9a711a0dc95b5bf4a9eeeb1cb485197cb923b8940f2a905850407",
                "sha256:d9c628c857ccd9213d75e0747fcad6ef4d6866a79d1a3987d87a5957c3f0f819",
                "sha256:eaa4af9eb161af500a5e3c65dcc434d63478801539f51cdd8c01572eda9dfa2d"
            ],
            "markers": "sys_platform == 'darwin'",
            "version": "==1.6.0"
        },
        "tensorflow-gpu": {
            "hashes": [
                "sha256:2c85bf39f16845b4cb5c8e132087d31c783860738580f4414ebf9c8651d5f66a",
                "sha256:39fec463f8a9b4ff3c3b69de7cd291d624b7df8d0522ad282125fbd50f47338a",
                "sha256:4825d3ad6712dce1df8b2901f5283bbcb50f6a8ddbe69920e015bef53f8fb503",
                "sha256:55fc91a5b109202813ed27dbb48e52fbb79a84a4292cc9e467e997221bca66c6",
                "sha256:5a8ab1bad94d8fde331ad89d2123bbb8f8053d7ed7c5bc9045bd555350e54025",
                "sha256:9c903ef7fb42cce353442ce2c92e169b78ce6d130e70de7957b5590429e11a22",
                "sha256:c2b21825c0bf89c3d925b857af0c5f61b59377bbeb11c95bcfcffd295c36cd52"
            ],
            "markers": "sys_platform != 'darwin'",
            "version": "==1.6.0"
        },
        "termcolor": {
            "hashes": [
                "sha256:1d6d69ce66211143803fbc56652b41d73b4a400a2891d7bf7a1cdf4c02de613b"
            ],
            "version": "==1.1.0"
        },
        "wheel": {
            "hashes": [
                "sha256:9515fe0a94e823fd90b08d22de45d7bde57c90edce705b22f5e1ecf7e1b653c8",
                "sha256:e721e53864f084f956f40f96124a74da0631ac13fbbd1ba99e8e2b5e9cafdf64"
            ],
            "version": "==0.30.0"
        }
    },
    "develop": {}
}

cutting the release

v11.1.8 released, which includes this fix!

Fantastic! Just tried it and it works. Thanks for the quick response and fix!

thanks for the report!

Was this page helpful?
0 / 5 - 0 ratings

Related issues

leileigong picture leileigong  Â·  3Comments

jeyraof picture jeyraof  Â·  3Comments

jacek-jablonski picture jacek-jablonski  Â·  3Comments

johnjiang picture johnjiang  Â·  3Comments

bgjelstrup picture bgjelstrup  Â·  3Comments