pypa / pipenv

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

Fails to install googleapis-common-protos in package distribution #3886

Closed arshbot closed 4 years ago

arshbot commented 5 years ago

Issue description

A packaged distribution version does not install googleapis-common-protos as a dependancy

Expected result

A packaged distribution version should install all dependencies as specified.

Actual result

The packaged distribution does not install googleapis-common-protos

Steps to replicate

To replicate with the erroneous distribution ( notice how googleapis-common-protos isn't included in the install log ):

$ pip3 install lnt

Collecting lnt
  Downloading https://files.pythonhosted.org/packages/d1/44/31546d04776675e84877e3c1cf34d4bd0a5779bf412b9b29d9e8cbd8c429/lnt-0.2.1-py3-none-any.whl (48kB)                                   
    100% |████████████████████████████████| 51kB 3.1MB/s
Requirement already satisfied: grpcio in ./.local/lib/python3.7/site-packages (from lnt) (1.22.0)                                                                                            
Requirement already satisfied: click in ./.local/lib/python3.7/site-packages (from lnt) (7.0)
Requirement already satisfied: grpcio-tools in ./.local/lib/python3.7/site-packages (from lnt) (1.22.0)                                                                                      
Requirement already satisfied: PyInquirer in ./.local/lib/python3.7/site-packages (from lnt) (1.0.3)                                                                                         
Requirement already satisfied: six>=1.5.2 in /usr/lib/python3/dist-packages (from grpcio->lnt) (1.12.0)                                                                                      
Requirement already satisfied: protobuf>=3.5.0.post1 in /usr/lib/python3/dist-packages (from grpcio-tools->lnt) (3.6.1)                                                                      
Requirement already satisfied: prompt-toolkit==1.0.14 in ./.local/lib/python3.7/site-packages (from PyInquirer->lnt) (1.0.14)                                                                
Requirement already satisfied: regex>=2016.11.21 in ./.local/lib/python3.7/site-packages (from PyInquirer->lnt) (2019.6.8)                                                                   
Requirement already satisfied: Pygments>=2.2.0 in ./.local/lib/python3.7/site-packages (from PyInquirer->lnt) (2.4.2)                                                                        
Requirement already satisfied: wcwidth in ./.local/lib/python3.7/site-packages (from prompt-toolkit==1.0.14->PyInquirer->lnt) (0.1.7)                                                        
Installing collected packages: lnt
Successfully installed lnt-0.2.1

$ lnt --help

Traceback (most recent call last):
  File "/usr/local/bin/lnt", line 11, in <module>
    load_entry_point('lnt==0.2', 'console_scripts', 'lnt')()
  File "/home/harshagoli/.local/lib/python3.7/site-packages/pkg_resources/__init__.py", line 489, in load_entry_point
    return get_distribution(dist).load_entry_point(group, name)
  File "/home/harshagoli/.local/lib/python3.7/site-packages/pkg_resources/__init__.py", line 2843, in load_entry_point
    return ep.load()
  File "/home/harshagoli/.local/lib/python3.7/site-packages/pkg_resources/__init__.py", line 2434, in load
    return self.resolve()
  File "/home/harshagoli/.local/lib/python3.7/site-packages/pkg_resources/__init__.py", line 2440, in resolve
    module = __import__(self.module_name, fromlist=['__name__'], level=0)
  File "/usr/local/lib/python3.7/dist-packages/lnt/cli.py", line 5, in <module>
    from lnt.commands import create as cmd_create
  File "/usr/local/lib/python3.7/dist-packages/lnt/commands/create.py", line 6, in <module>
    import lnt.rpc.rpc_pb2 as ln, lnt.rpc.rpc_pb2_grpc as lnrpc
  File "/usr/local/lib/python3.7/dist-packages/lnt/rpc/rpc_pb2.py", line 17, in <module>
    from google.api import annotations_pb2 as google_dot_api_dot_annotations__pb2
ModuleNotFoundError: No module named 'google.api'

However, installing from source works fine:

$ git clone https://github.com/arshbot/lnt.git
$ cd lnt
$ pipenv install

Creating a virtualenv for this project...
Pipfile: /home/harshagoli/Projects/lntools/Pipfile
Using /usr/bin/python3 (3.7.3) to create virtualenv...
⠏ Creating virtual environment...Already using interpreter /usr/bin/python3
Using base prefix '/usr'
New python executable in /home/harshagoli/.local/share/virtualenvs/lntools-d74h9MY5/bin/python3
Also creating executable in /home/harshagoli/.local/share/virtualenvs/lntools-d74h9MY5/bin/python                                                                                            
Installing setuptools, pip, wheel...
done.
Running virtualenv with interpreter /usr/bin/python3

✔ Successfully created virtual environment!
Virtualenv location: /home/harshagoli/.local/share/virtualenvs/lntools-d74h9MY5
Installing u'regex'▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ 0/11 — 00:00:00
$ ['/home/harshagoli/.local/share/virtualenvs/lntools-d74h9MY5/bin/pip', 'install', '--verbose', '--upgrade', '--no-deps', '-r', '/tmp/pipenv-PkT4le-requirements/pipenv-fWoIFs-requirement.txt', '-i', u'https://pypi.org/simple', '--require-hashes']
Installing u'googleapis-common-protos'▉ 1/11 — 00:00:00
$ ['/home/harshagoli/.local/share/virtualenvs/lntools-d74h9MY5/bin/pip', 'install', '--verbose', '--upgrade', '--no-deps', '-r', '/tmp/pipenv-PkT4le-requirements/pipenv-9DWTWl-requirement.txt', '-i', u'https://pypi.org/simple', '--require-hashes']
Installing u'protobuf'▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ 2/11 — 00:00:00
$ ['/home/harshagoli/.local/share/virtualenvs/lntools-d74h9MY5/bin/pip', 'install', '--verbose', '--upgrade', '--no-deps', '-r', '/tmp/pipenv-PkT4le-requirements/pipenv-jH3TQZ-requirement.txt', '-i', u'https://pypi.org/simple', '--require-hashes']
Installing u'six'▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ 3/11 — 00:00:00
$ ['/home/harshagoli/.local/share/virtualenvs/lntools-d74h9MY5/bin/pip', 'install', '--verbose', '--upgrade', '--no-deps', '-r', '/tmp/pipenv-PkT4le-requirements/pipenv-LZUEig-requirement.txt', '-i', u'https://pypi.org/simple', '--require-hashes']
Installing u'wcwidth'▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ 4/11 — 00:00:00
$ ['/home/harshagoli/.local/share/virtualenvs/lntools-d74h9MY5/bin/pip', 'install', '--verbose', '--upgrade', '--no-deps', '-r', '/tmp/pipenv-PkT4le-requirements/pipenv-P4I3nW-requirement.txt', '-i', u'https://pypi.org/simple', '--require-hashes']
Installing u'grpcio'▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ 5/11 — 00:00:00
$ ['/home/harshagoli/.local/share/virtualenvs/lntools-d74h9MY5/bin/pip', 'install', '--verbose', '--upgrade', '--no-deps', '-r', '/tmp/pipenv-PkT4le-requirements/pipenv-SsIU_F-requirement.txt', '-i', u'https://pypi.org/simple', '--require-hashes']
Installing u'pygments'▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ 6/11 — 00:00:00
$ ['/home/harshagoli/.local/share/virtualenvs/lntools-d74h9MY5/bin/pip', 'install', '--verbose', '--upgrade', '--no-deps', '-r', '/tmp/pipenv-PkT4le-requirements/pipenv-6NY00e-requirement.txt', '-i', u'https://pypi.org/simple', '--require-hashes']
Installing u'pyinquirer'▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ 7/11 — 00:00:00
$ ['/home/harshagoli/.local/share/virtualenvs/lntools-d74h9MY5/bin/pip', 'install', '--verbose', '--upgrade', '--no-deps', '-r', '/tmp/pipenv-PkT4le-requirements/pipenv-JCeGeD-requirement.txt', '-i', u'https://pypi.org/simple', '--require-hashes']
Installing u'grpcio-tools'▉▉▉▉▉▉▉▉▉▉▉▉▉ 8/11 — 00:00:00
$ ['/home/harshagoli/.local/share/virtualenvs/lntools-d74h9MY5/bin/pip', 'install', '--verbose', '--upgrade', '--no-deps', '-r', '/tmp/pipenv-PkT4le-requirements/pipenv-n7C8FF-requirement.txt', '-i', u'https://pypi.org/simple', '--require-hashes']
Installing u'prompt-toolkit'▉▉▉▉▉▉▉▉▉▉▉ 9/11 — 00:00:00
$ ['/home/harshagoli/.local/share/virtualenvs/lntools-d74h9MY5/bin/pip', 'install', '--verbose', '--upgrade', '--no-deps', '-r', '/tmp/pipenv-PkT4le-requirements/pipenv-3JrcQW-requirement.txt', '-i', u'https://pypi.org/simple', '--require-hashes']
Installing u'click'▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ 10/11 — 00:00:00
$ ['/home/harshagoli/.local/share/virtualenvs/lntools-d74h9MY5/bin/pip', 'install', '--verbose', '--upgrade', '--no-deps', '-r', '/tmp/pipenv-PkT4le-requirements/pipenv-lhSow1-requirement.txt', '-i', u'https://pypi.org/simple', '--require-hashes']
  🐍   ▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ 11/11 — 00:00:08

$ lnt --help
# ... expected output

setup.py:

from setuptools import setup

setup(
    name='lnt',
    version='0.2.1',
    packages=['lnt', 'lnt.commands', 'lnt.rpc', 'lnt.graphics', 'lnt.commands.utils'],
    include_package_data=True,
    install_requires=[
        'click',
        'grpcio-tools',
        'grpcio',
        'PyInquirer',
    ],
    entry_points='''
        [console_scripts]
        lnt=lnt.cli:main
    ''',
)

Pipfile:

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

[dev-packages]
ptpython = "*"

[packages]
grpcio-tools = "*"
grpcio = "*"
click = "*"
PyInquirer = "*"
googleapis-common-protos = "*"

[requires]
python_version = "3.7"

The package is open source, so feel free to poke around wherever you'd like.

Provide the steps to replicate (which usually at least includes the commands and the Pipfile).


$ pipenv --support Pipenv version: `'2018.11.26'` Pipenv location: `'/usr/local/lib/python2.7/dist-packages/pipenv'` Python location: `'/usr/bin/python'` Python installations found: - `3.7.3`: `/usr/bin/python3.7` - `2.7.16`: `/usr/bin/python2.7` - `3.7.3`: `/usr/bin/python3.7m` - `3.7.3`: `/home/harshagoli/.local/share/virtualenvs/lntools-d74h9MY5/bin/python` PEP 508 Information: ``` {'implementation_name': 'cpython', 'implementation_version': '0', 'os_name': 'posix', 'platform_machine': 'x86_64', 'platform_python_implementation': 'CPython', 'platform_release': '5.0.0-21-generic', 'platform_system': 'Linux', 'platform_version': '#22+system76-Ubuntu SMP Tue Jul 16 19:57:52 UTC 2019', 'python_full_version': '2.7.16', 'python_version': '2.7', 'sys_platform': 'linux2'} ``` System environment variables: - `GOPATH` - `LESS` - `GNOME_DESKTOP_SESSION_ID` - `LC_CTYPE` - `PYTHONDONTWRITEBYTECODE` - `XDG_CURRENT_DESKTOP` - `XDG_SESSION_TYPE` - `QT_IM_MODULE` - `LOGNAME` - `USER` - `PATH` - `XDG_VTNR` - `HOME` - `PS1` - `ZSH` - `DISPLAY` - `SSH_AGENT_PID` - `LANG` - `TERM` - `SHELL` - `XAUTHORITY` - `LANGUAGE` - `DEFAULTS_PATH` - `SHLVL` - `MANDATORY_PATH` - `QT_ACCESSIBILITY` - `VIRTUAL_ENV` - `QT4_IM_MODULE` - `CLUTTER_IM_MODULE` - `WINDOWPATH` - `DESKTOP_AUTOSTART_ID` - `TF_VAR_gcp_thesis_billing_account` - `IM_CONFIG_PHASE` - `GPG_AGENT_INFO` - `SKAFFOLD_NO_PRUNE` - `TMUX_PLUGIN_MANAGER_PATH` - `USERNAME` - `XDG_SESSION_DESKTOP` - `XDG_RUNTIME_DIR` - `PIP_SHIMS_BASE_MODULE` - `SSH_AUTH_SOCK` - `VTE_VERSION` - `TMUX` - `GDMSESSION` - `XMODIFIERS` - `GNOME_SHELL_SESSION_MODE` - `PIPENV_ACTIVE` - `TF_VAR_gcp_thesis_org_id` - `PIP_PYTHON_PATH` - `XDG_SESSION_ID` - `DBUS_SESSION_BUS_ADDRESS` - `_` - `GNOME_TERMINAL_SERVICE` - `GTK_IM_MODULE` - `DESKTOP_SESSION` - `LSCOLORS` - `XDG_CONFIG_DIRS` - `GTK_MODULES` - `XDG_SEAT` - `PIP_DISABLE_PIP_VERSION_CHECK` - `OLDPWD` - `SESSION_MANAGER` - `XDG_DATA_DIRS` - `PWD` - `PYTHONFINDER_IGNORE_UNSUPPORTED` - `XDG_SESSION_CLASS` - `COLORTERM` - `XDG_MENU_PREFIX` - `LS_COLORS` - `PAGER` - `TMUX_PANE` - `GNOME_TERMINAL_SCREEN` Pipenv–specific environment variables: - `PIPENV_ACTIVE`: `1` Debug–specific environment variables: - `PATH`: `/home/harshagoli/.local/share/virtualenvs/lntools-d74h9MY5/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/lib/go-1.11/bin:/usr/lib/go-1.11/bin:/usr/lib/go-1.11/bin:/usr/lib/go-1.11/bin` - `SHELL`: `/usr/bin/zsh` - `LANG`: `en_US.UTF-8` - `PWD`: `/home/harshagoli/Projects/lntools` - `VIRTUAL_ENV`: `/home/harshagoli/.local/share/virtualenvs/lntools-d74h9MY5` --------------------------- Contents of `Pipfile` ('/home/harshagoli/Projects/lntools/Pipfile'): ```toml [[source]] name = "pypi" url = "https://pypi.org/simple" verify_ssl = true [dev-packages] ptpython = "*" [packages] grpcio-tools = "*" grpcio = "*" click = "*" PyInquirer = "*" googleapis-common-protos = "*" [requires] python_version = "3.7" ``` Contents of `Pipfile.lock` ('/home/harshagoli/Projects/lntools/Pipfile.lock'): ```json { "_meta": { "hash": { "sha256": "1ab70e7bfd0889bbe1f0337ad4fb0b53431762684644c031e924d1bf3f307230" }, "pipfile-spec": 6, "requires": { "python_version": "3.7" }, "sources": [ { "name": "pypi", "url": "https://pypi.org/simple", "verify_ssl": true } ] }, "default": { "click": { "hashes": [ "sha256:2335065e6395b9e67ca716de5f7526736bfa6ceead690adf616d925bdc622b13", "sha256:5b94b49521f6456670fdb30cd82a4eca9412788a93fa6dd6df72c94d5a8ff2d7" ], "index": "pypi", "version": "==7.0" }, "googleapis-common-protos": { "hashes": [ "sha256:e61b8ed5e36b976b487c6e7b15f31bb10c7a0ca7bd5c0e837f4afab64b53a0c6" ], "index": "pypi", "version": "==1.6.0" }, "grpcio": { "hashes": [ "sha256:03b78b4e7dcdfe3e257bb528cc93923f9cbbab6d5babf15a60d21e9a4a70b1a2", "sha256:1ce0ccfbdfe84387dbcbf44adb4ae16ec7ae70e166ffab478993eb1ea1cba3ce", "sha256:22e167a9406d73dd19ffe8ed6a485f17e6eac82505be8c108897f15e68badcbb", "sha256:31d0aeca8d8ee2301c62c5c340e0889d653b1280d68f9fa203982cb6337b050e", "sha256:44c7f99ca17ebbcc96fc54ed00b454d8313f1eac28c563098d8b901025aff941", "sha256:5471444f53f9db6a1f1f11f5dbc173228881df8446380b6b98f90afb8fd8348e", "sha256:561bca3b1bde6d6564306eb05848fd155136e9c3a25d2961129b1e2edba22fce", "sha256:5bf58e1d2c2f55365c06e8cb5abe067b88ca2e5550fb62009c41df4b54505acf", "sha256:6b7163d1e85d76b0815df63fcc310daec02b44532bb433f743142d4febcb181f", "sha256:766d79cddad95f5f6020037fe60ea8b98578afdf0c59d5a60c106c1bdd886303", "sha256:770b7372d5ca68308ff66d7baee53369fa5ce985f84bcb6aa1948c1f2f7b02f2", "sha256:7ab178da777fc0f55b6aef5a755f99726e8e4b75e3903954df07b27059b54fcf", "sha256:8078305e77c2f6649d36b24d8778096413e474d9d7892c6f92cfb589c9d71b2e", "sha256:85600b63a386d860eeaa955e9335e18dd0d7e5477e9214825abf2c2884488369", "sha256:857d9b939ae128be1c0c792eb885c7ff6a386b9dea899ac4b06f4d90a31f9d87", "sha256:87a41630c90c179fa5c593400f30a467c498972c702f348d41e19dafeb1d319e", "sha256:8805d486c6128cc0fcc8ecf16c4095d99a8693a541ef851429ab334e028a4a97", "sha256:8d71b7a89c306a41ccc7741fc9409b14f5b86727455c2a1c0c7cfcb0f784e1f2", "sha256:9e1b80bd65f8f160880cb4dad7f55697f6d37b2d7f251fc0c2128e811928f369", "sha256:9e290c84a145ae2411ee0ec9913c41cd7500e2e7485fe93632434d84ef4fda67", "sha256:9ec9f88b5bc94bd99372f27cdd53af1c92ba06717380b127733b953cfb181174", "sha256:a0a02a8b4ba6deadf706d5f849539b3685b72b186a3c9ef5d43e8972ed60fb6f", "sha256:a4059c59519f5940e01a071f74ae2a60ea8f6185b03d22a09d40c7959a36b16b", "sha256:a6e028c2a6da2ebfa2365a5b32531d311fbfec0e3600fc27e901b64f0ff7e54e", "sha256:adcdebf9f8463df4120c427cf6c9aed39258bccd03ed37b6939e7a145d64d6e0", "sha256:bdec982610259d07156a58f80b8c3e69be7751a9208bc577b059c5193d087fad", "sha256:cefc4d4251ffb73feb303d4b7e9d6c367cb60f2db16d259ea28b114045f965aa", "sha256:d4145c8aa6afbac10ad27e408f7ce15992fe89ba5d0b4abca31c0c2729864c03", "sha256:da76dc5ad719ee99de5ea28a5629ff92172cbb4a70d8a6ae3a5b7a53c7382ce1", "sha256:dde2452c08ef8b6426ccab6b5b6de9f06d836d9937d6870e68153cbf8cb49348", "sha256:e3d88091d2539a4868750914a6fe7b9ec50e42b913851fc1b77423b5bd918530", "sha256:f9c67cfe6278499d7f83559dc6322a8bbb108e307817a3d7acbfea807b3603cc" ], "index": "pypi", "version": "==1.22.0" }, "grpcio-tools": { "hashes": [ "sha256:0d8e85d7e62ea4e04ff75eace98dd0b53b22bd57dc1efbed0f8398db884e1cf6", "sha256:160e6fd9c44a3f6c76a8c2f84014e367d41a3cae27c451406b616f9a08ba2b1f", "sha256:337554658b4a4c0a6e1ee75acd6681ec45007e1d6d1975e885f92b665881e33a", "sha256:36390281f31861b8b685f7e8366ff8abbcdcedf3dda7b73133be56db71d3283b", "sha256:3dd362bcd1db5247760b7f8b8157abd53e47210a17df9de994f064819ba64c04", "sha256:4381f3722f3c5d02626796f9db6dd0dcb75c13245ea5655b54880ab7bd239a73", "sha256:4b5a5fe3e949bd03e068c05070f3cdc6a01b68323efb667199d3c67a30ef515c", "sha256:4f43d03e3e1f5f7bb14b8bba35a607e35ea4589fed778b8321c97810bc0a76ac", "sha256:67d1a8d71b2572250124ebdebbfac7248563bb97ab139916fb265705d1b0dbe2", "sha256:6e6fab6e8e92aadb70b4167e5eadd843e8c850d97213fdf4a39f6e4d3596e6f0", "sha256:75fe16b642564e47c65cf6d23362079cdbbbc5c544b59c7bc1a3a7c8865d73e3", "sha256:78bc91e38fe6a6c80de084014e22365c788811773829f28621878a803dd6af48", "sha256:8dde6f660e8390380e987b0661b2ced31bafa2d3dde9845bd918a007d998e7a8", "sha256:928de5a03fa2664d20433d3023e512fa1f8bc0588ff3eceee33c2d93b82e0110", "sha256:9a4348b0309c444e5b7bfd3a2cf38bdb354c56e5f4b966eb88b249aff46b0a4c", "sha256:9af68a58dc1a339e5735425a66b0a7146114b6fbc860d1f8b74b277d151f7bf1", "sha256:a3447b842ab2964a834776be0a38b93d1977887d43cb69a2ce9941388923d8a9", "sha256:a83b82b39e32a3110e45a11f0df9aceacefd201c25da79a66edda60d37a9f2e6", "sha256:b05de8f16752b50851cd1caa3e63a49b35f8adb3eee0cec8991b231fac0c158d", "sha256:b5c0fe51a155625c9d1132ab8deb56b3015e111a6961e48aeb9dd89bd7c670ab", "sha256:b659d2306dd79818b2fae0543377e199bcf656404032e24f2af53a0e5338b5c9", "sha256:b688dd1d83fdb46ab84d14a0711a0033984add9717619513f21e00f1b005f986", "sha256:bbe9c13774ecaf99beb39d05c3ee659771c903add0c5e7a761c79387f653f69f", "sha256:c23f59a04ed9db331922e5f02425958a907a019e157f14a6b95dd0ca1bcf05a6", "sha256:cf0c35fe4a8b0dc78d9bf181317d9fe9cd21a397429d9c0c01c0178cf20e4442", "sha256:cfd2320a0b4233ec4b9d3ac8d19df69194548bd32473fdba366cb50930f59dc2", "sha256:d5c82c63ec24f0de5151e478cabfca23afd39005b6d0ba62dccf81cf19b0ae7f", "sha256:d8d3dcb3832c209c66c67bd0f62289358b2cb942a68c00ac94c2ebf6870f731e", "sha256:d98ed0a731d6c4cee39e76ba0bc2225455da097f41fa11ebfa27fe3854b6cc98", "sha256:dbb2dd5367bfd71a6a779f6b237de015d6e508df129a126fc2a39da8a675457b", "sha256:f3c135ad51ec95667bb945be107d0176f3048e615283104bf30027fe8bc06a8e", "sha256:f8d75ead0ef7d060699b6c87b11f3c54e0c4b8e24065cbd262b64d300558a420" ], "index": "pypi", "version": "==1.22.0" }, "prompt-toolkit": { "hashes": [ "sha256:7281b5199235adaef6980942840c43753e4ab20dfe41338da634fb41c194f9d8", "sha256:82c7f8e07d7a0411ff5367a5a8ff520f0112b9179f3e599ee8ad2ad9b943d911", "sha256:cc66413b1b4b17021675d9f2d15d57e640b06ddfd99bb724c73484126d22622f" ], "version": "==1.0.14" }, "protobuf": { "hashes": [ "sha256:05c36022fef3c7d3562ac22402965c0c2b9fe8421f459bb377323598996e407f", "sha256:139b7eadcca0a861d60b523cb37d9475505e0dfb07972436b15407c2b968d87e", "sha256:15f683006cb77fb849b1f561e509b03dd2b7dcc749086b8dd1831090d0ba4740", "sha256:2ad566b7b7cdd8717c7af1825e19f09e8fef2787b77fcb979588944657679604", "sha256:35cfcf97642ef62108e10a9431c77733ec7eaab8e32fe4653de20403429907cb", "sha256:387822859ecdd012fdc25ec879f7f487da6e1d5b1ae6115e227e6be208836f71", "sha256:4df14cbe1e7134afcfdbb9f058949e31c466de27d9b2f7fb4da9e0b67231b538", "sha256:586c4ca37a7146d4822c700059f150ac3445ce0aef6f3ea258640838bb892dc2", "sha256:58b11e530e954d29ab3180c48dc558a409f705bf16739fd4e0d3e07924ad7add", "sha256:63c8c98ccb8c95f41c18fb829aeeab21c6249adee4ed75354125bdc44488f30e", "sha256:72edcbacd0c73eef507d2ff1af99a6c27df18e66a3ff4351e401182e4de62b03", "sha256:83dc8a561b3b954fd7002c690bb83278b8d1742a1e28abba9aaef28b0c8b437d", "sha256:913171ecc84c2726b86574e40549a0ea619d569657c5a5ff782a3be7d81401a5", "sha256:aabb7c741d3416671c3e6fe7c52970a226e6a8274417a97d7d795f953fadef36", "sha256:b3452bbda12b1cbe2187d416779de07b2ab4c497d83a050e43c344778763721d", "sha256:c5d5b8d4a9212338297fa1fa44589f69b470c0ba1d38168b432d577176b386a8", "sha256:d86ee389c2c4fc3cebabb8ce83a8e97b6b3b5dc727b7419c1ccdc7b6e545a233", "sha256:f2db8c754de788ab8be5e108e1e967c774c0942342b4f8aaaf14063889a6cfdc" ], "version": "==3.9.0" }, "pygments": { "hashes": [ "sha256:71e430bc85c88a430f000ac1d9b331d2407f681d6f6aec95e8bcfbc3df5b0127", "sha256:881c4c157e45f30af185c1ffe8d549d48ac9127433f2c380c24b84572ad66297" ], "version": "==2.4.2" }, "pyinquirer": { "hashes": [ "sha256:c9a92d68d7727fbd886a7908c08fd9e9773e5dc211bf5cbf836ba90d366dee51" ], "index": "pypi", "version": "==1.0.3" }, "regex": { "hashes": [ "sha256:1c70ccb8bf4ded0cbe53092e9f56dcc9d6b0efcf6e80b6ef9b0ece8a557d6635", "sha256:2948310c01535ccb29bb600dd033b07b91f36e471953889b7f3a1e66b39d0c19", "sha256:2ab13db0411cb308aa590d33c909ea4efeced40188d8a4a7d3d5970657fe73bc", "sha256:38e6486c7e14683cd1b17a4218760f0ea4c015633cf1b06f7c190fb882a51ba7", "sha256:80dde4ff10b73b823da451687363cac93dd3549e059d2dc19b72a02d048ba5aa", "sha256:84daedefaa56320765e9c4d43912226d324ef3cc929f4d75fa95f8c579a08211", "sha256:b98e5876ca1e63b41c4aa38d7d5cc04a736415d4e240e9ae7ebc4f780083c7d5", "sha256:ca4f47131af28ef168ff7c80d4b4cad019cb4cabb5fa26143f43aa3dbd60389c", "sha256:cf7838110d3052d359da527372666429b9485ab739286aa1a11ed482f037a88c", "sha256:dd4e8924915fa748e128864352875d3d0be5f4597ab1b1d475988b8e3da10dd7", "sha256:f2c65530255e4010a5029eb11138f5ecd5aa70363f57a3444d83b3253b0891be" ], "version": "==2019.6.8" }, "six": { "hashes": [ "sha256:3350809f0555b11f552448330d0b52d5f24c91a322ea4a15ef22629740f3761c", "sha256:d16a0141ec1a18405cd4ce8b4613101da75da0e9a7aec5bdd4fa804d0e0eba73" ], "version": "==1.12.0" }, "wcwidth": { "hashes": [ "sha256:3df37372226d6e63e1b1e1eda15c594bca98a22d33a23832a90998faa96bc65e", "sha256:f4ebe71925af7b40a864553f761ed559b43544f8f71746c2d756c7fe788ade7c" ], "version": "==0.1.7" } }, "develop": { "docopt": { "hashes": [ "sha256:49b3a825280bd66b3aa83585ef59c4a8c82f2c8a522dbe754a8bc8d08c85c491" ], "version": "==0.6.2" }, "jedi": { "hashes": [ "sha256:53c850f1a7d3cfcd306cc513e2450a54bdf5cacd7604b74e42dd1f0758eaaf36", "sha256:e07457174ef7cb2342ff94fa56484fe41cec7ef69b0059f01d3f812379cb6f7c" ], "version": "==0.14.1" }, "parso": { "hashes": [ "sha256:63854233e1fadb5da97f2744b6b24346d2750b85965e7e399bec1620232797dc", "sha256:666b0ee4a7a1220f65d367617f2cd3ffddff3e205f3f16a0284df30e774c2a9c" ], "version": "==0.5.1" }, "prompt-toolkit": { "hashes": [ "sha256:7281b5199235adaef6980942840c43753e4ab20dfe41338da634fb41c194f9d8", "sha256:82c7f8e07d7a0411ff5367a5a8ff520f0112b9179f3e599ee8ad2ad9b943d911", "sha256:cc66413b1b4b17021675d9f2d15d57e640b06ddfd99bb724c73484126d22622f" ], "version": "==1.0.14" }, "ptpython": { "hashes": [ "sha256:51a74abe931f692360a32d650c2ba1ca329c08f3ed9b1de8abcd1164e0b0a6a7", "sha256:938ee050e37d61c138dbbeb21383dfef8b9ed4ffb453a5f34041f42025bf5042", "sha256:ebe9d68ea7532ec8ab306d4bdc7ec393701cd9bbd6eff0aa3067c821f99264d4" ], "index": "pypi", "version": "==2.0.4" }, "pygments": { "hashes": [ "sha256:71e430bc85c88a430f000ac1d9b331d2407f681d6f6aec95e8bcfbc3df5b0127", "sha256:881c4c157e45f30af185c1ffe8d549d48ac9127433f2c380c24b84572ad66297" ], "version": "==2.4.2" }, "six": { "hashes": [ "sha256:3350809f0555b11f552448330d0b52d5f24c91a322ea4a15ef22629740f3761c", "sha256:d16a0141ec1a18405cd4ce8b4613101da75da0e9a7aec5bdd4fa804d0e0eba73" ], "version": "==1.12.0" }, "wcwidth": { "hashes": [ "sha256:3df37372226d6e63e1b1e1eda15c594bca98a22d33a23832a90998faa96bc65e", "sha256:f4ebe71925af7b40a864553f761ed559b43544f8f71746c2d756c7fe788ade7c" ], "version": "==0.1.7" } } } ```
frostming commented 5 years ago

You showed a failing installation with Pip and a successful one with Pipenv.

I don't see what is broken with Pipenv.

frostming commented 4 years ago

No new updates, close this now, feel free to reopen when you get more information about the bug.