Coder Social home page Coder Social logo

messaging's Introduction

Thoth Messaging

GitHub tag (latest by date) PyPI - Module Version PyPI - License PyPI - Downloads Quay - Build

This provides a library called thoth-messaging used in project Thoth. It is a basic module to encapsule all messaging (here it is Kafka via Faust) primitives.

Type Hinting With MyPy

This module uses pydantic for type hinting and enforcing a regular schema in messaging. If you are using mypy to check your code please add the following to your mypy configuration file:

[mypy]
plugins = pydantic.mypy

If you are creating an instance of a pydantic model in your own module you should directly use the MessageContents class within the associate message file. Using foo_bar_message.model will only type hint for BaseMessageContents.

Development and Testing

For development and testing it is very useful to have a local instance of Kafka running on your machine

We provide a docker-compose file to get you up and running quickly with a basic Kafka server; this file is based on Single Zookeeper/Multiple Kafka.

In order to start Zookeeper as well as the Kafka Servers simply run $ podman-compose up or $ docker-compose up, choose the appropriate option based on the system which you are using.

Once you have Kafka up and running you should be ready to begin coding your own messaging producers and consumers. The interface between Kafka and Python is handled by a library called Confluent Kafka. Faust's documentation will be extremely helpful to you when you are developing your own applications. If you would like examples of producers and consumers from Team Thoth, look at the following two repositories, investigator and package-update.

You may find it useful to use console producers and consumers while testing your, to create one simply attach a bash shell to one of your Kafka Servers by running: $ podman exec -it messaging_kafka1_1 bash, your container names should be the same as given here, if not, run $ podman ps and choose the correct container. These containers have all Kafka binaries in appropriate places so you can simply run $ kafka-console-consumer, $ kafka-console-producer, or any other kafka command that you may find useful.

example:

kafka-console-consumer --bootstrap-server localhost:9092 --topic test --from-beginning

You can test sending a message via the CLI using a file as -

example:

pipenv shell
python cli.py --message-file messages_to_be_sent.json

Note Data is not persistent. Once pods are deleted so is the data associated with them.

Pitfalls

Some schemas in this library are defined as Dict[str, Any]. This usually does not accurately reflect the actual schema required. These schemas can be purposefully vague because they are defined elsewhere and importing them from the requisite libraries couples thoth-messaging version too closely to other components in the best case, and introduces circular dependencies in the worst case. In short, thoth-messaging is naive and can only enforce schemas which it has defined.

messaging's People

Contributors

bissenbay avatar dependabot[bot] avatar fridex avatar goern avatar gregory-pereira avatar harshad16 avatar khebhut[bot] avatar kpostoffice avatar saisankargochhayat avatar sesheta avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

messaging's Issues

Failed to update dependencies to their latest version

Automatic dependency update failed for the current master with SHA d5a0c68.

The automatic dependency management cannot continue. Please fix errors reported bellow.

Command
  $ pipenv update --dev
Standard output
Running $ pipenv lock then $ pipenv sync.

Standard error
Creating a virtualenv for this project…
Pipfile: /tmp/tmp2zsvx2iv/Pipfile
Using /home/user/.local/share/virtualenvs/user-5PivF_Od/bin/python (3.6.8) to create virtualenv…
Already using interpreter /home/user/.local/share/virtualenvs/user-5PivF_Od/bin/python
Using real prefix '/usr'
  No LICENSE.txt / LICENSE found in source
New python executable in /tmp/tmp2zsvx2iv/.venv/bin/python
Installing setuptools, pip, wheel...
done.
Running virtualenv with interpreter /home/user/.local/share/virtualenvs/user-5PivF_Od/bin/python

Virtualenv location: /tmp/tmp2zsvx2iv/.venv
Locking [dev-packages] dependencies…

FAIL
[pipenv.exceptions.ResolutionFailure]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/resolver.py", line 69, in resolve
[pipenv.exceptions.ResolutionFailure]:       req_dir=requirements_dir
[pipenv.exceptions.ResolutionFailure]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/utils.py", line 726, in resolve_deps
[pipenv.exceptions.ResolutionFailure]:       req_dir=req_dir,
[pipenv.exceptions.ResolutionFailure]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/utils.py", line 480, in actually_resolve_deps
[pipenv.exceptions.ResolutionFailure]:       resolved_tree = resolver.resolve()
[pipenv.exceptions.ResolutionFailure]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/utils.py", line 395, in resolve
[pipenv.exceptions.ResolutionFailure]:       raise ResolutionFailure(message=str(e))
[pipenv.exceptions.ResolutionFailure]:       pipenv.exceptions.ResolutionFailure: ERROR: ERROR: Could not find a version that matches pylint
[pipenv.exceptions.ResolutionFailure]:       No versions found
[pipenv.exceptions.ResolutionFailure]: Warning: Your dependencies could not be resolved. You likely have a mismatch in your sub-dependencies.
  First try clearing your dependency cache with $ pipenv lock --clear, then try the original command again.
 Alternatively, you can use $ pipenv install --skip-lock to bypass this mechanism, then run $ pipenv graph to inspect the situation.
  Hint: try $ pipenv lock --pre if it is a pre-release dependency.
ERROR: ERROR: Could not find a version that matches pylint
No versions found
Was https://pypi.python.org/simple reachable?
[pipenv.exceptions.ResolutionFailure]:       req_dir=requirements_dir
[pipenv.exceptions.ResolutionFailure]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/utils.py", line 726, in resolve_deps
[pipenv.exceptions.ResolutionFailure]:       req_dir=req_dir,
[pipenv.exceptions.ResolutionFailure]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/utils.py", line 480, in actually_resolve_deps
[pipenv.exceptions.ResolutionFailure]:       resolved_tree = resolver.resolve()
[pipenv.exceptions.ResolutionFailure]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/utils.py", line 395, in resolve
[pipenv.exceptions.ResolutionFailure]:       raise ResolutionFailure(message=str(e))
[pipenv.exceptions.ResolutionFailure]:       pipenv.exceptions.ResolutionFailure: ERROR: ERROR: Could not find a version that matches pylint
[pipenv.exceptions.ResolutionFailure]:       No versions found
[pipenv.exceptions.ResolutionFailure]: Warning: Your dependencies could not be resolved. You likely have a mismatch in your sub-dependencies.
  First try clearing your dependency cache with $ pipenv lock --clear, then try the original command again.
 Alternatively, you can use $ pipenv install --skip-lock to bypass this mechanism, then run $ pipenv graph to inspect the situation.
  Hint: try $ pipenv lock --pre if it is a pre-release dependency.
ERROR: ERROR: Could not find a version that matches pylint
No versions found
Was https://pypi.python.org/simple reachable?

['Traceback (most recent call last):\n', '  File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/utils.py", line 501, in create_spinner\n    yield sp\n', '  File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/utils.py", line 649, in venv_resolve_deps\n    c = resolve(cmd, sp)\n', '  File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/utils.py", line 539, in resolve\n    sys.exit(c.return_code)\n', 'SystemExit: 1\n']

Environment details

Kebechet version: 1.0.0
Python version: 3.6.8
Platform: Linux-3.10.0-957.21.2.el7.x86_64-x86_64-with-redhat-8.1-Ootpa
pipenv version: pipenv, version 2018.11.26


Dependency graph
black==19.10b0
  - appdirs [required: Any, installed: 1.4.3]
  - attrs [required: >=18.1.0, installed: 19.3.0]
  - click [required: >=6.5, installed: 7.0]
  - pathspec [required: >=0.6,<1, installed: 0.7.0]
  - regex [required: Any, installed: 2020.1.8]
  - toml [required: >=0.9.4, installed: 0.10.0]
  - typed-ast [required: >=1.4.0, installed: 1.4.1]
coala-bears==0.11.1
  - autoflake [required: ~=0.6.6, installed: 0.6.6]
    - pyflakes [required: >=0.8.1, installed: 1.4.0]
  - autopep8 [required: ~=1.2, installed: 1.5]
    - pycodestyle [required: >=2.5.0, installed: 2.5.0]
  - bandit [required: ~=1.2, installed: 1.6.2]
    - GitPython [required: >=1.0.1, installed: 3.0.5]
      - gitdb2 [required: >=2.0.0, installed: 2.0.6]
        - smmap2 [required: >=2.0.0, installed: 2.0.5]
    - PyYAML [required: >=3.13, installed: 3.13]
    - six [required: >=1.10.0, installed: 1.14.0]
    - stevedore [required: >=1.20.0, installed: 1.31.0]
      - pbr [required: >=2.0.0,!=2.1.0, installed: 5.4.4]
      - six [required: >=1.10.0, installed: 1.14.0]
  - click [required: ==6.6, installed: 7.0]
  - cmakelint [required: ~=1.3, installed: 1.4.1]
  - coala [required: ~=0.11.0, installed: 0.11.0]
    - appdirs [required: ~=1.4, installed: 1.4.3]
    - coala-utils [required: ~=0.6.2, installed: 0.6.7]
      - appdirs [required: ==1.4.*, installed: 1.4.3]
      - pyprint [required: ==0.2.*, installed: 0.2.6]
        - colorama [required: ~=0.3.7, installed: 0.3.9]
        - termcolor [required: ~=1.1.0, installed: 1.1.0]
    - colorlog [required: ~=2.7, installed: 2.10.0]
    - dependency-management [required: ~=0.4.0, installed: 0.4.0]
      - coala-utils [required: ~=0.6, installed: 0.6.7]
        - appdirs [required: ==1.4.*, installed: 1.4.3]
        - pyprint [required: ==0.2.*, installed: 0.2.6]
          - colorama [required: ~=0.3.7, installed: 0.3.9]
          - termcolor [required: ~=1.1.0, installed: 1.1.0]
      - sarge [required: ~=0.1.4, installed: 0.1.5.post0]
    - libclang-py3 [required: ~=3.4.0, installed: 3.4.0]
    - Pygments [required: ~=2.1, installed: 2.5.2]
    - PyPrint [required: ~=0.2.6, installed: 0.2.6]
      - colorama [required: ~=0.3.7, installed: 0.3.9]
      - termcolor [required: ~=1.1.0, installed: 1.1.0]
    - requests [required: ~=2.12, installed: 2.22.0]
      - certifi [required: >=2017.4.17, installed: 2019.11.28]
      - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
      - idna [required: >=2.5,<2.9, installed: 2.8]
      - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.8]
    - setuptools [required: >=17.0, installed: 45.1.0]
    - unidiff [required: ~=0.5.2, installed: 0.5.5]
  - cppclean [required: ~=0.12.0, installed: 0.12]
  - cpplint [required: ~=1.3, installed: 1.4.5]
  - dennis [required: ~=0.8, installed: 0.9]
    - click [required: >=6, installed: 7.0]
    - polib [required: >=1.0.8, installed: 1.1.0]
  - eradicate [required: ~=0.1.6, installed: 0.1.6]
  - guess-language-spirit [required: ~=0.5.2, installed: 0.5.3]
  - html-linter [required: ~=0.3.0, installed: 0.3.0]
    - docopt [required: >=0.6.1, installed: 0.6.2]
    - template-remover [required: Any, installed: 0.1.9]
      - docopt [required: >=0.6.1, installed: 0.6.2]
  - isort [required: ~=4.2, installed: 4.3.21]
  - munkres3 [required: ~=1.0, installed: 1.0.5.5]
  - mypy-lang [required: ~=0.4.6, installed: 0.4.6]
  - nbformat [required: ~=4.1, installed: 4.4.0]
    - ipython-genutils [required: Any, installed: 0.2.0]
    - jsonschema [required: >=2.4,!=2.5.0, installed: 3.2.0]
      - attrs [required: >=17.4.0, installed: 19.3.0]
      - importlib-metadata [required: Any, installed: 1.4.0]
        - zipp [required: >=0.5, installed: 2.1.0]
      - pyrsistent [required: >=0.14.0, installed: 0.15.7]
        - six [required: Any, installed: 1.14.0]
      - setuptools [required: Any, installed: 45.1.0]
      - six [required: >=1.11.0, installed: 1.14.0]
    - jupyter-core [required: Any, installed: 4.6.1]
      - traitlets [required: Any, installed: 4.3.3]
        - decorator [required: Any, installed: 4.4.1]
        - ipython-genutils [required: Any, installed: 0.2.0]
        - six [required: Any, installed: 1.14.0]
    - traitlets [required: >=4.1, installed: 4.3.3]
      - decorator [required: Any, installed: 4.4.1]
      - ipython-genutils [required: Any, installed: 0.2.0]
      - six [required: Any, installed: 1.14.0]
  - nltk [required: ~=3.2, installed: 3.4.5]
    - six [required: Any, installed: 1.14.0]
  - proselint [required: ~=0.7.0, installed: 0.7.0]
    - click [required: Any, installed: 7.0]
    - future [required: Any, installed: 0.18.2]
    - six [required: Any, installed: 1.14.0]
  - pycodestyle [required: ~=2.2, installed: 2.5.0]
  - pydocstyle [required: ~=1.1, installed: 1.1.1]
  - pyflakes [required: ~=1.4.0, installed: 1.4.0]
  - pylint [required: ~=1.6, installed: 2.4.4]
    - astroid [required: >=2.3.0,<2.4, installed: 2.3.3]
      - lazy-object-proxy [required: ==1.4.*, installed: 1.4.3]
      - six [required: ~=1.12, installed: 1.14.0]
      - typed-ast [required: >=1.4.0,<1.5, installed: 1.4.1]
      - wrapt [required: ==1.11.*, installed: 1.11.2]
    - isort [required: >=4.2.5,<5, installed: 4.3.21]
    - mccabe [required: >=0.6,<0.7, installed: 0.6.1]
  - pyroma [required: ~=2.2.0, installed: 2.2]
    - docutils [required: Any, installed: 0.16]
    - setuptools [required: Any, installed: 45.1.0]
  - pyyaml [required: ~=3.12, installed: 3.13]
  - radon [required: ==1.4.0, installed: 1.4.0]
    - colorama [required: >=0.3,<0.4, installed: 0.3.9]
    - mando [required: >=0.3,<0.4, installed: 0.3.3]
  - restructuredtext-lint [required: ~=1.0.0, installed: 1.0.1]
    - docutils [required: >=0.11,<1.0, installed: 0.16]
  - rstcheck [required: ~=2.2, installed: 2.2]
    - docutils [required: Any, installed: 0.16]
    - sphinx [required: >=1.3,<1.5, installed: 1.4.9]
      - alabaster [required: >=0.7,<0.8, installed: 0.7.12]
      - babel [required: >=1.3,!=2.0, installed: 2.8.0]
        - pytz [required: >=2015.7, installed: 2019.3]
      - docutils [required: >=0.11, installed: 0.16]
      - imagesize [required: Any, installed: 1.2.0]
      - Jinja2 [required: >=2.3, installed: 2.11.0]
        - MarkupSafe [required: >=0.23, installed: 1.1.1]
      - Pygments [required: >=2.0, installed: 2.5.2]
      - six [required: >=1.5, installed: 1.14.0]
      - snowballstemmer [required: >=1.1, installed: 2.0.0]
  - safety [required: ~=0.5.1, installed: 0.5.1]
    - Click [required: >=6.0, installed: 7.0]
    - packaging [required: Any, installed: 20.1]
      - pyparsing [required: >=2.0.2, installed: 2.4.6]
      - six [required: Any, installed: 1.14.0]
    - requests [required: Any, installed: 2.22.0]
      - certifi [required: >=2017.4.17, installed: 2019.11.28]
      - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
      - idna [required: >=2.5,<2.9, installed: 2.8]
      - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.8]
  - scspell3k [required: ~=2.0, installed: 2.2]
  - vulture [required: ~=0.10.0, installed: 0.10]
  - yamllint [required: ~=1.6.1, installed: 1.6.1]
    - pyyaml [required: Any, installed: 3.13]
  - yapf [required: ~=0.14.0, installed: 0.14.0]
faust==1.10.1
  - aiohttp [required: >=3.5.2,<4.0, installed: 3.6.2]
    - async-timeout [required: >=3.0,<4.0, installed: 3.0.1]
    - attrs [required: >=17.3.0, installed: 19.3.0]
    - chardet [required: >=2.0,<4.0, installed: 3.0.4]
    - idna-ssl [required: >=1.0, installed: 1.1.0]
      - idna [required: >=2.0, installed: 2.8]
    - multidict [required: >=4.5,<5.0, installed: 4.7.4]
    - typing-extensions [required: >=3.6.5, installed: 3.7.4.1]
    - yarl [required: >=1.0,<2.0, installed: 1.4.2]
      - idna [required: >=2.0, installed: 2.8]
      - multidict [required: >=4.0, installed: 4.7.4]
  - aiohttp-cors [required: >=0.7,<2.0, installed: 0.7.0]
    - aiohttp [required: >=1.1, installed: 3.6.2]
      - async-timeout [required: >=3.0,<4.0, installed: 3.0.1]
      - attrs [required: >=17.3.0, installed: 19.3.0]
      - chardet [required: >=2.0,<4.0, installed: 3.0.4]
      - idna-ssl [required: >=1.0, installed: 1.1.0]
        - idna [required: >=2.0, installed: 2.8]
      - multidict [required: >=4.5,<5.0, installed: 4.7.4]
      - typing-extensions [required: >=3.6.5, installed: 3.7.4.1]
      - yarl [required: >=1.0,<2.0, installed: 1.4.2]
        - idna [required: >=2.0, installed: 2.8]
        - multidict [required: >=4.0, installed: 4.7.4]
  - click [required: >=6.7,<8.0, installed: 7.0]
  - colorclass [required: >=2.2,<3.0, installed: 2.2.0]
  - croniter [required: >=0.3.16, installed: 0.3.31]
    - python-dateutil [required: Any, installed: 2.8.1]
      - six [required: >=1.5, installed: 1.14.0]
  - mode [required: >=4.3.0,<4.4, installed: 4.3.0]
    - aiocontextvars [required: >=0.2, installed: 0.2.2]
      - contextvars [required: ==2.4, installed: 2.4]
        - immutables [required: >=0.9, installed: 0.11]
    - colorlog [required: >=2.9.0, installed: 2.10.0]
    - mypy-extensions [required: Any, installed: 0.4.3]
    - typing-extensions [required: Any, installed: 3.7.4.1]
  - mypy-extensions [required: Any, installed: 0.4.3]
  - opentracing [required: >=1.3.0,<2.0.0, installed: 1.3.0]
  - robinhood-aiokafka [required: >=1.1.3,<1.2, installed: 1.1.3]
    - kafka-python [required: >=1.4.6,<1.5, installed: 1.4.7]
  - terminaltables [required: >=3.1,<4.0, installed: 3.1.0]
  - venusian [required: >=1.1,<2.0, installed: 1.2.0]
  - yarl [required: >=1.0,<2.0, installed: 1.4.2]
    - idna [required: >=2.0, installed: 2.8]
    - multidict [required: >=4.0, installed: 4.7.4]
pytest-cov==2.8.1
  - coverage [required: >=4.4, installed: 5.0.3]
  - pytest [required: >=3.6, installed: 5.3.4]
    - attrs [required: >=17.4.0, installed: 19.3.0]
    - importlib-metadata [required: >=0.12, installed: 1.4.0]
      - zipp [required: >=0.5, installed: 2.1.0]
    - more-itertools [required: >=4.0.0, installed: 8.1.0]
    - packaging [required: Any, installed: 20.1]
      - pyparsing [required: >=2.0.2, installed: 2.4.6]
      - six [required: Any, installed: 1.14.0]
    - pluggy [required: >=0.12,<1.0, installed: 0.13.1]
      - importlib-metadata [required: >=0.12, installed: 1.4.0]
        - zipp [required: >=0.5, installed: 2.1.0]
    - py [required: >=1.5.0, installed: 1.8.1]
    - wcwidth [required: Any, installed: 0.1.8]
pytest-timeout==1.3.4
  - pytest [required: >=3.6.0, installed: 5.3.4]
    - attrs [required: >=17.4.0, installed: 19.3.0]
    - importlib-metadata [required: >=0.12, installed: 1.4.0]
      - zipp [required: >=0.5, installed: 2.1.0]
    - more-itertools [required: >=4.0.0, installed: 8.1.0]
    - packaging [required: Any, installed: 20.1]
      - pyparsing [required: >=2.0.2, installed: 2.4.6]
      - six [required: Any, installed: 1.14.0]
    - pluggy [required: >=0.12,<1.0, installed: 0.13.1]
      - importlib-metadata [required: >=0.12, installed: 1.4.0]
        - zipp [required: >=0.5, installed: 2.1.0]
    - py [required: >=1.5.0, installed: 1.8.1]
    - wcwidth [required: Any, installed: 0.1.8]
thoth-common==0.9.31
  - argo-workflows [required: Any, installed: 2.1.4]
    - kubernetes [required: ~=10.0, installed: 10.0.1]
      - certifi [required: >=14.05.14, installed: 2019.11.28]
      - google-auth [required: >=1.0.1, installed: 1.11.0]
        - cachetools [required: >=2.0.0,<5.0, installed: 4.0.0]
        - pyasn1-modules [required: >=0.2.1, installed: 0.2.8]
          - pyasn1 [required: >=0.4.6,<0.5.0, installed: 0.4.8]
        - rsa [required: >=3.1.4,<4.1, installed: 4.0]
          - pyasn1 [required: >=0.1.3, installed: 0.4.8]
        - setuptools [required: >=40.3.0, installed: 45.1.0]
        - six [required: >=1.9.0, installed: 1.14.0]
      - python-dateutil [required: >=2.5.3, installed: 2.8.1]
        - six [required: >=1.5, installed: 1.14.0]
      - pyyaml [required: >=3.12, installed: 3.13]
      - requests [required: Any, installed: 2.22.0]
        - certifi [required: >=2017.4.17, installed: 2019.11.28]
        - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
        - idna [required: >=2.5,<2.9, installed: 2.8]
        - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.8]
      - requests-oauthlib [required: Any, installed: 1.3.0]
        - oauthlib [required: >=3.0.0, installed: 3.1.0]
        - requests [required: >=2.0.0, installed: 2.22.0]
          - certifi [required: >=2017.4.17, installed: 2019.11.28]
          - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
          - idna [required: >=2.5,<2.9, installed: 2.8]
          - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.8]
      - setuptools [required: >=21.0.0, installed: 45.1.0]
      - six [required: >=1.9.0, installed: 1.14.0]
      - urllib3 [required: >=1.24.2, installed: 1.25.8]
      - websocket-client [required: >=0.32.0,!=0.42.*,!=0.41.*,!=0.40.0, installed: 0.57.0]
        - six [required: Any, installed: 1.14.0]
    - mock [required: Any, installed: 3.0.5]
      - six [required: Any, installed: 1.14.0]
  - attrdict [required: Any, installed: 2.0.1]
    - six [required: Any, installed: 1.14.0]
  - attrs [required: Any, installed: 19.3.0]
  - daiquiri [required: Any, installed: 2.0.0]
    - python-json-logger [required: Any, installed: 0.1.11]
  - openshift [required: Any, installed: 0.10.1]
    - dictdiffer [required: Any, installed: 0.8.1]
    - jinja2 [required: Any, installed: 2.11.0]
      - MarkupSafe [required: >=0.23, installed: 1.1.1]
    - kubernetes [required: ~=10.0.1, installed: 10.0.1]
      - certifi [required: >=14.05.14, installed: 2019.11.28]
      - google-auth [required: >=1.0.1, installed: 1.11.0]
        - cachetools [required: >=2.0.0,<5.0, installed: 4.0.0]
        - pyasn1-modules [required: >=0.2.1, installed: 0.2.8]
          - pyasn1 [required: >=0.4.6,<0.5.0, installed: 0.4.8]
        - rsa [required: >=3.1.4,<4.1, installed: 4.0]
          - pyasn1 [required: >=0.1.3, installed: 0.4.8]
        - setuptools [required: >=40.3.0, installed: 45.1.0]
        - six [required: >=1.9.0, installed: 1.14.0]
      - python-dateutil [required: >=2.5.3, installed: 2.8.1]
        - six [required: >=1.5, installed: 1.14.0]
      - pyyaml [required: >=3.12, installed: 3.13]
      - requests [required: Any, installed: 2.22.0]
        - certifi [required: >=2017.4.17, installed: 2019.11.28]
        - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
        - idna [required: >=2.5,<2.9, installed: 2.8]
        - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.8]
      - requests-oauthlib [required: Any, installed: 1.3.0]
        - oauthlib [required: >=3.0.0, installed: 3.1.0]
        - requests [required: >=2.0.0, installed: 2.22.0]
          - certifi [required: >=2017.4.17, installed: 2019.11.28]
          - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
          - idna [required: >=2.5,<2.9, installed: 2.8]
          - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.8]
      - setuptools [required: >=21.0.0, installed: 45.1.0]
      - six [required: >=1.9.0, installed: 1.14.0]
      - urllib3 [required: >=1.24.2, installed: 1.25.8]
      - websocket-client [required: >=0.32.0,!=0.42.*,!=0.41.*,!=0.40.0, installed: 0.57.0]
        - six [required: Any, installed: 1.14.0]
    - python-string-utils [required: Any, installed: 0.6.0]
    - ruamel.yaml [required: >=0.15, installed: 0.16.6]
      - ruamel.yaml.clib [required: >=0.1.2, installed: 0.2.0]
    - six [required: Any, installed: 1.14.0]
  - pyyaml [required: Any, installed: 3.13]
  - requests [required: Any, installed: 2.22.0]
    - certifi [required: >=2017.4.17, installed: 2019.11.28]
    - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
    - idna [required: >=2.5,<2.9, installed: 2.8]
    - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.8]
  - rfc5424-logging-handler [required: Any, installed: 1.4.3]
    - pytz [required: Any, installed: 2019.3]
    - tzlocal [required: Any, installed: 2.0.0]
      - pytz [required: Any, installed: 2019.3]
  - sentry-sdk [required: Any, installed: 0.14.1]
    - certifi [required: Any, installed: 2019.11.28]
    - urllib3 [required: >=1.10.0, installed: 1.25.8]

Notes

For more information, see Pipfile and Pipfile.lock.

Once this issue is resolved, the issue will be automatically closed by bot.

Failed to update dependencies to their latest version

Automatic dependency update failed for the current master with SHA 1d717ec.

The automatic dependency management cannot continue. Please fix errors reported bellow.

Command
  $ pipenv update --dev
Standard output
Running $ pipenv lock then $ pipenv sync.

Standard error
Creating a virtualenv for this project…
Pipfile: /tmp/tmpxii2x1ld/Pipfile
Using /usr/bin/python3 (3.6.8) to create virtualenv…
Already using interpreter /usr/bin/python3
Using base prefix '/usr'
  No LICENSE.txt / LICENSE found in source
New python executable in /tmp/tmpxii2x1ld/.venv/bin/python3
Also creating executable in /tmp/tmpxii2x1ld/.venv/bin/python
Installing setuptools, pip, wheel...
done.

Virtualenv location: /tmp/tmpxii2x1ld/.venv
Locking [dev-packages] dependencies…

FAIL
[pipenv.exceptions.ResolutionFailure]:   File "/usr/local/lib/python3.6/site-packages/pipenv/resolver.py", line 69, in resolve
[pipenv.exceptions.ResolutionFailure]:       req_dir=requirements_dir
[pipenv.exceptions.ResolutionFailure]:   File "/usr/local/lib/python3.6/site-packages/pipenv/utils.py", line 726, in resolve_deps
[pipenv.exceptions.ResolutionFailure]:       req_dir=req_dir,
[pipenv.exceptions.ResolutionFailure]:   File "/usr/local/lib/python3.6/site-packages/pipenv/utils.py", line 480, in actually_resolve_deps
[pipenv.exceptions.ResolutionFailure]:       resolved_tree = resolver.resolve()
[pipenv.exceptions.ResolutionFailure]:   File "/usr/local/lib/python3.6/site-packages/pipenv/utils.py", line 395, in resolve
[pipenv.exceptions.ResolutionFailure]:       raise ResolutionFailure(message=str(e))
[pipenv.exceptions.ResolutionFailure]:       pipenv.exceptions.ResolutionFailure: ERROR: ERROR: Could not find a version that matches black
[pipenv.exceptions.ResolutionFailure]:       No versions found
[pipenv.exceptions.ResolutionFailure]: Warning: Your dependencies could not be resolved. You likely have a mismatch in your sub-dependencies.
  First try clearing your dependency cache with $ pipenv lock --clear, then try the original command again.
 Alternatively, you can use $ pipenv install --skip-lock to bypass this mechanism, then run $ pipenv graph to inspect the situation.
  Hint: try $ pipenv lock --pre if it is a pre-release dependency.
ERROR: ERROR: Could not find a version that matches black
No versions found
Was https://pypi.python.org/simple reachable?
[pipenv.exceptions.ResolutionFailure]:       req_dir=requirements_dir
[pipenv.exceptions.ResolutionFailure]:   File "/usr/local/lib/python3.6/site-packages/pipenv/utils.py", line 726, in resolve_deps
[pipenv.exceptions.ResolutionFailure]:       req_dir=req_dir,
[pipenv.exceptions.ResolutionFailure]:   File "/usr/local/lib/python3.6/site-packages/pipenv/utils.py", line 480, in actually_resolve_deps
[pipenv.exceptions.ResolutionFailure]:       resolved_tree = resolver.resolve()
[pipenv.exceptions.ResolutionFailure]:   File "/usr/local/lib/python3.6/site-packages/pipenv/utils.py", line 395, in resolve
[pipenv.exceptions.ResolutionFailure]:       raise ResolutionFailure(message=str(e))
[pipenv.exceptions.ResolutionFailure]:       pipenv.exceptions.ResolutionFailure: ERROR: ERROR: Could not find a version that matches black
[pipenv.exceptions.ResolutionFailure]:       No versions found
[pipenv.exceptions.ResolutionFailure]: Warning: Your dependencies could not be resolved. You likely have a mismatch in your sub-dependencies.
  First try clearing your dependency cache with $ pipenv lock --clear, then try the original command again.
 Alternatively, you can use $ pipenv install --skip-lock to bypass this mechanism, then run $ pipenv graph to inspect the situation.
  Hint: try $ pipenv lock --pre if it is a pre-release dependency.
ERROR: ERROR: Could not find a version that matches black
No versions found
Was https://pypi.python.org/simple reachable?

['Traceback (most recent call last):\n', '  File "/usr/local/lib/python3.6/site-packages/pipenv/utils.py", line 501, in create_spinner\n    yield sp\n', '  File "/usr/local/lib/python3.6/site-packages/pipenv/utils.py", line 649, in venv_resolve_deps\n    c = resolve(cmd, sp)\n', '  File "/usr/local/lib/python3.6/site-packages/pipenv/utils.py", line 539, in resolve\n    sys.exit(c.return_code)\n', 'SystemExit: 1\n']

Environment details

Kebechet version: 1.0.0
Python version: 3.6.8
Platform: Linux-3.10.0-957.21.2.el7.x86_64-x86_64-with-fedora-28-Twenty_Eight
pipenv version: pipenv, version 2018.11.26


Dependency graph
black==19.3b0
  - appdirs [required: Any, installed: 1.4.3]
  - attrs [required: >=18.1.0, installed: 19.2.0]
  - click [required: >=6.5, installed: 7.0]
  - toml [required: >=0.9.4, installed: 0.10.0]
coala-bears==0.11.1
  - autoflake [required: ~=0.6.6, installed: 0.6.6]
    - pyflakes [required: >=0.8.1, installed: 1.4.0]
  - autopep8 [required: ~=1.2, installed: 1.4.4]
    - pycodestyle [required: >=2.4.0, installed: 2.5.0]
  - bandit [required: ~=1.2, installed: 1.6.2]
    - GitPython [required: >=1.0.1, installed: 3.0.3]
      - gitdb2 [required: >=2.0.0, installed: 2.0.6]
        - smmap2 [required: >=2.0.0, installed: 2.0.5]
    - PyYAML [required: >=3.13, installed: 5.1.2]
    - six [required: >=1.10.0, installed: 1.12.0]
    - stevedore [required: >=1.20.0, installed: 1.31.0]
      - pbr [required: >=2.0.0,!=2.1.0, installed: 5.4.3]
      - six [required: >=1.10.0, installed: 1.12.0]
  - click [required: ==6.6, installed: 7.0]
  - cmakelint [required: ~=1.3, installed: 1.4.1]
  - coala [required: ~=0.11.0, installed: 0.11.0]
    - appdirs [required: ~=1.4, installed: 1.4.3]
    - coala-utils [required: ~=0.6.2, installed: 0.6.7]
      - appdirs [required: ==1.4.*, installed: 1.4.3]
      - pyprint [required: ==0.2.*, installed: 0.2.6]
        - colorama [required: ~=0.3.7, installed: 0.3.9]
        - termcolor [required: ~=1.1.0, installed: 1.1.0]
    - colorlog [required: ~=2.7, installed: 4.0.2]
    - dependency-management [required: ~=0.4.0, installed: 0.4.0]
      - coala-utils [required: ~=0.6, installed: 0.6.7]
        - appdirs [required: ==1.4.*, installed: 1.4.3]
        - pyprint [required: ==0.2.*, installed: 0.2.6]
          - colorama [required: ~=0.3.7, installed: 0.3.9]
          - termcolor [required: ~=1.1.0, installed: 1.1.0]
      - sarge [required: ~=0.1.4, installed: 0.1.5.post0]
    - libclang-py3 [required: ~=3.4.0, installed: 3.4.0]
    - Pygments [required: ~=2.1, installed: 2.4.2]
    - PyPrint [required: ~=0.2.6, installed: 0.2.6]
      - colorama [required: ~=0.3.7, installed: 0.3.9]
      - termcolor [required: ~=1.1.0, installed: 1.1.0]
    - requests [required: ~=2.12, installed: 2.22.0]
      - certifi [required: >=2017.4.17, installed: 2019.9.11]
      - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
      - idna [required: >=2.5,<2.9, installed: 2.8]
      - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.6]
    - setuptools [required: >=17.0, installed: 41.4.0]
    - unidiff [required: ~=0.5.2, installed: 0.5.5]
  - cppclean [required: ~=0.12.0, installed: 0.12]
  - cpplint [required: ~=1.3, installed: 1.4.4]
  - dennis [required: ~=0.8, installed: 0.9]
    - click [required: >=6, installed: 7.0]
    - polib [required: >=1.0.8, installed: 1.1.0]
  - eradicate [required: ~=0.1.6, installed: 0.1.6]
  - guess-language-spirit [required: ~=0.5.2, installed: 0.5.3]
  - html-linter [required: ~=0.3.0, installed: 0.3.0]
    - docopt [required: >=0.6.1, installed: 0.6.2]
    - template-remover [required: Any, installed: 0.1.9]
      - docopt [required: >=0.6.1, installed: 0.6.2]
  - isort [required: ~=4.2, installed: 4.3.21]
  - munkres3 [required: ~=1.0, installed: 1.0.5.5]
  - mypy-lang [required: ~=0.4.6, installed: 0.4.6]
  - nbformat [required: ~=4.1, installed: 4.4.0]
    - ipython-genutils [required: Any, installed: 0.2.0]
    - jsonschema [required: >=2.4,!=2.5.0, installed: 3.1.1]
      - attrs [required: >=17.4.0, installed: 19.2.0]
      - importlib-metadata [required: Any, installed: 0.23]
        - zipp [required: >=0.5, installed: 0.6.0]
          - more-itertools [required: Any, installed: 7.2.0]
      - pyrsistent [required: >=0.14.0, installed: 0.15.4]
        - six [required: Any, installed: 1.12.0]
      - setuptools [required: Any, installed: 41.4.0]
      - six [required: >=1.11.0, installed: 1.12.0]
    - jupyter-core [required: Any, installed: 4.6.0]
      - traitlets [required: Any, installed: 4.3.3]
        - decorator [required: Any, installed: 4.4.0]
        - ipython-genutils [required: Any, installed: 0.2.0]
        - six [required: Any, installed: 1.12.0]
    - traitlets [required: >=4.1, installed: 4.3.3]
      - decorator [required: Any, installed: 4.4.0]
      - ipython-genutils [required: Any, installed: 0.2.0]
      - six [required: Any, installed: 1.12.0]
  - nltk [required: ~=3.2, installed: 3.4.5]
    - six [required: Any, installed: 1.12.0]
  - proselint [required: ~=0.7.0, installed: 0.7.0]
    - click [required: Any, installed: 7.0]
    - future [required: Any, installed: 0.18.0]
    - six [required: Any, installed: 1.12.0]
  - pycodestyle [required: ~=2.2, installed: 2.5.0]
  - pydocstyle [required: ~=1.1, installed: 1.1.1]
  - pyflakes [required: ~=1.4.0, installed: 1.4.0]
  - pylint [required: ~=1.6, installed: 2.4.2]
    - astroid [required: >=2.3.0,<2.4, installed: 2.3.1]
      - lazy-object-proxy [required: ==1.4.*, installed: 1.4.2]
      - six [required: ==1.12, installed: 1.12.0]
      - typed-ast [required: >=1.4.0,<1.5, installed: 1.4.0]
      - wrapt [required: ==1.11.*, installed: 1.11.2]
    - isort [required: >=4.2.5,<5, installed: 4.3.21]
    - mccabe [required: >=0.6,<0.7, installed: 0.6.1]
  - pyroma [required: ~=2.2.0, installed: 2.2]
    - docutils [required: Any, installed: 0.15.2]
    - setuptools [required: Any, installed: 41.4.0]
  - pyyaml [required: ~=3.12, installed: 5.1.2]
  - radon [required: ==1.4.0, installed: 1.4.0]
    - colorama [required: >=0.3,<0.4, installed: 0.3.9]
    - mando [required: >=0.3,<0.4, installed: 0.3.3]
  - restructuredtext-lint [required: ~=1.0.0, installed: 1.0.1]
    - docutils [required: >=0.11,<1.0, installed: 0.15.2]
  - rstcheck [required: ~=2.2, installed: 2.2]
    - docutils [required: Any, installed: 0.15.2]
    - sphinx [required: >=1.3,<1.5, installed: 1.4.9]
      - alabaster [required: >=0.7,<0.8, installed: 0.7.12]
      - babel [required: >=1.3,!=2.0, installed: 2.7.0]
        - pytz [required: >=2015.7, installed: 2019.3]
      - docutils [required: >=0.11, installed: 0.15.2]
      - imagesize [required: Any, installed: 1.1.0]
      - Jinja2 [required: >=2.3, installed: 2.10.3]
        - MarkupSafe [required: >=0.23, installed: 1.1.1]
      - Pygments [required: >=2.0, installed: 2.4.2]
      - six [required: >=1.5, installed: 1.12.0]
      - snowballstemmer [required: >=1.1, installed: 2.0.0]
  - safety [required: ~=0.5.1, installed: 0.5.1]
    - Click [required: >=6.0, installed: 7.0]
    - packaging [required: Any, installed: 19.2]
      - pyparsing [required: >=2.0.2, installed: 2.4.2]
      - six [required: Any, installed: 1.12.0]
    - requests [required: Any, installed: 2.22.0]
      - certifi [required: >=2017.4.17, installed: 2019.9.11]
      - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
      - idna [required: >=2.5,<2.9, installed: 2.8]
      - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.6]
  - scspell3k [required: ~=2.0, installed: 2.2]
  - vulture [required: ~=0.10.0, installed: 0.10]
  - yamllint [required: ~=1.6.1, installed: 1.6.1]
    - pyyaml [required: Any, installed: 5.1.2]
  - yapf [required: ~=0.14.0, installed: 0.14.0]
faust==1.8.0
  - aiohttp [required: >=3.5.2,<4.0, installed: 3.6.2]
    - async-timeout [required: >=3.0,<4.0, installed: 3.0.1]
    - attrs [required: >=17.3.0, installed: 19.2.0]
    - chardet [required: >=2.0,<4.0, installed: 3.0.4]
    - idna-ssl [required: >=1.0, installed: 1.1.0]
      - idna [required: >=2.0, installed: 2.8]
    - multidict [required: >=4.5,<5.0, installed: 4.5.2]
    - typing-extensions [required: >=3.6.5, installed: 3.7.4]
    - yarl [required: >=1.0,<2.0, installed: 1.3.0]
      - idna [required: >=2.0, installed: 2.8]
      - multidict [required: >=4.0, installed: 4.5.2]
  - aiohttp-cors [required: >=0.7,<2.0, installed: 0.7.0]
    - aiohttp [required: >=1.1, installed: 3.6.2]
      - async-timeout [required: >=3.0,<4.0, installed: 3.0.1]
      - attrs [required: >=17.3.0, installed: 19.2.0]
      - chardet [required: >=2.0,<4.0, installed: 3.0.4]
      - idna-ssl [required: >=1.0, installed: 1.1.0]
        - idna [required: >=2.0, installed: 2.8]
      - multidict [required: >=4.5,<5.0, installed: 4.5.2]
      - typing-extensions [required: >=3.6.5, installed: 3.7.4]
      - yarl [required: >=1.0,<2.0, installed: 1.3.0]
        - idna [required: >=2.0, installed: 2.8]
        - multidict [required: >=4.0, installed: 4.5.2]
  - click [required: >=6.7,<8.0, installed: 7.0]
  - colorclass [required: >=2.2,<3.0, installed: 2.2.0]
  - croniter [required: >=0.3.16, installed: 0.3.30]
    - python-dateutil [required: Any, installed: 2.8.0]
      - six [required: >=1.5, installed: 1.12.0]
  - mode [required: >=4.1.0,<4.2, installed: 4.1.2]
    - aiocontextvars [required: >=0.2, installed: 0.2.2]
      - contextvars [required: ==2.4, installed: 2.4]
        - immutables [required: >=0.9, installed: 0.10]
    - colorlog [required: >=2.9.0, installed: 4.0.2]
    - mypy-extensions [required: Any, installed: 0.4.2]
  - mypy-extensions [required: Any, installed: 0.4.2]
  - opentracing [required: >=1.3.0,<2.0.0, installed: 1.3.0]
  - robinhood-aiokafka [required: >=1.0.3,<1.1, installed: 1.0.4]
    - kafka-python [required: >=1.4.4,<1.5, installed: 1.4.7]
  - terminaltables [required: >=3.1,<4.0, installed: 3.1.0]
  - venusian [required: >=1.1,<2.0, installed: 1.2.0]
  - yarl [required: >=1.0,<2.0, installed: 1.3.0]
    - idna [required: >=2.0, installed: 2.8]
    - multidict [required: >=4.0, installed: 4.5.2]
pytest-cov==2.8.1
  - coverage [required: >=4.4, installed: 4.5.4]
  - pytest [required: >=3.6, installed: 5.2.1]
    - atomicwrites [required: >=1.0, installed: 1.3.0]
    - attrs [required: >=17.4.0, installed: 19.2.0]
    - importlib-metadata [required: >=0.12, installed: 0.23]
      - zipp [required: >=0.5, installed: 0.6.0]
        - more-itertools [required: Any, installed: 7.2.0]
    - more-itertools [required: >=4.0.0, installed: 7.2.0]
    - packaging [required: Any, installed: 19.2]
      - pyparsing [required: >=2.0.2, installed: 2.4.2]
      - six [required: Any, installed: 1.12.0]
    - pluggy [required: >=0.12,<1.0, installed: 0.13.0]
      - importlib-metadata [required: >=0.12, installed: 0.23]
        - zipp [required: >=0.5, installed: 0.6.0]
          - more-itertools [required: Any, installed: 7.2.0]
    - py [required: >=1.5.0, installed: 1.8.0]
    - wcwidth [required: Any, installed: 0.1.7]
pytest-timeout==1.3.3
  - pytest [required: >=3.6.0, installed: 5.2.1]
    - atomicwrites [required: >=1.0, installed: 1.3.0]
    - attrs [required: >=17.4.0, installed: 19.2.0]
    - importlib-metadata [required: >=0.12, installed: 0.23]
      - zipp [required: >=0.5, installed: 0.6.0]
        - more-itertools [required: Any, installed: 7.2.0]
    - more-itertools [required: >=4.0.0, installed: 7.2.0]
    - packaging [required: Any, installed: 19.2]
      - pyparsing [required: >=2.0.2, installed: 2.4.2]
      - six [required: Any, installed: 1.12.0]
    - pluggy [required: >=0.12,<1.0, installed: 0.13.0]
      - importlib-metadata [required: >=0.12, installed: 0.23]
        - zipp [required: >=0.5, installed: 0.6.0]
          - more-itertools [required: Any, installed: 7.2.0]
    - py [required: >=1.5.0, installed: 1.8.0]
    - wcwidth [required: Any, installed: 0.1.7]
thoth-common==0.9.12
  - attrs [required: Any, installed: 19.2.0]
  - daiquiri [required: Any, installed: 1.6.0]
  - openshift [required: ==0.8.0, installed: 0.8.0]
    - dictdiffer [required: Any, installed: 0.8.0]
    - jinja2 [required: Any, installed: 2.10.3]
      - MarkupSafe [required: >=0.23, installed: 1.1.1]
    - kubernetes [required: >=8.0.0,<9.0.0, installed: 8.0.2]
      - adal [required: >=1.0.2, installed: 1.2.2]
        - cryptography [required: >=1.1.0, installed: 2.7]
          - asn1crypto [required: >=0.21.0, installed: 1.0.1]
          - cffi [required: >=1.8,!=1.11.3, installed: 1.12.3]
            - pycparser [required: Any, installed: 2.19]
          - six [required: >=1.4.1, installed: 1.12.0]
        - PyJWT [required: >=1.0.0, installed: 1.7.1]
        - python-dateutil [required: >=2.1.0, installed: 2.8.0]
          - six [required: >=1.5, installed: 1.12.0]
        - requests [required: >=2.0.0, installed: 2.22.0]
          - certifi [required: >=2017.4.17, installed: 2019.9.11]
          - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
          - idna [required: >=2.5,<2.9, installed: 2.8]
          - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.6]
      - certifi [required: >=14.05.14, installed: 2019.9.11]
      - google-auth [required: >=1.0.1, installed: 1.6.3]
        - cachetools [required: >=2.0.0, installed: 3.1.1]
        - pyasn1-modules [required: >=0.2.1, installed: 0.2.7]
          - pyasn1 [required: >=0.4.6,<0.5.0, installed: 0.4.7]
        - rsa [required: >=3.1.4, installed: 4.0]
          - pyasn1 [required: >=0.1.3, installed: 0.4.7]
        - six [required: >=1.9.0, installed: 1.12.0]
      - python-dateutil [required: >=2.5.3, installed: 2.8.0]
        - six [required: >=1.5, installed: 1.12.0]
      - pyyaml [required: >=3.12, installed: 5.1.2]
      - requests [required: Any, installed: 2.22.0]
        - certifi [required: >=2017.4.17, installed: 2019.9.11]
        - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
        - idna [required: >=2.5,<2.9, installed: 2.8]
        - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.6]
      - requests-oauthlib [required: Any, installed: 1.2.0]
        - oauthlib [required: >=3.0.0, installed: 3.1.0]
        - requests [required: >=2.0.0, installed: 2.22.0]
          - certifi [required: >=2017.4.17, installed: 2019.9.11]
          - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
          - idna [required: >=2.5,<2.9, installed: 2.8]
          - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.6]
      - setuptools [required: >=21.0.0, installed: 41.4.0]
      - six [required: >=1.9.0, installed: 1.12.0]
      - urllib3 [required: >=1.24.2, installed: 1.25.6]
      - websocket-client [required: >=0.32.0,!=0.42.*,!=0.41.*,!=0.40.0, installed: 0.56.0]
        - six [required: Any, installed: 1.12.0]
    - python-string-utils [required: Any, installed: 0.6.0]
    - ruamel.yaml [required: >=0.15, installed: 0.16.5]
      - ruamel.yaml.clib [required: >=0.1.2, installed: 0.2.0]
    - six [required: Any, installed: 1.12.0]
  - pyyaml [required: Any, installed: 5.1.2]
  - requests [required: Any, installed: 2.22.0]
    - certifi [required: >=2017.4.17, installed: 2019.9.11]
    - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
    - idna [required: >=2.5,<2.9, installed: 2.8]
    - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.6]
  - rfc5424-logging-handler [required: Any, installed: 1.4.3]
    - pytz [required: Any, installed: 2019.3]
    - tzlocal [required: Any, installed: 2.0.0]
      - pytz [required: Any, installed: 2019.3]
  - sentry-sdk [required: Any, installed: 0.12.3]
    - certifi [required: Any, installed: 2019.9.11]
    - urllib3 [required: >=1.9, installed: 1.25.6]

Notes

For more information, see Pipfile and Pipfile.lock.

Once this issue is resolved, the issue will be automatically closed by bot.

Failed to replicate environment for updates

Unable to replicate environment provided in Pipfile.lock.
Linked SHA - 67af9bf

Most likely the deployment build will fail.

Command
  $ pipenv sync --dev
Standard output
Installing dependencies from Pipfile.lock (3e3e00)…
Installing initially failed dependencies…

Standard error
An error occurred while installing jsonformatter==0.2.1 --hash=sha256:6eedd8a8a940f3254d7be2d1d1bde3f1644f675e11971490d80815f31db84c33! Will try again.
[pipenv.exceptions.InstallError]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/core.py", line 2611, in do_sync
[pipenv.exceptions.InstallError]:       system=system,
[pipenv.exceptions.InstallError]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/core.py", line 1253, in do_init
[pipenv.exceptions.InstallError]:       pypi_mirror=pypi_mirror,
[pipenv.exceptions.InstallError]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/core.py", line 859, in do_install_dependencies
[pipenv.exceptions.InstallError]:       retry_list, procs, failed_deps_queue, requirements_dir, **install_kwargs
[pipenv.exceptions.InstallError]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/core.py", line 763, in batch_install
[pipenv.exceptions.InstallError]:       _cleanup_procs(procs, not blocking, failed_deps_queue, retry=retry)
[pipenv.exceptions.InstallError]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/core.py", line 681, in _cleanup_procs
[pipenv.exceptions.InstallError]:       raise exceptions.InstallError(c.dep.name, extra=err_lines)
[pipenv.exceptions.InstallError]: ['Looking in indexes: https://pypi.python.org/simple']
[pipenv.exceptions.InstallError]: ['ERROR: Could not find a version that satisfies the requirement jsonformatter==0.2.1 (from -r /tmp/pipenv-1m8_fwlm-requirements/pipenv-f8gq7_oy-requirement.txt (line 1)) (from versions: 0.1.3, 0.1.4, 0.2.3)', 'ERROR: No matching distribution found for jsonformatter==0.2.1 (from -r /tmp/pipenv-1m8_fwlm-requirements/pipenv-f8gq7_oy-requirement.txt (line 1))']
ERROR: ERROR: Package installation failed...

Environment details

Kebechet version: 1.0.0
Python version: 3.6.8
Platform: Linux-3.10.0-957.21.2.el7.x86_64-x86_64-with-redhat-8.2-Ootpa
pipenv version: pipenv, version 2018.11.26


For more information, see Pipfile and Pipfile.lock.

Failed to update dependencies to their latest version

Automatic dependency update failed for the current master with SHA 14bd7f6.

The automatic dependency management cannot continue. Please fix errors reported bellow.

Command
  $ pipenv lock
Standard output

Standard error
Locking [dev-packages] dependencies…

Environment details

Kebechet version: 1.0.0
Python version: 3.6.8
Platform: Linux-3.10.0-957.21.2.el7.x86_64-x86_64-with-redhat-8.1-Ootpa
pipenv version: pipenv, version 2018.11.26


Dependency graph
black==19.10b0
  - appdirs [required: Any, installed: 1.4.3]
  - attrs [required: >=18.1.0, installed: 19.3.0]
  - click [required: >=6.5, installed: 6.6]
  - pathspec [required: >=0.6,<1, installed: 0.6.0]
  - regex [required: Any, installed: 2019.12.19]
  - toml [required: >=0.9.4, installed: 0.10.0]
  - typed-ast [required: >=1.4.0, installed: 1.4.0]
coala-bears==0.12.0.dev20171110210444
  - aenum [required: ~=2.0.8, installed: 2.0.10]
  - apertium-lint [required: ~=0.29, installed: 0.29]
  - autoflake [required: ~=0.7, installed: 0.7]
    - pyflakes [required: >=0.8.1, installed: 1.5.0]
  - autopep8 [required: ~=1.2, installed: 1.4.4]
    - pycodestyle [required: >=2.4.0, installed: 2.5.0]
  - bandit [required: ~=1.2, installed: 1.6.2]
    - GitPython [required: >=1.0.1, installed: 3.0.5]
      - gitdb2 [required: >=2.0.0, installed: 2.0.6]
        - smmap2 [required: >=2.0.0, installed: 2.0.5]
    - PyYAML [required: >=3.13, installed: 3.13]
    - six [required: >=1.10.0, installed: 1.13.0]
    - stevedore [required: >=1.20.0, installed: 1.31.0]
      - pbr [required: >=2.0.0,!=2.1.0, installed: 5.4.4]
      - six [required: >=1.10.0, installed: 1.13.0]
  - click [required: ==6.6, installed: 6.6]
  - cmakelint [required: ~=1.3, installed: 1.4.1]
  - coala [required: >=0.12.0.dev20170828055500, installed: 0.12.0.dev20180101025653]
    - appdirs [required: ~=1.4, installed: 1.4.3]
    - coala-utils [required: ~=0.6.2, installed: 0.6.7]
      - appdirs [required: ==1.4.*, installed: 1.4.3]
      - pyprint [required: ==0.2.*, installed: 0.2.6]
        - colorama [required: ~=0.3.7, installed: 0.3.9]
        - termcolor [required: ~=1.1.0, installed: 1.1.0]
    - colorlog [required: ~=2.7, installed: 2.10.0]
    - dependency-management [required: ~=0.4.0, installed: 0.4.0]
      - coala-utils [required: ~=0.6, installed: 0.6.7]
        - appdirs [required: ==1.4.*, installed: 1.4.3]
        - pyprint [required: ==0.2.*, installed: 0.2.6]
          - colorama [required: ~=0.3.7, installed: 0.3.9]
          - termcolor [required: ~=1.1.0, installed: 1.1.0]
      - sarge [required: ~=0.1.4, installed: 0.1.5.post0]
    - libclang-py3 [required: ~=3.4.0, installed: 3.4.0]
    - packaging [required: ~=16.8, installed: 16.8]
      - pyparsing [required: Any, installed: 2.4.5]
      - six [required: Any, installed: 1.13.0]
    - Pygments [required: ~=2.1, installed: 2.5.2]
    - PyPrint [required: ~=0.2.6, installed: 0.2.6]
      - colorama [required: ~=0.3.7, installed: 0.3.9]
      - termcolor [required: ~=1.1.0, installed: 1.1.0]
    - requests [required: ~=2.12, installed: 2.22.0]
      - certifi [required: >=2017.4.17, installed: 2019.11.28]
      - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
      - idna [required: >=2.5,<2.9, installed: 2.8]
      - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.7]
    - setuptools [required: >=19.0, installed: 42.0.2]
    - testfixtures [required: ~=4.14.3, installed: 4.14.3]
    - unidiff [required: ~=0.5.2, installed: 0.5.5]
  - cppclean [required: ~=0.12.0, installed: 0.12]
  - cpplint [required: ~=1.3, installed: 1.4.4]
  - dennis [required: ~=0.8, installed: 0.9]
    - click [required: >=6, installed: 6.6]
    - polib [required: >=1.0.8, installed: 1.1.0]
  - docutils-ast-writer [required: ~=0.1.2, installed: 0.1.2]
    - docutils [required: >=0.12, installed: 0.16rc1]
  - eradicate [required: ~=0.1.6, installed: 0.1.6]
  - guess-language-spirit [required: ~=0.5.2, installed: 0.5.3]
  - html-linter [required: ~=0.3.0, installed: 0.3.0]
    - docopt [required: >=0.6.1, installed: 0.6.2]
    - template-remover [required: Any, installed: 0.1.9]
      - docopt [required: >=0.6.1, installed: 0.6.2]
  - HTTPolice [required: ~=0.5.2, installed: 0.5.2]
    - bitstring [required: >=3.1.4, installed: 3.1.6]
    - brotlipy [required: >=0.5.1, installed: 0.7.0]
      - cffi [required: >=1.0.0, installed: 1.13.2]
        - pycparser [required: Any, installed: 2.19]
    - defusedxml [required: >=0.5.0, installed: 0.6.0]
    - dominate [required: >=2.2.0, installed: 2.4.0]
    - lxml [required: >=3.6.0, installed: 4.4.2]
    - singledispatch [required: >=3.4.0.3, installed: 3.4.0.3]
      - six [required: Any, installed: 1.13.0]
    - six [required: >=1.10.0, installed: 1.13.0]
  - isort [required: ~=4.2, installed: 4.3.21]
  - memento-client [required: ~=0.6.1, installed: 0.6.1]
    - requests [required: >=2.7.0, installed: 2.22.0]
      - certifi [required: >=2017.4.17, installed: 2019.11.28]
      - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
      - idna [required: >=2.5,<2.9, installed: 2.8]
      - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.7]
  - munkres3 [required: ~=1.0, installed: 1.0.5.5]
  - mypy-lang [required: ~=0.4.6, installed: 0.4.6]
  - nbformat [required: ~=4.1, installed: 4.4.0]
    - ipython-genutils [required: Any, installed: 0.2.0]
    - jsonschema [required: >=2.4,!=2.5.0, installed: 3.2.0]
      - attrs [required: >=17.4.0, installed: 19.3.0]
      - importlib-metadata [required: Any, installed: 1.3.0]
        - zipp [required: >=0.5, installed: 0.6.0]
          - more-itertools [required: Any, installed: 8.0.2]
      - pyrsistent [required: >=0.14.0, installed: 0.15.6]
        - six [required: Any, installed: 1.13.0]
      - setuptools [required: Any, installed: 42.0.2]
      - six [required: >=1.11.0, installed: 1.13.0]
    - jupyter-core [required: Any, installed: 4.6.1]
      - traitlets [required: Any, installed: 4.3.3]
        - decorator [required: Any, installed: 4.4.1]
        - ipython-genutils [required: Any, installed: 0.2.0]
        - six [required: Any, installed: 1.13.0]
    - traitlets [required: >=4.1, installed: 4.3.3]
      - decorator [required: Any, installed: 4.4.1]
      - ipython-genutils [required: Any, installed: 0.2.0]
      - six [required: Any, installed: 1.13.0]
  - nltk [required: ~=3.2, installed: 3.4.5]
    - six [required: Any, installed: 1.13.0]
  - proselint [required: ~=0.7.0, installed: 0.7.0]
    - click [required: Any, installed: 6.6]
    - future [required: Any, installed: 0.18.2]
    - six [required: Any, installed: 1.13.0]
  - pycodestyle [required: ~=2.2, installed: 2.5.0]
  - pydocstyle [required: ~=2.0, installed: 2.1.1]
    - six [required: Any, installed: 1.13.0]
    - snowballstemmer [required: Any, installed: 2.0.0]
  - pyflakes [required: ~=1.5.0, installed: 1.5.0]
  - pylint [required: ~=1.6, installed: 1.9.5]
    - astroid [required: >=1.6,<2.0, installed: 1.6.6]
      - lazy-object-proxy [required: Any, installed: 1.4.3]
      - six [required: Any, installed: 1.13.0]
      - wrapt [required: Any, installed: 1.11.2]
    - isort [required: >=4.2.5, installed: 4.3.21]
    - mccabe [required: Any, installed: 0.6.1]
    - six [required: Any, installed: 1.13.0]
  - pyroma [required: ~=2.2.0, installed: 2.2]
    - docutils [required: Any, installed: 0.16rc1]
    - setuptools [required: Any, installed: 42.0.2]
  - pyyaml [required: ~=3.12, installed: 3.13]
  - radon [required: ==1.4.0, installed: 1.4.0]
    - colorama [required: >=0.3,<0.4, installed: 0.3.9]
    - mando [required: >=0.3,<0.4, installed: 0.3.3]
  - restructuredtext-lint [required: ~=1.0.0, installed: 1.0.1]
    - docutils [required: >=0.11,<1.0, installed: 0.16rc1]
  - rstcheck [required: ~=3.1, installed: 3.3.1]
    - docutils [required: >=0.7, installed: 0.16rc1]
  - safety [required: ~=0.5.1, installed: 0.5.1]
    - Click [required: >=6.0, installed: 6.6]
    - packaging [required: Any, installed: 16.8]
      - pyparsing [required: Any, installed: 2.4.5]
      - six [required: Any, installed: 1.13.0]
    - requests [required: Any, installed: 2.22.0]
      - certifi [required: >=2017.4.17, installed: 2019.11.28]
      - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
      - idna [required: >=2.5,<2.9, installed: 2.8]
      - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.7]
  - scspell3k [required: ~=2.0, installed: 2.2]
  - vim-vint [required: ~=0.3.12, installed: 0.3.21]
    - ansicolor [required: >=0.2.4, installed: 0.2.6]
    - chardet [required: >=2.3.0, installed: 3.0.4]
    - PyYAML [required: >=3.11, installed: 3.13]
  - vulture [required: ~=0.25.0, installed: 0.25]
  - yamllint [required: ~=1.6.1, installed: 1.6.1]
    - pyyaml [required: Any, installed: 3.13]
  - yapf [required: ~=0.16.0, installed: 0.16.3]
faust==1.9.0
  - aiohttp [required: >=3.5.2,<4.0, installed: 3.6.2]
    - async-timeout [required: >=3.0,<4.0, installed: 3.0.1]
    - attrs [required: >=17.3.0, installed: 19.3.0]
    - chardet [required: >=2.0,<4.0, installed: 3.0.4]
    - idna-ssl [required: >=1.0, installed: 1.1.0]
      - idna [required: >=2.0, installed: 2.8]
    - multidict [required: >=4.5,<5.0, installed: 4.7.2]
    - typing-extensions [required: >=3.6.5, installed: 3.7.4.1]
    - yarl [required: >=1.0,<2.0, installed: 1.4.2]
      - idna [required: >=2.0, installed: 2.8]
      - multidict [required: >=4.0, installed: 4.7.2]
  - aiohttp-cors [required: >=0.7,<2.0, installed: 0.7.0]
    - aiohttp [required: >=1.1, installed: 3.6.2]
      - async-timeout [required: >=3.0,<4.0, installed: 3.0.1]
      - attrs [required: >=17.3.0, installed: 19.3.0]
      - chardet [required: >=2.0,<4.0, installed: 3.0.4]
      - idna-ssl [required: >=1.0, installed: 1.1.0]
        - idna [required: >=2.0, installed: 2.8]
      - multidict [required: >=4.5,<5.0, installed: 4.7.2]
      - typing-extensions [required: >=3.6.5, installed: 3.7.4.1]
      - yarl [required: >=1.0,<2.0, installed: 1.4.2]
        - idna [required: >=2.0, installed: 2.8]
        - multidict [required: >=4.0, installed: 4.7.2]
  - click [required: >=6.7,<8.0, installed: 6.6]
  - colorclass [required: >=2.2,<3.0, installed: 2.2.0]
  - croniter [required: >=0.3.16, installed: 0.3.30]
    - python-dateutil [required: Any, installed: 2.8.1]
      - six [required: >=1.5, installed: 1.13.0]
  - mode [required: >=4.1.3,<4.2, installed: 4.1.6]
    - aiocontextvars [required: >=0.2, installed: 0.2.2]
      - contextvars [required: ==2.4, installed: 2.4]
        - immutables [required: >=0.9, installed: 0.11]
    - colorlog [required: >=2.9.0, installed: 2.10.0]
    - mypy-extensions [required: Any, installed: 0.4.3]
  - mypy-extensions [required: Any, installed: 0.4.3]
  - opentracing [required: >=1.3.0,<2.0.0, installed: 1.3.0]
  - robinhood-aiokafka [required: >=1.1.3,<1.2, installed: 1.1.3]
    - kafka-python [required: >=1.4.6,<1.5, installed: 1.4.7]
  - terminaltables [required: >=3.1,<4.0, installed: 3.1.0]
  - venusian [required: >=1.1,<2.0, installed: 1.2.0]
  - yarl [required: >=1.0,<2.0, installed: 1.4.2]
    - idna [required: >=2.0, installed: 2.8]
    - multidict [required: >=4.0, installed: 4.7.2]
pytest-cov==2.8.1
  - coverage [required: >=4.4, installed: 5.0]
  - pytest [required: >=3.6, installed: 5.3.2]
    - attrs [required: >=17.4.0, installed: 19.3.0]
    - importlib-metadata [required: >=0.12, installed: 1.3.0]
      - zipp [required: >=0.5, installed: 0.6.0]
        - more-itertools [required: Any, installed: 8.0.2]
    - more-itertools [required: >=4.0.0, installed: 8.0.2]
    - packaging [required: Any, installed: 16.8]
      - pyparsing [required: Any, installed: 2.4.5]
      - six [required: Any, installed: 1.13.0]
    - pluggy [required: >=0.12,<1.0, installed: 0.13.1]
      - importlib-metadata [required: >=0.12, installed: 1.3.0]
        - zipp [required: >=0.5, installed: 0.6.0]
          - more-itertools [required: Any, installed: 8.0.2]
    - py [required: >=1.5.0, installed: 1.8.0]
    - wcwidth [required: Any, installed: 0.1.7]
pytest-timeout==1.3.3
  - pytest [required: >=3.6.0, installed: 5.3.2]
    - attrs [required: >=17.4.0, installed: 19.3.0]
    - importlib-metadata [required: >=0.12, installed: 1.3.0]
      - zipp [required: >=0.5, installed: 0.6.0]
        - more-itertools [required: Any, installed: 8.0.2]
    - more-itertools [required: >=4.0.0, installed: 8.0.2]
    - packaging [required: Any, installed: 16.8]
      - pyparsing [required: Any, installed: 2.4.5]
      - six [required: Any, installed: 1.13.0]
    - pluggy [required: >=0.12,<1.0, installed: 0.13.1]
      - importlib-metadata [required: >=0.12, installed: 1.3.0]
        - zipp [required: >=0.5, installed: 0.6.0]
          - more-itertools [required: Any, installed: 8.0.2]
    - py [required: >=1.5.0, installed: 1.8.0]
    - wcwidth [required: Any, installed: 0.1.7]
thoth-common==0.9.22
  - argo-workflows [required: Any, installed: 2.1.4]
    - kubernetes [required: ~=10.0, installed: 10.0.1]
      - certifi [required: >=14.05.14, installed: 2019.11.28]
      - google-auth [required: >=1.0.1, installed: 1.10.0]
        - cachetools [required: >=2.0.0,<5.0, installed: 4.0.0]
        - pyasn1-modules [required: >=0.2.1, installed: 0.2.7]
          - pyasn1 [required: >=0.4.6,<0.5.0, installed: 0.4.8]
        - rsa [required: >=3.1.4,<4.1, installed: 4.0]
          - pyasn1 [required: >=0.1.3, installed: 0.4.8]
        - setuptools [required: >=40.3.0, installed: 42.0.2]
        - six [required: >=1.9.0, installed: 1.13.0]
      - python-dateutil [required: >=2.5.3, installed: 2.8.1]
        - six [required: >=1.5, installed: 1.13.0]
      - pyyaml [required: >=3.12, installed: 3.13]
      - requests [required: Any, installed: 2.22.0]
        - certifi [required: >=2017.4.17, installed: 2019.11.28]
        - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
        - idna [required: >=2.5,<2.9, installed: 2.8]
        - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.7]
      - requests-oauthlib [required: Any, installed: 1.3.0]
        - oauthlib [required: >=3.0.0, installed: 3.1.0]
        - requests [required: >=2.0.0, installed: 2.22.0]
          - certifi [required: >=2017.4.17, installed: 2019.11.28]
          - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
          - idna [required: >=2.5,<2.9, installed: 2.8]
          - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.7]
      - setuptools [required: >=21.0.0, installed: 42.0.2]
      - six [required: >=1.9.0, installed: 1.13.0]
      - urllib3 [required: >=1.24.2, installed: 1.25.7]
      - websocket-client [required: >=0.32.0,!=0.42.*,!=0.41.*,!=0.40.0, installed: 0.56.0]
        - six [required: Any, installed: 1.13.0]
    - mock [required: Any, installed: 3.0.5]
      - six [required: Any, installed: 1.13.0]
  - attrdict [required: Any, installed: 2.0.1]
    - six [required: Any, installed: 1.13.0]
  - attrs [required: Any, installed: 19.3.0]
  - daiquiri [required: Any, installed: 1.6.1]
  - openshift [required: Any, installed: 0.10.1]
    - dictdiffer [required: Any, installed: 0.8.1]
    - jinja2 [required: Any, installed: 2.10.3]
      - MarkupSafe [required: >=0.23, installed: 1.1.1]
    - kubernetes [required: ~=10.0.1, installed: 10.0.1]
      - certifi [required: >=14.05.14, installed: 2019.11.28]
      - google-auth [required: >=1.0.1, installed: 1.10.0]
        - cachetools [required: >=2.0.0,<5.0, installed: 4.0.0]
        - pyasn1-modules [required: >=0.2.1, installed: 0.2.7]
          - pyasn1 [required: >=0.4.6,<0.5.0, installed: 0.4.8]
        - rsa [required: >=3.1.4,<4.1, installed: 4.0]
          - pyasn1 [required: >=0.1.3, installed: 0.4.8]
        - setuptools [required: >=40.3.0, installed: 42.0.2]
        - six [required: >=1.9.0, installed: 1.13.0]
      - python-dateutil [required: >=2.5.3, installed: 2.8.1]
        - six [required: >=1.5, installed: 1.13.0]
      - pyyaml [required: >=3.12, installed: 3.13]
      - requests [required: Any, installed: 2.22.0]
        - certifi [required: >=2017.4.17, installed: 2019.11.28]
        - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
        - idna [required: >=2.5,<2.9, installed: 2.8]
        - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.7]
      - requests-oauthlib [required: Any, installed: 1.3.0]
        - oauthlib [required: >=3.0.0, installed: 3.1.0]
        - requests [required: >=2.0.0, installed: 2.22.0]
          - certifi [required: >=2017.4.17, installed: 2019.11.28]
          - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
          - idna [required: >=2.5,<2.9, installed: 2.8]
          - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.7]
      - setuptools [required: >=21.0.0, installed: 42.0.2]
      - six [required: >=1.9.0, installed: 1.13.0]
      - urllib3 [required: >=1.24.2, installed: 1.25.7]
      - websocket-client [required: >=0.32.0,!=0.42.*,!=0.41.*,!=0.40.0, installed: 0.56.0]
        - six [required: Any, installed: 1.13.0]
    - python-string-utils [required: Any, installed: 0.6.0]
    - ruamel.yaml [required: >=0.15, installed: 0.16.5]
      - ruamel.yaml.clib [required: >=0.1.2, installed: 0.2.0]
    - six [required: Any, installed: 1.13.0]
  - pyyaml [required: Any, installed: 3.13]
  - requests [required: Any, installed: 2.22.0]
    - certifi [required: >=2017.4.17, installed: 2019.11.28]
    - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
    - idna [required: >=2.5,<2.9, installed: 2.8]
    - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.7]
  - rfc5424-logging-handler [required: Any, installed: 1.4.3]
    - pytz [required: Any, installed: 2019.3]
    - tzlocal [required: Any, installed: 2.0.0]
      - pytz [required: Any, installed: 2019.3]
  - sentry-sdk [required: Any, installed: 0.13.5]
    - certifi [required: Any, installed: 2019.11.28]
    - urllib3 [required: >=1.10.0, installed: 1.25.7]

Notes

For more information, see Pipfile and Pipfile.lock.

Once this issue is resolved, the issue will be automatically closed by bot.

Failed to update dependencies to their latest version

Automatic dependency update failed for the current master with SHA 6095562.

The automatic dependency management cannot continue. Please fix errors reported bellow.

Command
  $ pipenv update --dev
Standard output
Running $ pipenv lock then $ pipenv sync.
Installing dependencies from Pipfile.lock (090e68)…
Installing initially failed dependencies…

Standard error
Creating a virtualenv for this project…
Pipfile: /tmp/tmp6usuxe11/Pipfile
Using /home/user/.local/share/virtualenvs/user-5PivF_Od/bin/python (3.6.8) to create virtualenv…
Already using interpreter /home/user/.local/share/virtualenvs/user-5PivF_Od/bin/python
Using real prefix '/usr'
  No LICENSE.txt / LICENSE found in source
New python executable in /tmp/tmp6usuxe11/.venv/bin/python
Installing setuptools, pip, wheel...
done.
Running virtualenv with interpreter /home/user/.local/share/virtualenvs/user-5PivF_Od/bin/python

Virtualenv location: /tmp/tmp6usuxe11/.venv
Locking [dev-packages] dependencies…
Locking [packages] dependencies…
Updated Pipfile.lock (090e68)!
An error occurred while installing aenum==2.0.10 --hash=sha256:5a39fb726a4b5611f74fbce89384abfbeb217882722e5ec5d7247156d80a3241 --hash=sha256:5f4a67ff716d447d0a503755b3dafb73292d99074a75133a3c0f2b55ed84ad4e --hash=sha256:86f4af9a89f92e63b632951d62d9e51ff5b2df1d2e49352b95bab2230037a0c0! Will try again.
An error occurred while installing ansicolor==0.2.6 --hash=sha256:313b217a7abd29c8560f1b5a20fe40ec61e84cfddc514602d544159f49bfa342 --hash=sha256:d17e1b07b9dd7ded31699fbca53ae6cd373584f9b6dcbc124d1f321ebad31f1d! Will try again.
An error occurred while installing apertium-lint==0.29 --hash=sha256:4bc36bfcb9915c62bec81ba111ad693bd203f1b5981869b84e884d4b4e8d0587! Will try again.
An error occurred while installing appdirs==1.4.3 --hash=sha256:9e5896d1372858f8dd3344faf4e5014d21849c756c8d5701f78f8a103b372d92 --hash=sha256:d8b24664561d0d34ddfaec54636d502d7cea6e29c3eaf68f3df6180863e2166e! Will try again.
An error occurred while installing astroid==1.6.6 --hash=sha256:87de48a92e29cedf7210ffa853d11441e7ad94cb47bacd91b023499b51cbc756 --hash=sha256:d25869fc7f44f1d9fb7d24fd7ea0639656f5355fc3089cd1f3d18c6ec6b124c7! Will try again.
An error occurred while installing attrs==19.3.0 --hash=sha256:08a96c641c3a74e44eb59afb61a24f2cb9f4d7188748e76ba4bb5edfa3cb7d1c --hash=sha256:f7b7ce16570fe9965acd6d30101a28f62fb4a7f9e926b3bbc9b61f8b04247e72 --hash=sha256:08a96c641c3a74e44eb59afb61a24f2cb9f4d7188748e76ba4bb5edfa3cb7d1c --hash=sha256:f7b7ce16570fe9965acd6d30101a28f62fb4a7f9e926b3bbc9b61f8b04247e72! Will try again.
An error occurred while installing autoflake==0.7 --hash=sha256:3f3f06c4ef9f9a46961fcb0df8cd96de82208f2af96b4e75d2b419d4e6287442! Will try again.
An error occurred while installing autopep8==1.5 --hash=sha256:0f592a0447acea0c2b0a9602be1e4e3d86db52badd2e3c84f0193bfd89fd3a43! Will try again.
An error occurred while installing bandit==1.6.2 --hash=sha256:336620e220cf2d3115877685e264477ff9d9abaeb0afe3dc7264f55fa17a3952 --hash=sha256:41e75315853507aa145d62a78a2a6c5e3240fe14ee7c601459d0df9418196065! Will try again.
An error occurred while installing bitstring==3.1.6 --hash=sha256:7b60b0c300d0d3d0a24ec84abfda4b0eaed3dc56dc90f6cbfe497166c9ad8443 --hash=sha256:c97a8e2a136e99b523b27da420736ae5cb68f83519d633794a6a11192f69f8bf --hash=sha256:e392819965e7e0246e3cf6a51d5a54e731890ae03ebbfa3cd0e4f74909072096! Will try again.
An error occurred while installing black==19.10b0 --hash=sha256:1b30e59be925fafc1ee4565e5e08abef6b03fe455102883820fe5ee2e4734e0b --hash=sha256:c2edb73a08e9e0e6f65a0e6af18b059b8b1cdd5bef997d7a0b181df93dc81539! Will try again.
An error occurred while installing brotlipy==0.7.0 --hash=sha256:07194f4768eb62a4f4ea76b6d0df6ade185e24ebd85877c351daa0a069f1111a --hash=sha256:091b299bf36dd6ef7a06570dbc98c0f80a504a56c5b797f31934d2ad01ae7d17 --hash=sha256:09ec3e125d16749b31c74f021aba809541b3564e5359f8c265cbae442810b41a --hash=sha256:0be698678a114addcf87a4b9496c552c68a2c99bf93cf8e08f5738b392e82057 --hash=sha256:0fa6088a9a87645d43d7e21e32b4a6bf8f7c3939015a50158c10972aa7f425b7 --hash=sha256:1379347337dc3d20b2d61456d44ccce13e0625db2611c368023b4194d5e2477f --hash=sha256:1ea4e578241504b58f2456a6c69952c88866c794648bdc74baee74839da61d44 --hash=sha256:2699945a0a992c04fc7dc7fa2f1d0575a2c8b4b769f2874a08e8eae46bef36ae --hash=sha256:2a80319ae13ea8dd60ecdc4f5ccf6da3ae64787765923256b62c598c5bba4121 --hash=sha256:2e5c64522364a9ebcdf47c5744a5ddeb3f934742d31e61ebfbbc095460b47162 --hash=sha256:36def0b859beaf21910157b4c33eb3b06d8ce459c942102f16988cca6ea164df --hash=sha256:3a3e56ced8b15fbbd363380344f70f3b438e0fd1fcf27b7526b6172ea950e867 --hash=sha256:3c1d5e2cf945a46975bdb11a19257fa057b67591eb232f393d260e7246d9e571 --hash=sha256:4e4638b49835d567d447a2cfacec109f9a777f219f071312268b351b6839436d --hash=sha256:50ca336374131cfad20612f26cc43c637ac0bfd2be3361495e99270883b52962 --hash=sha256:5de6f7d010b7558f72f4b061a07395c5c3fd57f0285c5af7f126a677b976a868 --hash=sha256:637847560d671657f993313ecc6c6c6666a936b7a925779fd044065c7bc035b9 --hash=sha256:653faef61241bf8bf99d73ca7ec4baa63401ba7b2a2aa88958394869379d67c7 --hash=sha256:786afc8c9bd67de8d31f46e408a3386331e126829114e4db034f91eacb05396d --hash=sha256:79aaf217072840f3e9a3b641cccc51f7fc23037496bd71e26211856b93f4b4cb --hash=sha256:7e31f7adcc5851ca06134705fcf3478210da45d35ad75ec181e1ce9ce345bb38 --hash=sha256:8b39abc3256c978f575df5cd7893153277216474f303e26f0e43ba3d3969ef96 --hash=sha256:9448227b0df082e574c45c983fa5cd4bda7bfb11ea6b59def0940c1647be0c3c --hash=sha256:96bc59ff9b5b5552843dc67999486a220e07a0522dddd3935da05dc194fa485c --hash=sha256:a07647886e24e2fb2d68ca8bf3ada398eb56fd8eac46c733d4d95c64d17f743b --hash=sha256:af65d2699cb9f13b26ec3ba09e75e80d31ff422c03675fcb36ee4dabe588fdc2 --hash=sha256:b4c98b0d2c9c7020a524ca5bbff42027db1004c6571f8bc7b747f2b843128e7a --hash=sha256:c6cc0036b1304dd0073eec416cb2f6b9e37ac8296afd9e481cac3b1f07f9db25 --hash=sha256:d2c1c724c4ac375feb2110f1af98ecdc0e5a8ea79d068efb5891f621a5b235cb --hash=sha256:dc6c5ee0df9732a44d08edab32f8a616b769cc5a4155a12d2d010d248eb3fb07 --hash=sha256:fd1d1c64214af5d90014d82cee5d8141b13d44c92ada7a0c0ec0679c6f15a471! Will try again.
An error occurred while installing certifi==2019.11.28 --hash=sha256:017c25db2a153ce562900032d5bc68e9f191e44e9a0f762f373977de9df1fbb3 --hash=sha256:25b64c7da4cd7479594d035c08c2d809eb4aab3a26e5a990ea98cc450c320f1f --hash=sha256:017c25db2a153ce562900032d5bc68e9f191e44e9a0f762f373977de9df1fbb3 --hash=sha256:25b64c7da4cd7479594d035c08c2d809eb4aab3a26e5a990ea98cc450c320f1f! Will try again.
An error occurred while installing cffi==1.13.2 --hash=sha256:0b49274afc941c626b605fb59b59c3485c17dc776dc3cc7cc14aca74cc19cc42 --hash=sha256:0e3ea92942cb1168e38c05c1d56b0527ce31f1a370f6117f1d490b8dcd6b3a04 --hash=sha256:135f69aecbf4517d5b3d6429207b2dff49c876be724ac0c8bf8e1ea99df3d7e5 --hash=sha256:19db0cdd6e516f13329cba4903368bff9bb5a9331d3410b1b448daaadc495e54 --hash=sha256:2781e9ad0e9d47173c0093321bb5435a9dfae0ed6a762aabafa13108f5f7b2ba --hash=sha256:291f7c42e21d72144bb1c1b2e825ec60f46d0a7468f5346841860454c7aa8f57 --hash=sha256:2c5e309ec482556397cb21ede0350c5e82f0eb2621de04b2633588d118da4396 --hash=sha256:2e9c80a8c3344a92cb04661115898a9129c074f7ab82011ef4b612f645939f12 --hash=sha256:32a262e2b90ffcfdd97c7a5e24a6012a43c61f1f5a57789ad80af1d26c6acd97 --hash=sha256:3c9fff570f13480b201e9ab69453108f6d98244a7f495e91b6c654a47486ba43 --hash=sha256:415bdc7ca8c1c634a6d7163d43fb0ea885a07e9618a64bda407e04b04333b7db --hash=sha256:42194f54c11abc8583417a7cf4eaff544ce0de8187abaf5d29029c91b1725ad3 --hash=sha256:4424e42199e86b21fc4db83bd76909a6fc2a2aefb352cb5414833c030f6ed71b --hash=sha256:4a43c91840bda5f55249413037b7a9b79c90b1184ed504883b72c4df70778579 --hash=sha256:599a1e8ff057ac530c9ad1778293c665cb81a791421f46922d80a86473c13346 --hash=sha256:5c4fae4e9cdd18c82ba3a134be256e98dc0596af1e7285a3d2602c97dcfa5159 --hash=sha256:5ecfa867dea6fabe2a58f03ac9186ea64da1386af2159196da51c4904e11d652 --hash=sha256:62f2578358d3a92e4ab2d830cd1c2049c9c0d0e6d3c58322993cc341bdeac22e --hash=sha256:6471a82d5abea994e38d2c2abc77164b4f7fbaaf80261cb98394d5793f11b12a --hash=sha256:6d4f18483d040e18546108eb13b1dfa1000a089bcf8529e30346116ea6240506 --hash=sha256:71a608532ab3bd26223c8d841dde43f3516aa5d2bf37b50ac410bb5e99053e8f --hash=sha256:74a1d8c85fb6ff0b30fbfa8ad0ac23cd601a138f7509dc617ebc65ef305bb98d --hash=sha256:7b93a885bb13073afb0aa73ad82059a4c41f4b7d8eb8368980448b52d4c7dc2c --hash=sha256:7d4751da932caaec419d514eaa4215eaf14b612cff66398dd51129ac22680b20 --hash=sha256:7f627141a26b551bdebbc4855c1157feeef18241b4b8366ed22a5c7d672ef858 --hash=sha256:8169cf44dd8f9071b2b9248c35fc35e8677451c52f795daa2bb4643f32a540bc --hash=sha256:aa00d66c0fab27373ae44ae26a66a9e43ff2a678bf63a9c7c1a9a4d61172827a --hash=sha256:ccb032fda0873254380aa2bfad2582aedc2959186cce61e3a17abc1a55ff89c3 --hash=sha256:d754f39e0d1603b5b24a7f8484b22d2904fa551fe865fd0d4c3332f078d20d4e --hash=sha256:d75c461e20e29afc0aee7172a0950157c704ff0dd51613506bd7d82b718e7410 --hash=sha256:dcd65317dd15bc0451f3e01c80da2216a31916bdcffd6221ca1202d96584aa25 --hash=sha256:e570d3ab32e2c2861c4ebe6ffcad6a8abf9347432a37608fe1fbd157b3f0036b --hash=sha256:fd43a88e045cf992ed09fa724b5315b790525f2676883a6ea64e3263bae6549d! Will try again.
An error occurred while installing chardet==3.0.4 --hash=sha256:84ab92ed1c4d4f16916e05906b6b75a6c0fb5db821cc65e70cbd64a3e2a5eaae --hash=sha256:fc323ffcaeaed0e0a02bf4d117757b98aed530d9ed4531e3e15460124c106691 --hash=sha256:84ab92ed1c4d4f16916e05906b6b75a6c0fb5db821cc65e70cbd64a3e2a5eaae --hash=sha256:fc323ffcaeaed0e0a02bf4d117757b98aed530d9ed4531e3e15460124c106691! Will try again.
An error occurred while installing click==7.0 --hash=sha256:2335065e6395b9e67ca716de5f7526736bfa6ceead690adf616d925bdc622b13 --hash=sha256:5b94b49521f6456670fdb30cd82a4eca9412788a93fa6dd6df72c94d5a8ff2d7 --hash=sha256:2335065e6395b9e67ca716de5f7526736bfa6ceead690adf616d925bdc622b13 --hash=sha256:5b94b49521f6456670fdb30cd82a4eca9412788a93fa6dd6df72c94d5a8ff2d7! Will try again.
An error occurred while installing cmakelint==1.4.1 --hash=sha256:58aebd449baac4444fca2346f172821e7684f99312694128087617f50db0c4be --hash=sha256:b8df7e5595d30ba8e3e047876ef5dab5bd1dda0f6716324efc6f216e3e8fc42d! Will try again.
An error occurred while installing coala==0.12.0.dev20180101025653 --hash=sha256:3a5fed0b16191479599bab9e6e0f0d4653c4ac460dd790c250814a1b4d1dacae --hash=sha256:564148d0e31269f47e5227a92824b37677faae9ddf9eeb15bde1eef3c4edbd57! Will try again.
An error occurred while installing coala-bears==0.12.0.dev20171110210444 --hash=sha256:615ee2b72316d942705f328ff8a6c2c429f2b3666ea22b285e193fc012a648ef --hash=sha256:c67e4cd0ed7844e29a90f2263061d6f2e32b2e777f2b487b960c59bbe8f1c27b! Will try again.
An error occurred while installing coala-utils==0.6.7 --hash=sha256:e641611e00e055e5d0ef1640179540a2c5a1604dcc629d103acd979e7c75c549! Will try again.
An error occurred while installing colorama==0.3.9 --hash=sha256:463f8483208e921368c9f306094eb6f725c6ca42b0f97e313cb5d5512459feda --hash=sha256:48eb22f4f8461b1df5734a074b57042430fb06e1d61bd1e11b078c0fe6d7a1f1! Will try again.
An error occurred while installing colorlog==4.1.0 --hash=sha256:30aaef5ab2a1873dec5da38fd6ba568fa761c9fa10b40241027fa3edea47f3d2 --hash=sha256:732c191ebbe9a353ec160d043d02c64ddef9028de8caae4cfa8bd49b6afed53e --hash=sha256:30aaef5ab2a1873dec5da38fd6ba568fa761c9fa10b40241027fa3edea47f3d2 --hash=sha256:732c191ebbe9a353ec160d043d02c64ddef9028de8caae4cfa8bd49b6afed53e! Will try again.
An error occurred while installing coverage==5.0.3 --hash=sha256:15cf13a6896048d6d947bf7d222f36e4809ab926894beb748fc9caa14605d9c3 --hash=sha256:1daa3eceed220f9fdb80d5ff950dd95112cd27f70d004c7918ca6dfc6c47054c --hash=sha256:1e44a022500d944d42f94df76727ba3fc0a5c0b672c358b61067abb88caee7a0 --hash=sha256:25dbf1110d70bab68a74b4b9d74f30e99b177cde3388e07cc7272f2168bd1477 --hash=sha256:3230d1003eec018ad4a472d254991e34241e0bbd513e97a29727c7c2f637bd2a --hash=sha256:3dbb72eaeea5763676a1a1efd9b427a048c97c39ed92e13336e726117d0b72bf --hash=sha256:5012d3b8d5a500834783689a5d2292fe06ec75dc86ee1ccdad04b6f5bf231691 --hash=sha256:51bc7710b13a2ae0c726f69756cf7ffd4362f4ac36546e243136187cfcc8aa73 --hash=sha256:527b4f316e6bf7755082a783726da20671a0cc388b786a64417780b90565b987 --hash=sha256:722e4557c8039aad9592c6a4213db75da08c2cd9945320220634f637251c3894 --hash=sha256:76e2057e8ffba5472fd28a3a010431fd9e928885ff480cb278877c6e9943cc2e --hash=sha256:77afca04240c40450c331fa796b3eab6f1e15c5ecf8bf2b8bee9706cd5452fef --hash=sha256:7afad9835e7a651d3551eab18cbc0fdb888f0a6136169fbef0662d9cdc9987cf --hash=sha256:9bea19ac2f08672636350f203db89382121c9c2ade85d945953ef3c8cf9d2a68 --hash=sha256:a8b8ac7876bc3598e43e2603f772d2353d9931709345ad6c1149009fd1bc81b8 --hash=sha256:b0840b45187699affd4c6588286d429cd79a99d509fe3de0f209594669bb0954 --hash=sha256:b26aaf69713e5674efbde4d728fb7124e429c9466aeaf5f4a7e9e699b12c9fe2 --hash=sha256:b63dd43f455ba878e5e9f80ba4f748c0a2156dde6e0e6e690310e24d6e8caf40 --hash=sha256:be18f4ae5a9e46edae3f329de2191747966a34a3d93046dbdf897319923923bc --hash=sha256:c312e57847db2526bc92b9bfa78266bfbaabac3fdcd751df4d062cd4c23e46dc --hash=sha256:c60097190fe9dc2b329a0eb03393e2e0829156a589bd732e70794c0dd804258e --hash=sha256:c62a2143e1313944bf4a5ab34fd3b4be15367a02e9478b0ce800cb510e3bbb9d --hash=sha256:cc1109f54a14d940b8512ee9f1c3975c181bbb200306c6d8b87d93376538782f --hash=sha256:cd60f507c125ac0ad83f05803063bed27e50fa903b9c2cfee3f8a6867ca600fc --hash=sha256:d513cc3db248e566e07a0da99c230aca3556d9b09ed02f420664e2da97eac301 --hash=sha256:d649dc0bcace6fcdb446ae02b98798a856593b19b637c1b9af8edadf2b150bea --hash=sha256:d7008a6796095a79544f4da1ee49418901961c97ca9e9d44904205ff7d6aa8cb --hash=sha256:da93027835164b8223e8e5af2cf902a4c80ed93cb0909417234f4a9df3bcd9af --hash=sha256:e69215621707119c6baf99bda014a45b999d37602cb7043d943c76a59b05bf52 --hash=sha256:ea9525e0fef2de9208250d6c5aeeee0138921057cd67fcef90fbed49c4d62d37 --hash=sha256:fca1669d464f0c9831fd10be2eef6b86f5ebd76c724d1e0706ebdff86bb4adf0! Will try again.
An error occurred while installing cppclean==0.12 --hash=sha256:59605ea292485f8e19b36b375dc4371443645b03da3798c7b8f00f9babc6e016! Will try again.
An error occurred while installing cpplint==1.4.5 --hash=sha256:08b384606136146ac1d32a2ffb60623a5dc1b20434588eaa0fa12a6e24eb3bf5 --hash=sha256:344476251bc55cadf38171c207e56ef8c4acb97dc1529f22701901d06f89fd26! Will try again.
An error occurred while installing decorator==4.4.1 --hash=sha256:54c38050039232e1db4ad7375cfce6748d7b41c29e95a081c8a6d2c30364a2ce --hash=sha256:5d19b92a3c8f7f101c8dd86afd86b0f061a8ce4540ab8cd401fa2542756bce6d! Will try again.
An error occurred while installing defusedxml==0.6.0 --hash=sha256:6687150770438374ab581bb7a1b327a847dd9c5749e396102de3fad4e8a3ef93 --hash=sha256:f684034d135af4c6cbb949b8a4d2ed61634515257a67299e5f940fbaa34377f5! Will try again.
An error occurred while installing dennis==0.9 --hash=sha256:8c942dd5da7d03c65daebc069c5ee5c7f1374ac9b0c8c89c627caa66fe822604 --hash=sha256:f6487392ac91800c5f0684a99b404b7fd0f72ceb48faeb5a0ce4e2c24fb62d3f! Will try again.
An error occurred while installing dependency-management==0.4.0 --hash=sha256:5033e7e1b0d666827c7d5b8effdc350f936a0edcdf733d758de0bc0fed0ccffb --hash=sha256:f0c43082df3d47f6459fb89ea06edc800f183febb564a49fdb46d1bf4becaa60! Will try again.
An error occurred while installing docopt==0.6.2 --hash=sha256:49b3a825280bd66b3aa83585ef59c4a8c82f2c8a522dbe754a8bc8d08c85c491! Will try again.
An error occurred while installing docutils==0.16 --hash=sha256:0c5b78adfbf7762415433f5515cd5c9e762339e23369dbe8000d84a4bf4ab3af --hash=sha256:c2de3a60e9e7d07be26b7f2b00ca0309c207e06c100f9cc2a94931fc75a478fc! Will try again.
An error occurred while installing docutils-ast-writer==0.1.2 --hash=sha256:2c680f813affcbbb63b03e3ada8f3b7963beae2fb585b6639f0bbbea9f0f18a4! Will try again.
An error occurred while installing dominate==2.4.0 --hash=sha256:6e833aea505f0236a9fc692326bac575f8bd38ae0f3a1bdc73d20ca606ac75d5 --hash=sha256:a92474b4312bd8b4c1789792f3ec8c571cd8afa8e7502a2b1c64dd48cd67e59c! Will try again.
An error occurred while installing eradicate==0.1.6 --hash=sha256:614386082723d1ee942feff41ba3e8aaaf4e06ffb0c032f8fb7d584eeb3ea7c3! Will try again.
An error occurred while installing future==0.18.2 --hash=sha256:b1bead90b70cf6ec3f0710ae53a525360fa360d306a86583adc6bf83a4db537d! Will try again.
An error occurred while installing gitdb2==2.0.6 --hash=sha256:1b6df1433567a51a4a9c1a5a0de977aa351a405cc56d7d35f3388bad1f630350 --hash=sha256:96bbb507d765a7f51eb802554a9cfe194a174582f772e0d89f4e87288c288b7b! Will try again.
An error occurred while installing gitpython==3.0.5 --hash=sha256:9c2398ffc3dcb3c40b27324b316f08a4f93ad646d5a6328cafbb871aa79f5e42 --hash=sha256:c155c6a2653593ccb300462f6ef533583a913e17857cfef8fc617c246b6dc245! Will try again.
An error occurred while installing guess-language-spirit==0.5.3 --hash=sha256:a9b20470246bbfd1b69b055ff6459e05aa8cb5f1f1d8481350819cd7680792cc! Will try again.
An error occurred while installing html-linter==0.3.0 --hash=sha256:1fedb2b0c3575023dcd7bf1c05a6ceeb650a7ea36d11411eb871b38fd92a0ed0! Will try again.
An error occurred while installing httpolice==0.5.2 --hash=sha256:05cb2b185f1baa5e6c976e9483cca9cf8d5645f0af52031a9f29f9d7314672d2 --hash=sha256:4830c18fd16af6029b1d87f9b9415c15dc87109e29e819073fb9c5affab93364! Will try again.
An error occurred while installing idna==2.8 --hash=sha256:c357b3f628cf53ae2c4c05627ecc484553142ca23264e593d327bcde5e9c3407 --hash=sha256:ea8b7f6188e6fa117537c3df7da9fc686d485087abf6ac197f9c46432f7e4a3c --hash=sha256:c357b3f628cf53ae2c4c05627ecc484553142ca23264e593d327bcde5e9c3407 --hash=sha256:ea8b7f6188e6fa117537c3df7da9fc686d485087abf6ac197f9c46432f7e4a3c! Will try again.
An error occurred while installing importlib-metadata==1.4.0 ; python_version < '3.8' --hash=sha256:bdd9b7c397c273bcc9a11d6629a38487cd07154fa255a467bf704cd2c258e359 --hash=sha256:f17c015735e1a88296994c0697ecea7e11db24290941983b08c9feb30921e6d8! Will try again.
An error occurred while installing ipython-genutils==0.2.0 --hash=sha256:72dd37233799e619666c9f639a9da83c34013a73e8bbc79a7a6348d93c61fab8 --hash=sha256:eb2e116e75ecef9d4d228fdc66af54269afa26ab4463042e33785b887c628ba8! Will try again.
An error occurred while installing isort==4.3.21 --hash=sha256:54da7e92468955c4fceacd0c86bd0ec997b0e1ee80d97f67c35a78b719dccab1 --hash=sha256:6e811fcb295968434526407adb8796944f1988c5b65e8139058f2014cbe100fd! Will try again.
An error occurred while installing jsonschema==3.2.0 --hash=sha256:4e5b3cf8216f577bee9ce139cbe72eca3ea4f292ec60928ff24758ce626cd163 --hash=sha256:c8a85b28d377cc7737e46e2d9f2b4f44ee3c0e1deac6bf46ddefc7187d30797a! Will try again.
An error occurred while installing jupyter-core==4.6.1 --hash=sha256:464769f7387d7a62a2403d067f1ddc616655b7f77f5d810c0dd62cb54bfd0fb9 --hash=sha256:a183e0ec2e8f6adddf62b0a3fc6a2237e3e0056d381e536d3e7c7ecc3067e244! Will try again.
An error occurred while installing lazy-object-proxy==1.4.3 --hash=sha256:0c4b206227a8097f05c4dbdd323c50edf81f15db3b8dc064d08c62d37e1a504d --hash=sha256:194d092e6f246b906e8f70884e620e459fc54db3259e60cf69a4d66c3fda3449 --hash=sha256:1be7e4c9f96948003609aa6c974ae59830a6baecc5376c25c92d7d697e684c08 --hash=sha256:4677f594e474c91da97f489fea5b7daa17b5517190899cf213697e48d3902f5a --hash=sha256:48dab84ebd4831077b150572aec802f303117c8cc5c871e182447281ebf3ac50 --hash=sha256:5541cada25cd173702dbd99f8e22434105456314462326f06dba3e180f203dfd --hash=sha256:59f79fef100b09564bc2df42ea2d8d21a64fdcda64979c0fa3db7bdaabaf6239 --hash=sha256:8d859b89baf8ef7f8bc6b00aa20316483d67f0b1cbf422f5b4dc56701c8f2ffb --hash=sha256:9254f4358b9b541e3441b007a0ea0764b9d056afdeafc1a5569eee1cc6c1b9ea --hash=sha256:9651375199045a358eb6741df3e02a651e0330be090b3bc79f6d0de31a80ec3e --hash=sha256:97bb5884f6f1cdce0099f86b907aa41c970c3c672ac8b9c8352789e103cf3156 --hash=sha256:9b15f3f4c0f35727d3a0fba4b770b3c4ebbb1fa907dbcc046a1d2799f3edd142 --hash=sha256:a2238e9d1bb71a56cd710611a1614d1194dc10a175c1e08d75e1a7bcc250d442 --hash=sha256:a6ae12d08c0bf9909ce12385803a543bfe99b95fe01e752536a60af2b7797c62 --hash=sha256:ca0a928a3ddbc5725be2dd1cf895ec0a254798915fb3a36af0964a0a4149e3db --hash=sha256:cb2c7c57005a6804ab66f106ceb8482da55f5314b7fcb06551db1edae4ad1531 --hash=sha256:d74bb8693bf9cf75ac3b47a54d716bbb1a92648d5f781fc799347cfc95952383 --hash=sha256:d945239a5639b3ff35b70a88c5f2f491913eb94871780ebfabb2568bd58afc5a --hash=sha256:eba7011090323c1dadf18b3b689845fd96a61ba0a1dfbd7f24b921398affc357 --hash=sha256:efa1909120ce98bbb3777e8b6f92237f5d5c8ea6758efea36a473e1d38f7d3e4 --hash=sha256:f3900e8a5de27447acbf900b4750b0ddfd7ec1ea7fbaf11dfa911141bc522af0! Will try again.
An error occurred while installing libclang-py3==3.4.0 --hash=sha256:e267c3450765a8645ab160b3aad6b3b9e5adcd471325f5e65cc20206a8265027! Will try again.
An error occurred while installing lxml==4.4.2 --hash=sha256:00ac0d64949fef6b3693813fe636a2d56d97a5a49b5bbb86e4cc4cc50ebc9ea2 --hash=sha256:0571e607558665ed42e450d7bf0e2941d542c18e117b1ebbf0ba72f287ad841c --hash=sha256:0e3f04a7615fdac0be5e18b2406529521d6dbdb0167d2a690ee328bef7807487 --hash=sha256:13cf89be53348d1c17b453867da68704802966c433b2bb4fa1f970daadd2ef70 --hash=sha256:217262fcf6a4c2e1c7cb1efa08bd9ebc432502abc6c255c4abab611e8be0d14d --hash=sha256:223e544828f1955daaf4cefbb4853bc416b2ec3fd56d4f4204a8b17007c21250 --hash=sha256:277cb61fede2f95b9c61912fefb3d43fbd5f18bf18a14fae4911b67984486f5d --hash=sha256:3213f753e8ae86c396e0e066866e64c6b04618e85c723b32ecb0909885211f74 --hash=sha256:4690984a4dee1033da0af6df0b7a6bde83f74e1c0c870623797cec77964de34d --hash=sha256:4fcc472ef87f45c429d3b923b925704aa581f875d65bac80f8ab0c3296a63f78 --hash=sha256:61409bd745a265a742f2693e4600e4dbd45cc1daebe1d5fad6fcb22912d44145 --hash=sha256:678f1963f755c5d9f5f6968dded7b245dd1ece8cf53c1aa9d80e6734a8c7f41d --hash=sha256:6c6d03549d4e2734133badb9ab1c05d9f0ef4bcd31d83e5d2b4747c85cfa21da --hash=sha256:6e74d5f4d6ecd6942375c52ffcd35f4318a61a02328f6f1bd79fcb4ffedf969e --hash=sha256:7b4fc7b1ecc987ca7aaf3f4f0e71bbfbd81aaabf87002558f5bc95da3a865bcd --hash=sha256:7ed386a40e172ddf44c061ad74881d8622f791d9af0b6f5be20023029129bc85 --hash=sha256:8f54f0924d12c47a382c600c880770b5ebfc96c9fd94cf6f6bdc21caf6163ea7 --hash=sha256:ad9b81351fdc236bda538efa6879315448411a81186c836d4b80d6ca8217cdb9 --hash=sha256:bbd00e21ea17f7bcc58dccd13869d68441b32899e89cf6cfa90d624a9198ce85 --hash=sha256:c3c289762cc09735e2a8f8a49571d0e8b4f57ea831ea11558247b5bdea0ac4db --hash=sha256:cf4650942de5e5685ad308e22bcafbccfe37c54aa7c0e30cd620c2ee5c93d336 --hash=sha256:cfcbc33c9c59c93776aa41ab02e55c288a042211708b72fdb518221cc803abc8 --hash=sha256:e301055deadfedbd80cf94f2f65ff23126b232b0d1fea28f332ce58137bcdb18 --hash=sha256:ebbfe24df7f7b5c6c7620702496b6419f6a9aa2fd7f005eb731cc80d7b4692b9 --hash=sha256:eff69ddbf3ad86375c344339371168640951c302450c5d3e9936e98d6459db06 --hash=sha256:f6ed60a62c5f1c44e789d2cf14009423cb1646b44a43e40a9cf6a21f077678a1! Will try again.
An error occurred while installing mando==0.3.3 --hash=sha256:4626fe3d74bb23e3a64dda59843d1641f0bf01097f61ff817d3f2e1db21cb4b3 --hash=sha256:ef1e10b7004b84c41cb272516640f1d387fcd1e16ba48fb96d6a6eba131faef3! Will try again.
An error occurred while installing mccabe==0.6.1 --hash=sha256:ab8a6258860da4b6677da4bd2fe5dc2c659cff31b3ee4f7f5d64e79735b80d42 --hash=sha256:dd8d182285a0fe56bace7f45b5e7d1a6ebcbf524e8f3bd87eb0f125271b8831f! Will try again.
An error occurred while installing memento-client==0.6.1 --hash=sha256:b25c4414ea0f3ae84445ef591d8a90560f77be9e032228e4596197b879fcd3ff --hash=sha256:ede4d82b526816ba48d0a96f7edbc6d8d407aec4a64effb04300555ba84ee009! Will try again.
An error occurred while installing more-itertools==8.1.0 --hash=sha256:1a2a32c72400d365000412fe08eb4a24ebee89997c18d3d147544f70f5403b39 --hash=sha256:c468adec578380b6281a114cb8a5db34eb1116277da92d7c46f904f0b52d3288! Will try again.
An error occurred while installing munkres3==1.0.5.5 --hash=sha256:cd2e0570e564801127ebe54c442ea02c87472a2e530fc65d8bab4d779f4ff299 --hash=sha256:f7c110d39296b580458bf0dc8cbc1c461c4d7525da243f4dcc3f3897b125cccf! Will try again.
An error occurred while installing mypy-lang==0.4.6 --hash=sha256:65322cf3466282947184271792b9f63153872896e958047708d8927864f4fb19! Will try again.
An error occurred while installing nbformat==4.4.0 --hash=sha256:b9a0dbdbd45bb034f4f8893cafd6f652ea08c8c1674ba83f2dc55d3955743b0b --hash=sha256:f7494ef0df60766b7cabe0a3651556345a963b74dbc16bc7c18479041170d402! Will try again.
An error occurred while installing nltk==3.4.5 --hash=sha256:bed45551259aa2101381bbdd5df37d44ca2669c5c3dad72439fa459b29137d94! Will try again.
An error occurred while installing packaging==16.8 --hash=sha256:5d50835fdf0a7edf0b55e311b7c887786504efea1177abd7e69329a8e5ea619e --hash=sha256:99276dc6e3a7851f32027a68f1095cd3f77c148091b092ea867a351811cfe388! Will try again.
An error occurred while installing pathspec==0.7.0 --hash=sha256:163b0632d4e31cef212976cf57b43d9fd6b0bac6e67c26015d611a647d5e7424 --hash=sha256:562aa70af2e0d434367d9790ad37aed893de47f1693e4201fd1d3dca15d19b96! Will try again.
An error occurred while installing pbr==5.4.4 --hash=sha256:139d2625547dbfa5fb0b81daebb39601c478c21956dc57e2e07b74450a8c506b --hash=sha256:61aa52a0f18b71c5cc58232d2cf8f8d09cd67fcad60b742a60124cb8d6951488! Will try again.
An error occurred while installing pluggy==0.13.1 --hash=sha256:15b2acde666561e1298d71b523007ed7364de07029219b604cf808bfa1c765b0 --hash=sha256:966c145cd83c96502c3c3868f50408687b38434af77734af1e9ca461a4081d2d! Will try again.
An error occurred while installing polib==1.1.0 --hash=sha256:93b730477c16380c9a96726c54016822ff81acfa553977fdd131f2b90ba858d7 --hash=sha256:fad87d13696127ffb27ea0882d6182f1a9cf8a5e2b37a587751166c51e5a332a! Will try again.
An error occurred while installing proselint==0.7.0 --hash=sha256:094d808d44bf1a60dcb1465749be5cc44f4f6c146c04bc5f28976a833786e830 --hash=sha256:ec886ae96bd9eb51994d1fd44d94e937868171abd5f7a8e0066307c3e8591f85! Will try again.
An error occurred while installing py==1.8.1 --hash=sha256:5e27081401262157467ad6e7f851b7aa402c5852dbcb3dae06768434de5752aa --hash=sha256:c20fdd83a5dbc0af9efd622bee9a5564e278f6380fffcacc43ba6f43db2813b0! Will try again.
An error occurred while installing pycodestyle==2.5.0 --hash=sha256:95a2219d12372f05704562a14ec30bc76b05a5b297b21a5dfe3f6fac3491ae56 --hash=sha256:e40a936c9a450ad81df37f549d676d127b1b66000a6c500caa2b085bc0ca976c! Will try again.
An error occurred while installing pycparser==2.19 --hash=sha256:a988718abfad80b6b157acce7bf130a30876d27603738ac39f140993246b25b3! Will try again.
An error occurred while installing pydocstyle==2.1.1 --hash=sha256:08a870edc94508264ed90510db466c6357c7192e0e866561d740624a8fc7d90c --hash=sha256:4d5bcde961107873bae621f3d580c3e35a426d3687ffc6f8fb356f6628da5a97 --hash=sha256:af9fcccb303899b83bec82dc9a1d56c60fc369973223a5e80c3dfa9bdf984405! Will try again.
An error occurred while installing pyflakes==1.5.0 --hash=sha256:aa0d4dff45c0cc2214ba158d29280f8fa1129f3e87858ef825930845146337f4 --hash=sha256:cc5eadfb38041f8366128786b4ca12700ed05bbf1403d808e89d57d67a3875a7! Will try again.
An error occurred while installing pygments==2.5.2 --hash=sha256:2a3fe295e54a20164a9df49c75fa58526d3be48e14aceba6d6b1e8ac0bfd6f1b --hash=sha256:98c8aa5a9f778fcd1026a17361ddaf7330d1b7c62ae97c3bb0ae73e0b9b6b0fe! Will try again.
An error occurred while installing pylint==1.9.5 --hash=sha256:367e3d49813d349a905390ac27989eff82ab84958731c5ef0bef867452cfdc42 --hash=sha256:97a42df23d436c70132971d1dcb9efad2fe5c0c6add55b90161e773caf729300! Will try again.
An error occurred while installing pyparsing==2.4.6 --hash=sha256:4c830582a84fb022400b85429791bc551f1f4871c33f23e44f353119e92f969f --hash=sha256:c342dccb5250c08d45fd6f8b4a559613ca603b57498511740e65cd11a2e7dcec! Will try again.
An error occurred while installing pyprint==0.2.6 --hash=sha256:c68976963bad16f15aa52e7734666012700c5dfbab604656867fa53ad7a2fe5d --hash=sha256:fa0e1c140b392b76f2028543fa70bae47900120282b119859cdde664d167b0e2! Will try again.
An error occurred while installing pyroma==2.2 --hash=sha256:d3fd8055687c51f8cb704048d6432ecca8fb5513a9c2db857fc6617a095aaa50! Will try again.
An error occurred while installing pyrsistent==0.15.7 --hash=sha256:cdc7b5e3ed77bed61270a47d35434a30617b9becdf2478af76ad2c6ade307280! Will try again.
An error occurred while installing pytest==5.3.4 --hash=sha256:1d122e8be54d1a709e56f82e2d85dcba3018313d64647f38a91aec88c239b600 --hash=sha256:c13d1943c63e599b98cf118fcb9703e4d7bde7caa9a432567bcdcae4bf512d20! Will try again.
An error occurred while installing pytest-cov==2.8.1 --hash=sha256:cc6742d8bac45070217169f5f72ceee1e0e55b0221f54bcf24845972d3a47f2b --hash=sha256:cdbdef4f870408ebdbfeb44e63e07eb18bb4619fae852f6e760645fa36172626! Will try again.
An error occurred while installing pytest-timeout==1.3.4 --hash=sha256:80faa19cd245a42b87a51699d640c00d937c02b749052bfca6bae8bdbe12c48e --hash=sha256:95ca727d4a1dace6ec5f0534d2940b8417ff8b782f7eef0ea09240bdd94d95c2! Will try again.
An error occurred while installing pyyaml==5.3 --hash=sha256:059b2ee3194d718896c0ad077dd8c043e5e909d9180f387ce42012662a4946d6 --hash=sha256:1cf708e2ac57f3aabc87405f04b86354f66799c8e62c28c5fc5f88b5521b2dbf --hash=sha256:24521fa2890642614558b492b473bee0ac1f8057a7263156b02e8b14c88ce6f5 --hash=sha256:4fee71aa5bc6ed9d5f116327c04273e25ae31a3020386916905767ec4fc5317e --hash=sha256:70024e02197337533eef7b85b068212420f950319cc8c580261963aefc75f811 --hash=sha256:74782fbd4d4f87ff04159e986886931456a1894c61229be9eaf4de6f6e44b99e --hash=sha256:940532b111b1952befd7db542c370887a8611660d2b9becff75d39355303d82d --hash=sha256:cb1f2f5e426dc9f07a7681419fe39cee823bb74f723f36f70399123f439e9b20 --hash=sha256:dbbb2379c19ed6042e8f11f2a2c66d39cceb8aeace421bfc29d085d93eda3689 --hash=sha256:e3a057b7a64f1222b56e47bcff5e4b94c4f61faac04c7c4ecb1985e18caa3994 --hash=sha256:e9f45bd5b92c7974e59bcd2dcc8631a6b6cc380a904725fce7bc08872e691615 --hash=sha256:059b2ee3194d718896c0ad077dd8c043e5e909d9180f387ce42012662a4946d6 --hash=sha256:1cf708e2ac57f3aabc87405f04b86354f66799c8e62c28c5fc5f88b5521b2dbf --hash=sha256:24521fa2890642614558b492b473bee0ac1f8057a7263156b02e8b14c88ce6f5 --hash=sha256:4fee71aa5bc6ed9d5f116327c04273e25ae31a3020386916905767ec4fc5317e --hash=sha256:70024e02197337533eef7b85b068212420f950319cc8c580261963aefc75f811 --hash=sha256:74782fbd4d4f87ff04159e986886931456a1894c61229be9eaf4de6f6e44b99e --hash=sha256:940532b111b1952befd7db542c370887a8611660d2b9becff75d39355303d82d --hash=sha256:cb1f2f5e426dc9f07a7681419fe39cee823bb74f723f36f70399123f439e9b20 --hash=sha256:dbbb2379c19ed6042e8f11f2a2c66d39cceb8aeace421bfc29d085d93eda3689 --hash=sha256:e3a057b7a64f1222b56e47bcff5e4b94c4f61faac04c7c4ecb1985e18caa3994 --hash=sha256:e9f45bd5b92c7974e59bcd2dcc8631a6b6cc380a904725fce7bc08872e691615! Will try again.
An error occurred while installing radon==1.4.0 --hash=sha256:035d6918f8d246ef70083993be70d1440a29701f403fe76c38595a45274b5063 --hash=sha256:a9f9171e69b6b57d5f8e58f89c76a79d7e09d790cc8fff0f95cd4c946e8cee8e! Will try again.
An error occurred while installing regex==2020.1.8 --hash=sha256:07b39bf943d3d2fe63d46281d8504f8df0ff3fe4c57e13d1656737950e53e525 --hash=sha256:0932941cdfb3afcbc26cc3bcf7c3f3d73d5a9b9c56955d432dbf8bbc147d4c5b --hash=sha256:0e182d2f097ea8549a249040922fa2b92ae28be4be4895933e369a525ba36576 --hash=sha256:10671601ee06cf4dc1bc0b4805309040bb34c9af423c12c379c83d7895622bb5 --hash=sha256:23e2c2c0ff50f44877f64780b815b8fd2e003cda9ce817a7fd00dea5600c84a0 --hash=sha256:26ff99c980f53b3191d8931b199b29d6787c059f2e029b2b0c694343b1708c35 --hash=sha256:27429b8d74ba683484a06b260b7bb00f312e7c757792628ea251afdbf1434003 --hash=sha256:3e77409b678b21a056415da3a56abfd7c3ad03da71f3051bbcdb68cf44d3c34d --hash=sha256:4e8f02d3d72ca94efc8396f8036c0d3bcc812aefc28ec70f35bb888c74a25161 --hash=sha256:4eae742636aec40cf7ab98171ab9400393360b97e8f9da67b1867a9ee0889b26 --hash=sha256:6a6ae17bf8f2d82d1e8858a47757ce389b880083c4ff2498dba17c56e6c103b9 --hash=sha256:6a6ba91b94427cd49cd27764679024b14a96874e0dc638ae6bdd4b1a3ce97be1 --hash=sha256:7bcd322935377abcc79bfe5b63c44abd0b29387f267791d566bbb566edfdd146 --hash=sha256:98b8ed7bb2155e2cbb8b76f627b2fd12cf4b22ab6e14873e8641f266e0fb6d8f --hash=sha256:bd25bb7980917e4e70ccccd7e3b5740614f1c408a642c245019cff9d7d1b6149 --hash=sha256:d0f424328f9822b0323b3b6f2e4b9c90960b24743d220763c7f07071e0778351 --hash=sha256:d58e4606da2a41659c84baeb3cfa2e4c87a74cec89a1e7c56bee4b956f9d7461 --hash=sha256:e3cd21cc2840ca67de0bbe4071f79f031c81418deb544ceda93ad75ca1ee9f7b --hash=sha256:e6c02171d62ed6972ca8631f6f34fa3281d51db8b326ee397b9c83093a6b7242 --hash=sha256:e7c7661f7276507bce416eaae22040fd91ca471b5b33c13f8ff21137ed6f248c --hash=sha256:ecc6de77df3ef68fee966bb8cb4e067e84d4d1f397d0ef6fce46913663540d77! Will try again.
An error occurred while installing requests==2.22.0 --hash=sha256:11e007a8a2aa0323f5a921e9e6a2d7e4e67d9877e85773fba9ba6419025cbeb4 --hash=sha256:9cf5292fcd0f598c671cfc1e0d7d1a7f13bb8085e9a590f48c010551dc6c4b31 --hash=sha256:11e007a8a2aa0323f5a921e9e6a2d7e4e67d9877e85773fba9ba6419025cbeb4 --hash=sha256:9cf5292fcd0f598c671cfc1e0d7d1a7f13bb8085e9a590f48c010551dc6c4b31! Will try again.
An error occurred while installing restructuredtext-lint==1.0.1 --hash=sha256:e29dae3888168ff3813d34f554376fe4c58b6be2200dc1ced9cfea0e687b8b78! Will try again.
An error occurred while installing rstcheck==3.3.1 --hash=sha256:92c4f79256a54270e0402ba16a2f92d0b3c15c8f4410cb9c57127067c215741f! Will try again.
An error occurred while installing safety==0.5.1 --hash=sha256:24035999031ad5f5f75df310abe4ecbb832b6de869752dc8abe52908a6878d29 --hash=sha256:d7135e2934da57a64d9ad2d34854acc3d05075df91b6e2eddadd868ec6886573! Will try again.
An error occurred while installing sarge==0.1.5.post0 --hash=sha256:da8cc90883f8e5ab4af0d746438f608662f5f2a35da2e858517927edefa134b0! Will try again.
An error occurred while installing scspell3k==2.2 --hash=sha256:c7ee9dd5f9707d08885259246e20cf6bc73a1ac7876713ab7d1d3ce8cc6dcd09! Will try again.
An error occurred while installing singledispatch==3.4.0.3 --hash=sha256:5b06af87df13818d14f08a028e42f566640aef80805c3b50c5056b086e3c2b9c --hash=sha256:833b46966687b3de7f438c761ac475213e53b306740f1abfaa86e1d1aae56aa8! Will try again.
An error occurred while installing six==1.14.0 --hash=sha256:236bdbdce46e6e6a3d61a337c0f8b763ca1e8717c03b369e87a7ec7ce1319c0a --hash=sha256:8f3cd2e254d8f793e7f3d6d9df77b92252b52637291d0f0da013c76ea2724b6c --hash=sha256:236bdbdce46e6e6a3d61a337c0f8b763ca1e8717c03b369e87a7ec7ce1319c0a --hash=sha256:8f3cd2e254d8f793e7f3d6d9df77b92252b52637291d0f0da013c76ea2724b6c! Will try again.
An error occurred while installing smmap2==2.0.5 --hash=sha256:0555a7bf4df71d1ef4218e4807bbf9b201f910174e6e08af2e138d4e517b4dde --hash=sha256:29a9ffa0497e7f2be94ca0ed1ca1aa3cd4cf25a1f6b4f5f87f74b46ed91d609a! Will try again.
An error occurred while installing snowballstemmer==2.0.0 --hash=sha256:209f257d7533fdb3cb73bdbd24f436239ca3b2fa67d56f6ff88e86be08cc5ef0 --hash=sha256:df3bac3df4c2c01363f3dd2cfa78cce2840a79b9f1c2d2de9ce8d31683992f52! Will try again.
An error occurred while installing stevedore==1.31.0 --hash=sha256:01d9f4beecf0fbd070ddb18e5efb10567801ba7ef3ddab0074f54e3cd4e91730 --hash=sha256:e0739f9739a681c7a1fda76a102b65295e96a144ccdb552f2ae03c5f0abe8a14! Will try again.
An error occurred while installing template-remover==0.1.9 --hash=sha256:480f1ce63f56affac1edb29356afcca1260e8409cd928fcf9438fc149df5ff41! Will try again.
An error occurred while installing termcolor==1.1.0 --hash=sha256:1d6d69ce66211143803fbc56652b41d73b4a400a2891d7bf7a1cdf4c02de613b! Will try again.
An error occurred while installing testfixtures==4.14.3 --hash=sha256:c505e92d3c679ce4001a990327e99275ce657a16cd40b54423c7e24c6fdf0b2f --hash=sha256:f9ab6face00b0b3284ced1e46acf0d715d1c5988f3826dc49e71d5fa522a2f7f! Will try again.
An error occurred while installing toml==0.10.0 --hash=sha256:229f81c57791a41d65e399fc06bf0848bab550a9dfd5ed66df18ce5f05e73d5c --hash=sha256:235682dd292d5899d361a811df37e04a8828a5b1da3115886b73cf81ebc9100e! Will try again.
An error occurred while installing traitlets==4.3.3 --hash=sha256:70b4c6a1d9019d7b4f6846832288f86998aa3b9207c6821f3578a6a6a467fe44 --hash=sha256:d023ee369ddd2763310e4c3eae1ff649689440d4ae59d7485eb4cfbbe3e359f7! Will try again.
An error occurred while installing typed-ast==1.4.1 --hash=sha256:0666aa36131496aed8f7be0410ff974562ab7eeac11ef351def9ea6fa28f6355 --hash=sha256:0c2c07682d61a629b68433afb159376e24e5b2fd4641d35424e462169c0a7919 --hash=sha256:249862707802d40f7f29f6e1aad8d84b5aa9e44552d2cc17384b209f091276aa --hash=sha256:24995c843eb0ad11a4527b026b4dde3da70e1f2d8806c99b7b4a7cf491612652 --hash=sha256:269151951236b0f9a6f04015a9004084a5ab0d5f19b57de779f908621e7d8b75 --hash=sha256:4083861b0aa07990b619bd7ddc365eb7fa4b817e99cf5f8d9cf21a42780f6e01 --hash=sha256:498b0f36cc7054c1fead3d7fc59d2150f4d5c6c56ba7fb150c013fbc683a8d2d --hash=sha256:4e3e5da80ccbebfff202a67bf900d081906c358ccc3d5e3c8aea42fdfdfd51c1 --hash=sha256:6daac9731f172c2a22ade6ed0c00197ee7cc1221aa84cfdf9c31defeb059a907 --hash=sha256:715ff2f2df46121071622063fc7543d9b1fd19ebfc4f5c8895af64a77a8c852c --hash=sha256:73d785a950fc82dd2a25897d525d003f6378d1cb23ab305578394694202a58c3 --hash=sha256:8c8aaad94455178e3187ab22c8b01a3837f8ee50e09cf31f1ba129eb293ec30b --hash=sha256:8ce678dbaf790dbdb3eba24056d5364fb45944f33553dd5869b7580cdbb83614 --hash=sha256:aaee9905aee35ba5905cfb3c62f3e83b3bec7b39413f0a7f19be4e547ea01ebb --hash=sha256:bcd3b13b56ea479b3650b82cabd6b5343a625b0ced5429e4ccad28a8973f301b --hash=sha256:c9e348e02e4d2b4a8b2eedb48210430658df6951fa484e59de33ff773fbd4b41 --hash=sha256:d205b1b46085271b4e15f670058ce182bd1199e56b317bf2ec004b6a44f911f6 --hash=sha256:d43943ef777f9a1c42bf4e552ba23ac77a6351de620aa9acf64ad54933ad4d34 --hash=sha256:d5d33e9e7af3b34a40dc05f498939f0ebf187f07c385fd58d591c533ad8562fe --hash=sha256:fc0fea399acb12edbf8a628ba8d2312f583bdbdb3335635db062fa98cf71fca4 --hash=sha256:fe460b922ec15dd205595c9b5b99e2f056fd98ae8f9f56b888e7a17dc2b757e7! Will try again.
An error occurred while installing unidiff==0.5.5 --hash=sha256:6e7ff4be1a9cd8d72197cd15ec735260b8b95d6f9d3e6fdc8a37301b12af0b27 --hash=sha256:9c9ab5fb96b6988b4cd5def6b275492442c04a570900d33aa6373105780025bc! Will try again.
An error occurred while installing urllib3==1.25.7 --hash=sha256:a8a318824cc77d1fd4b2bec2ded92646630d7fe8619497b142c84a9e6f5a7293 --hash=sha256:f3c5fd51747d450d4dcf6f923c81f78f811aab8205fda64b0aba34a4e48b0745 --hash=sha256:a8a318824cc77d1fd4b2bec2ded92646630d7fe8619497b142c84a9e6f5a7293 --hash=sha256:f3c5fd51747d450d4dcf6f923c81f78f811aab8205fda64b0aba34a4e48b0745! Will try again.
An error occurred while installing vim-vint==0.3.21 --hash=sha256:5dc59b2e5c2a746c88f5f51f3fafea3d639c6b0fdbb116bb74af27bf1c820d97 --hash=sha256:61357ebbb41e909e194a4187419ad72bde9e67cc12eb13b31c578866b99d45c0! Will try again.
An error occurred while installing vulture==0.25 --hash=sha256:a9c1c299f0a29d15ea4bb9bc636873a0f24fa5d8022ba90b1b3ffed68738dad0 --hash=sha256:d8758d5b17b162a991be854d4b3bceac5812f73d0e35a8838ca9dcb9ece2d1ca! Will try again.
An error occurred while installing wcwidth==0.1.8 --hash=sha256:8fd29383f539be45b20bd4df0dc29c20ba48654a41e661925e612311e9f3c603 --hash=sha256:f28b3e8a6483e5d49e7f8949ac1a78314e740333ae305b4ba5defd3e74fb37a8! Will try again.
An error occurred while installing wrapt==1.11.2 --hash=sha256:565a021fd19419476b9362b05eeaa094178de64f8361e44468f9e9d7843901e1! Will try again.
An error occurred while installing yamllint==1.6.1 --hash=sha256:1c1fde0588308b6e01c27c750368bf47f44c5efade99d64dd5bce099862c97b9 --hash=sha256:6d6cc4d6545aa40a0edc9039d63ce0828cd50d273c775e7df2092c9b28c15ed4! Will try again.
An error occurred while installing yapf==0.16.3 --hash=sha256:206b5c3c3b679e4bdab44601a8c3a755202f13f8cca6f0608991f582308b266f --hash=sha256:429d3e0eb0111dbb90ee5d4b863f872e65ebb78ddf9529019754e9627c20b8e3! Will try again.
An error occurred while installing zipp==2.0.0 --hash=sha256:57147f6b0403b59f33fd357f169f860e031303415aeb7d04ede4839d23905ab8 --hash=sha256:7ae5ccaca427bafa9760ac3cd8f8c244bfc259794b5b6bb9db4dda2241575d09! Will try again.
An error occurred while installing aiocontextvars==0.2.2 ; python_version < '3.7' --hash=sha256:885daf8261818767d8f7cbd79f9d4482d118f024b6586ef6e67980236a27bfa3 --hash=sha256:f027372dc48641f683c559f247bd84962becaacdc9ba711d583c3871fb5652aa! Will try again.
An error occurred while installing aiohttp==3.6.2 --hash=sha256:1e984191d1ec186881ffaed4581092ba04f7c61582a177b187d3a2f07ed9719e --hash=sha256:259ab809ff0727d0e834ac5e8a283dc5e3e0ecc30c4d80b3cd17a4139ce1f326 --hash=sha256:2f4d1a4fdce595c947162333353d4a44952a724fba9ca3205a3df99a33d1307a --hash=sha256:32e5f3b7e511aa850829fbe5aa32eb455e5534eaa4b1ce93231d00e2f76e5654 --hash=sha256:344c780466b73095a72c616fac5ea9c4665add7fc129f285fbdbca3cccf4612a --hash=sha256:460bd4237d2dbecc3b5ed57e122992f60188afe46e7319116da5eb8a9dfedba4 --hash=sha256:4c6efd824d44ae697814a2a85604d8e992b875462c6655da161ff18fd4f29f17 --hash=sha256:50aaad128e6ac62e7bf7bd1f0c0a24bc968a0c0590a726d5a955af193544bcec --hash=sha256:6206a135d072f88da3e71cc501c59d5abffa9d0bb43269a6dcd28d66bfafdbdd --hash=sha256:65f31b622af739a802ca6fd1a3076fd0ae523f8485c52924a89561ba10c49b48 --hash=sha256:ae55bac364c405caa23a4f2d6cfecc6a0daada500274ffca4a9230e7129eac59 --hash=sha256:b778ce0c909a2653741cb4b1ac7015b5c130ab9c897611df43ae6a58523cb965! Will try again.
An error occurred while installing aiohttp-cors==0.7.0 --hash=sha256:0451ba59fdf6909d0e2cd21e4c0a43752bc0703d33fc78ae94d9d9321710193e --hash=sha256:4d39c6d7100fd9764ed1caf8cebf0eb01bf5e3f24e2e073fda6234bc48b19f5d! Will try again.
An error occurred while installing argo-workflows==2.1.4 --hash=sha256:00a0c0e14ecccd9694b14cce9895e83a161929818ccf2c4c6d1e3681762d9539 --hash=sha256:1d36d0e56c472c9af98cdfc21a0a9d3087227ee8d118310f2ac6649df124c5d5! Will try again.
An error occurred while installing async-timeout==3.0.1 --hash=sha256:0c3c816a028d47f659d6ff5c745cb2acf1f966da1fe5c19c77a70282b25f4c5f --hash=sha256:4291ca197d287d274d0b6cb5d6f8f8f82d434ed288f962539ff18cc9012f9ea3! Will try again.
An error occurred while installing attrdict==2.0.1 --hash=sha256:35c90698b55c683946091177177a9e9c0713a0860f0e049febd72649ccd77b70 --hash=sha256:9432e3498c74ff7e1b20b3d93b45d766b71cbffa90923496f82c4ae38b92be34! Will try again.
An error occurred while installing cachetools==4.0.0 --hash=sha256:9a52dd97a85f257f4e4127f15818e71a0c7899f121b34591fcc1173ea79a0198 --hash=sha256:b304586d357c43221856be51d73387f93e2a961598a9b6b6670664746f3b6c6c! Will try again.
An error occurred while installing colorclass==2.2.0 --hash=sha256:b05c2a348dfc1aff2d502527d78a5b7b7e2f85da94a96c5081210d8e9ee8e18b! Will try again.
An error occurred while installing contextvars==2.4 ; python_version < '3.7' --hash=sha256:f38c908aaa59c14335eeea12abea5f443646216c4e29380d7bf34d2018e2c39e! Will try again.
An error occurred while installing croniter==0.3.31 --hash=sha256:8984b4b27ddfc4b95b2bcec17ee31f827426cf1d717c2af79eff4b4435e23197 --hash=sha256:cfd0837246845d3f3eb463ae8790bfb7db6ac76743e8f31aacaf37830de7fb52! Will try again.
An error occurred while installing daiquiri==2.0.0 --hash=sha256:6b235ed15b73b87fd3cc2521aacbb727bf8443a0896dc534b07503841d03cfdb --hash=sha256:d57b9fd5432933c6e899054eb62cee22eab89f560c8493254d327ec27893c866! Will try again.
An error occurred while installing dictdiffer==0.8.1 --hash=sha256:1adec0d67cdf6166bda96ae2934ddb5e54433998ceab63c984574d187cc563d2 --hash=sha256:d79d9a39e459fe33497c858470ca0d2e93cb96621751de06d631856adfd9c390! Will try again.
An error occurred while installing faust==1.10.0 --hash=sha256:8169e7764aba51ac63f3a8a7979f440937eca5a85c7a3985b7f94233c783689f --hash=sha256:bc76dc50a9d4c1bf3b66febb2923da43e6589ab114389003867c6c0441b78f66! Will try again.
An error occurred while installing google-auth==1.10.1 --hash=sha256:053bd396de4a8e83bfd27d0606645735cf68cfe88ec166655efd823f2969a9ee --hash=sha256:abc459495de01c46bbf37ee8d22e6ae9232b3c2e09cfa5f1122b1645603b5def! Will try again.
An error occurred while installing idna-ssl==1.1.0 ; python_version < '3.7' --hash=sha256:a933e3bb13da54383f9e8f35dc4f9cb9eb9b3b78c6b36f311254d6d0d92c6c7c! Will try again.
An error occurred while installing immutables==0.11 --hash=sha256:0aa055c745510238cbad2f1f709a37a1c9e30a38594de3b385e9876c48a25633 --hash=sha256:0f07c58122e1ce70a7165e68e18e795ac5fe94d7fee3e045ffcf6432602026df --hash=sha256:1c2e729aab250be0de0c13fa833241a778b51390ee2650e0457d1e45b318c441 --hash=sha256:2c536ff2bafeeff9a7865ea10a17a50f90b80b585e31396c349e8f57b0075bd4 --hash=sha256:2de2ec8dde1ca154f811776a8cbbeaea515c3b226c26036eab6484530eea28e0 --hash=sha256:422c7d4c75c88057c625e32992248329507bca180b48cfb702b4ef608f581b50 --hash=sha256:518f20945c1f600b618fb691922c2ab43b193f04dd2d4d2823220d0202014670 --hash=sha256:545186faab9237c102b8bcffd36d71f0b382174c93c501e061de239753cff694 --hash=sha256:6b6d8d035e5888baad3db61dfb167476838a63afccecd927c365f228bb55754c --hash=sha256:b268422a5802fbf934152b835329ac0d23b80b558eaee68034d45718edab4a11 --hash=sha256:b8fed714f1c84a3242c7184838f5e9889139a22bbdd701a182b7fdc237ca3cbb --hash=sha256:bce27277a2fe91509cca69181971ab509c2ee862e8b37b09f26b64f90e8fe8fb --hash=sha256:c7eb2d15c35c73bb168c002c6ea145b65f40131e10dede54b39db0b72849b280 --hash=sha256:d6850578a0dc6530ac19113cfe4ddc13903df635212d498f176fe601a8a5a4a3 --hash=sha256:e87bd941cb4dfa35f16e1ff4b2d99a2931452dcc9cfd788dc8fe513f3d38551e --hash=sha256:f5b93248552c9e7198558776da21c9157d3f70649905d7fdc083c2ab2fbc6088! Will try again.
An error occurred while installing jinja2==2.10.3 --hash=sha256:74320bb91f31270f9551d46522e33af46a80c3d619f4a4bf42b3164d30b5911f --hash=sha256:9fe95f19286cfefaa917656583d020be14e7859c6b0252588391e47db34527de! Will try again.
An error occurred while installing kafka-python==1.4.7 --hash=sha256:2f29baad4b3efe05a2bb81ac268855aa01cbc68397f15bac77b494ffd7e2cada --hash=sha256:4fbebebfcb6fc94903fb720fe883d7bbec7298f4f1acb857c21dd3b4b114ba4b! Will try again.
An error occurred while installing kubernetes==10.0.1 --hash=sha256:3770a496663396ad1def665eeadb947b3f45217a08b64b10c01a57e981ac8592 --hash=sha256:a6dee02a1b39ea4bb9c4c2cc415ea0ada33d8ea0a920f7d4fb6d166989dcac01! Will try again.
An error occurred while installing markupsafe==1.1.1 --hash=sha256:00bc623926325b26bb9605ae9eae8a215691f33cae5df11ca5424f06f2d1f473 --hash=sha256:09027a7803a62ca78792ad89403b1b7a73a01c8cb65909cd876f7fcebd79b161 --hash=sha256:09c4b7f37d6c648cb13f9230d847adf22f8171b1ccc4d5682398e77f40309235 --hash=sha256:1027c282dad077d0bae18be6794e6b6b8c91d58ed8a8d89a89d59693b9131db5 --hash=sha256:24982cc2533820871eba85ba648cd53d8623687ff11cbb805be4ff7b4c971aff --hash=sha256:29872e92839765e546828bb7754a68c418d927cd064fd4708fab9fe9c8bb116b --hash=sha256:43a55c2930bbc139570ac2452adf3d70cdbb3cfe5912c71cdce1c2c6bbd9c5d1 --hash=sha256:46c99d2de99945ec5cb54f23c8cd5689f6d7177305ebff350a58ce5f8de1669e --hash=sha256:500d4957e52ddc3351cabf489e79c91c17f6e0899158447047588650b5e69183 --hash=sha256:535f6fc4d397c1563d08b88e485c3496cf5784e927af890fb3c3aac7f933ec66 --hash=sha256:62fe6c95e3ec8a7fad637b7f3d372c15ec1caa01ab47926cfdf7a75b40e0eac1 --hash=sha256:6dd73240d2af64df90aa7c4e7481e23825ea70af4b4922f8ede5b9e35f78a3b1 --hash=sha256:717ba8fe3ae9cc0006d7c451f0bb265ee07739daf76355d06366154ee68d221e --hash=sha256:79855e1c5b8da654cf486b830bd42c06e8780cea587384cf6545b7d9ac013a0b --hash=sha256:7c1699dfe0cf8ff607dbdcc1e9b9af1755371f92a68f706051cc8c37d447c905 --hash=sha256:88e5fcfb52ee7b911e8bb6d6aa2fd21fbecc674eadd44118a9cc3863f938e735 --hash=sha256:8defac2f2ccd6805ebf65f5eeb132adcf2ab57aa11fdf4c0dd5169a004710e7d --hash=sha256:98c7086708b163d425c67c7a91bad6e466bb99d797aa64f965e9d25c12111a5e --hash=sha256:9add70b36c5666a2ed02b43b335fe19002ee5235efd4b8a89bfcf9005bebac0d --hash=sha256:9bf40443012702a1d2070043cb6291650a0841ece432556f784f004937f0f32c --hash=sha256:ade5e387d2ad0d7ebf59146cc00c8044acbd863725f887353a10df825fc8ae21 --hash=sha256:b00c1de48212e4cc9603895652c5c410df699856a2853135b3967591e4beebc2 --hash=sha256:b1282f8c00509d99fef04d8ba936b156d419be841854fe901d8ae224c59f0be5 --hash=sha256:b2051432115498d3562c084a49bba65d97cf251f5a331c64a12ee7e04dacc51b --hash=sha256:ba59edeaa2fc6114428f1637ffff42da1e311e29382d81b339c1817d37ec93c6 --hash=sha256:c8716a48d94b06bb3b2524c2b77e055fb313aeb4ea620c8dd03a105574ba704f --hash=sha256:cd5df75523866410809ca100dc9681e301e3c27567cf498077e8551b6d20e42f --hash=sha256:e249096428b3ae81b08327a63a485ad0878de3fb939049038579ac0ef61e17e7! Will try again.
An error occurred while installing mock==3.0.5 --hash=sha256:83657d894c90d5681d62155c82bda9c1187827525880eda8ff5df4ec813437c3 --hash=sha256:d157e52d4e5b938c550f39eb2fd15610db062441a9c2747d3dbfa9298211d0f8! Will try again.
An error occurred while installing mode==4.1.9 --hash=sha256:4c823c0505d797f4b46a765e524ba3d55b9a68bfe6b762e3eafd78815ba4f233 --hash=sha256:81f149b507f94856bba5fa6f9fb63335bf4685a353f34a407181c3e51184d387! Will try again.
An error occurred while installing multidict==4.7.4 --hash=sha256:13f3ebdb5693944f52faa7b2065b751cb7e578b8dd0a5bb8e4ab05ad0188b85e --hash=sha256:26502cefa86d79b86752e96639352c7247846515c864d7c2eb85d036752b643c --hash=sha256:4fba5204d32d5c52439f88437d33ad14b5f228e25072a192453f658bddfe45a7 --hash=sha256:527124ef435f39a37b279653ad0238ff606b58328ca7989a6df372fd75d7fe26 --hash=sha256:5414f388ffd78c57e77bd253cf829373721f450613de53dc85a08e34d806e8eb --hash=sha256:5eee66f882ab35674944dfa0d28b57fa51e160b4dce0ce19e47f495fdae70703 --hash=sha256:63810343ea07f5cd86ba66ab66706243a6f5af075eea50c01e39b4ad6bc3c57a --hash=sha256:6bd10adf9f0d6a98ccc792ab6f83d18674775986ba9bacd376b643fe35633357 --hash=sha256:83c6ddf0add57c6b8a7de0bc7e2d656be3eefeff7c922af9a9aae7e49f225625 --hash=sha256:93166e0f5379cf6cd29746989f8a594fa7204dcae2e9335ddba39c870a287e1c --hash=sha256:9a7b115ee0b9b92d10ebc246811d8f55d0c57e82dbb6a26b23c9a9a6ad40ce0c --hash=sha256:a38baa3046cce174a07a59952c9f876ae8875ef3559709639c17fdf21f7b30dd --hash=sha256:a6d219f49821f4b2c85c6d426346a5d84dab6daa6f85ca3da6c00ed05b54022d --hash=sha256:a8ed33e8f9b67e3b592c56567135bb42e7e0e97417a4b6a771e60898dfd5182b --hash=sha256:d7d428488c67b09b26928950a395e41cc72bb9c3d5abfe9f0521940ee4f796d4 --hash=sha256:dcfed56aa085b89d644af17442cdc2debaa73388feba4b8026446d168ca8dad7 --hash=sha256:f29b885e4903bd57a7789f09fe9d60b6475a6c1a4c0eca874d8558f00f9d4b51! Will try again.
An error occurred while installing mypy-extensions==0.4.3 --hash=sha256:090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d --hash=sha256:2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8! Will try again.
An error occurred while installing oauthlib==3.1.0 --hash=sha256:bee41cc35fcca6e988463cacc3bcb8a96224f470ca547e697b604cc697b2f889 --hash=sha256:df884cd6cbe20e32633f1db1072e9356f53638e4361bef4e8b03c9127c9328ea! Will try again.
An error occurred while installing openshift==0.10.1 --hash=sha256:ce7411a5689e6d3831bb5dc08a8c324860d71e3dd5547ba44f4d139cfa57c34b! Will try again.
An error occurred while installing opentracing==1.3.0 --hash=sha256:9b3f7c7a20c34170b9253c97121256264daf6b5f090035c732c6e2548cc5c0a7! Will try again.
An error occurred while installing pyasn1==0.4.8 --hash=sha256:39c7e2ec30515947ff4e87fb6f456dfc6e84857d34be479c9d4a4ba4bf46aa5d --hash=sha256:aef77c9fb94a3ac588e87841208bdec464471d9871bd5050a287cc9a475cd0ba! Will try again.
An error occurred while installing pyasn1-modules==0.2.8 --hash=sha256:905f84c712230b2c592c19470d3ca8d552de726050d1d1716282a1f6146be65e --hash=sha256:a50b808ffeb97cb3601dd25981f6b016cbb3d31fbf57a8b8a87428e6158d0c74! Will try again.
An error occurred while installing python-dateutil==2.8.1 --hash=sha256:73ebfe9dbf22e832286dafa60473e4cd239f8592f699aa5adaf10050e6e1823c --hash=sha256:75bb3f31ea686f1197762692a9ee6a7550b59fc6ca3a1f4b5d7e32fb98e2da2a! Will try again.
An error occurred while installing python-json-logger==0.1.11 --hash=sha256:b7a31162f2a01965a5efb94453ce69230ed208468b0bbc7fdfc56e6d8df2e281! Will try again.
An error occurred while installing python-string-utils==0.6.0 --hash=sha256:05d24a8d884b629b534af992dc1f35dc4de4c73678ffdffa0efcbe667058af1f! Will try again.
An error occurred while installing pytz==2019.3 --hash=sha256:1c557d7d0e871de1f5ccd5833f60fb2550652da6be2693c1e02300743d21500d --hash=sha256:b02c06db6cf09c12dd25137e563b31700d3b80fcc4ad23abb7a315f2789819be! Will try again.
An error occurred while installing requests-oauthlib==1.3.0 --hash=sha256:7f71572defaecd16372f9006f33c2ec8c077c3cfa6f5911a9a90202beb513f3d --hash=sha256:b4261601a71fd721a8bd6d7aa1cc1d6a8a93b4a9f5e96626f8e4d91e8beeaa6a! Will try again.
An error occurred while installing rfc5424-logging-handler==1.4.3 --hash=sha256:9ae14073ef6d76d0c730ad6b6e3aeece841a6d413672d282876c0506dc097257 --hash=sha256:eaba528e47fba3e2845d52d559885cbc27a37db42a9d265ea539b3b4452d3057! Will try again.
An error occurred while installing robinhood-aiokafka==1.1.3 --hash=sha256:31e1c791ffa6862fadf1ba63a0a46a948ac7cbe651b767c01c93dbdf2f594e1e --hash=sha256:5f4a2c8793e6d3a81fee51ad237e212b1d4e59d181a3b7ae69080303b212db3e --hash=sha256:e0ef6d2315f74b89cf1b22f9c521dab057c14e8cc216f0dcee7ce09b1bf914f7! Will try again.
An error occurred while installing rsa==4.0 --hash=sha256:14ba45700ff1ec9eeb206a2ce76b32814958a98e372006c8fb76ba820211be66 --hash=sha256:1a836406405730121ae9823e19c6e806c62bbad73f890574fff50efa4122c487! Will try again.
An error occurred while installing ruamel.yaml==0.16.6 --hash=sha256:91d6bfe4fce401a00388deb0f5d29e10d2d3683a868c1113ae16bbc351ceb6a4 --hash=sha256:966e5a049eebf011c90424b9ec7dab6358cee8de0907354b27a27f20a8c4c2ec! Will try again.
An error occurred while installing ruamel.yaml.clib==0.2.0 ; platform_python_implementation == 'CPython' and python_version < '3.8' --hash=sha256:1e77424825caba5553bbade750cec2277ef130647d685c2b38f68bc03453bac6 --hash=sha256:392b7c371312abf27fb549ec2d5e0092f7ef6e6c9f767bfb13e83cb903aca0fd --hash=sha256:4d55386129291b96483edcb93b381470f7cd69f97585829b048a3d758d31210a --hash=sha256:550168c02d8de52ee58c3d8a8193d5a8a9491a5e7b2462d27ac5bf63717574c9 --hash=sha256:57933a6986a3036257ad7bf283529e7c19c2810ff24c86f4a0cfeb49d2099919 --hash=sha256:615b0396a7fad02d1f9a0dcf9f01202bf9caefee6265198f252c865f4227fcc6 --hash=sha256:77556a7aa190be9a2bd83b7ee075d3df5f3c5016d395613671487e79b082d784 --hash=sha256:7aee724e1ff424757b5bd8f6c5bbdb033a570b2b4683b17ace4dbe61a99a657b --hash=sha256:8073c8b92b06b572e4057b583c3d01674ceaf32167801fe545a087d7a1e8bf52 --hash=sha256:9c6d040d0396c28d3eaaa6cb20152cb3b2f15adf35a0304f4f40a3cf9f1d2448 --hash=sha256:a0ff786d2a7dbe55f9544b3f6ebbcc495d7e730df92a08434604f6f470b899c5 --hash=sha256:b1b7fcee6aedcdc7e62c3a73f238b3d080c7ba6650cd808bce8d7761ec484070 --hash=sha256:b66832ea8077d9b3f6e311c4a53d06273db5dc2db6e8a908550f3c14d67e718c --hash=sha256:be018933c2f4ee7de55e7bd7d0d801b3dfb09d21dad0cce8a97995fd3e44be30 --hash=sha256:d0d3ac228c9bbab08134b4004d748cf9f8743504875b3603b3afbb97e3472947 --hash=sha256:d10e9dd744cf85c219bf747c75194b624cc7a94f0c80ead624b06bfa9f61d3bc --hash=sha256:ea4362548ee0cbc266949d8a441238d9ad3600ca9910c3fe4e82ee3a50706973 --hash=sha256:ed5b3698a2bb241b7f5cbbe277eaa7fe48b07a58784fba4f75224fd066d253ad --hash=sha256:f9dcc1ae73f36e8059589b601e8e4776b9976effd76c21ad6a855a74318efd6e! Will try again.
An error occurred while installing sentry-sdk==0.14.0 --hash=sha256:8e2d38dc58dc992280487e553ec3d97a424e4d179f4fad802ef3b08f64ccf4d8 --hash=sha256:9b59e155229ea7d46a52b5c025d8c3c6d591e9dd9bb5f5f47310b2bb430038a8! Will try again.
An error occurred while installing terminaltables==3.1.0 --hash=sha256:f3eb0eb92e3833972ac36796293ca0906e998dc3be91fbe1f8615b331b853b81! Will try again.
An error occurred while installing thoth-common==0.9.29 --hash=sha256:74e97d1d1aa8b55ddf58b3cff3783499903b2e870c0a521864e9f09ad49ce4ab --hash=sha256:a18a5eb57fabf3d82a762e4a95e6c050c447a341e28aaf1c8278c9377bcb8367! Will try again.
An error occurred while installing typing-extensions==3.7.4.1 ; python_version < '3.7' --hash=sha256:091ecc894d5e908ac75209f10d5b4f118fbdb2eb1ede6a63544054bb1edb41f2 --hash=sha256:910f4656f54de5993ad9304959ce9bb903f90aadc7c67a0bef07e678014e892d --hash=sha256:cf8b63fedea4d89bab840ecbb93e75578af28f76f66c35889bd7065f5af88575! Will try again.
An error occurred while installing tzlocal==2.0.0 --hash=sha256:11c9f16e0a633b4b60e1eede97d8a46340d042e67b670b290ca526576e039048 --hash=sha256:949b9dd5ba4be17190a80c0268167d7e6c92c62b30026cf9764caf3e308e5590! Will try again.
An error occurred while installing venusian==1.2.0 --hash=sha256:2f2d077a1eedc3fda40425f65687c8c494da7e83d7c23bc2c4d1a40eb3ca5b6d --hash=sha256:64ec8285b80b110d0ae5db4280e90e31848a59db98db1aba4d7d46f48ce91e3e! Will try again.
An error occurred while installing websocket-client==0.57.0 --hash=sha256:0fc45c961324d79c781bab301359d5a1b00b13ad1b10415a4780229ef71a5549 --hash=sha256:d735b91d6d1692a6a181f2a8c9e0238e5f6373356f561bb9dc4c7af36f452010! Will try again.
An error occurred while installing yarl==1.4.2 --hash=sha256:0c2ab325d33f1b824734b3ef51d4d54a54e0e7a23d13b86974507602334c2cce --hash=sha256:0ca2f395591bbd85ddd50a82eb1fde9c1066fafe888c5c7cc1d810cf03fd3cc6 --hash=sha256:2098a4b4b9d75ee352807a95cdf5f10180db903bc5b7270715c6bbe2551f64ce --hash=sha256:25e66e5e2007c7a39541ca13b559cd8ebc2ad8fe00ea94a2aad28a9b1e44e5ae --hash=sha256:26d7c90cb04dee1665282a5d1a998defc1a9e012fdca0f33396f81508f49696d --hash=sha256:308b98b0c8cd1dfef1a0311dc5e38ae8f9b58349226aa0533f15a16717ad702f --hash=sha256:3ce3d4f7c6b69c4e4f0704b32eca8123b9c58ae91af740481aa57d7857b5e41b --hash=sha256:58cd9c469eced558cd81aa3f484b2924e8897049e06889e8ff2510435b7ef74b --hash=sha256:5b10eb0e7f044cf0b035112446b26a3a2946bca9d7d7edb5e54a2ad2f6652abb --hash=sha256:6faa19d3824c21bcbfdfce5171e193c8b4ddafdf0ac3f129ccf0cdfcb083e462 --hash=sha256:944494be42fa630134bf907714d40207e646fd5a94423c90d5b514f7b0713fea --hash=sha256:a161de7e50224e8e3de6e184707476b5a989037dcb24292b391a3d66ff158e70 --hash=sha256:a4844ebb2be14768f7994f2017f70aca39d658a96c786211be5ddbe1c68794c1 --hash=sha256:c2b509ac3d4b988ae8769901c66345425e361d518aecbe4acbfc2567e416626a --hash=sha256:c9959d49a77b0e07559e579f38b2f3711c2b8716b8410b320bf9713013215a1b --hash=sha256:d8cdee92bc930d8b09d8bd2043cedd544d9c8bd7436a77678dd602467a993080 --hash=sha256:e15199cdb423316e15f108f51249e44eb156ae5dba232cb73be555324a1d49c2! Will try again.
[pipenv.exceptions.InstallError]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/cli/command.py", line 527, in update
[pipenv.exceptions.InstallError]:       pypi_mirror=state.pypi_mirror,
[pipenv.exceptions.InstallError]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/core.py", line 2611, in do_sync
[pipenv.exceptions.InstallError]:       system=system,
[pipenv.exceptions.InstallError]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/core.py", line 1253, in do_init
[pipenv.exceptions.InstallError]:       pypi_mirror=pypi_mirror,
[pipenv.exceptions.InstallError]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/core.py", line 862, in do_install_dependencies
[pipenv.exceptions.InstallError]:       _cleanup_procs(procs, False, failed_deps_queue, retry=False)
[pipenv.exceptions.InstallError]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/core.py", line 681, in _cleanup_procs
[pipenv.exceptions.InstallError]:       raise exceptions.InstallError(c.dep.name, extra=err_lines)
[pipenv.exceptions.InstallError]: []
[pipenv.exceptions.InstallError]: ['Traceback (most recent call last):', '  File "/tmp/tmp6usuxe11/.venv/bin/pip", line 10, in <module>', '    sys.exit(main())', '  File "/tmp/tmp6usuxe11/.venv/lib/python3.6/site-packages/pip/_internal/cli/main.py", line 73, in main', '    command = create_command(cmd_name, isolated=("--isolated" in cmd_args))', '  File "/tmp/tmp6usuxe11/.venv/lib/python3.6/site-packages/pip/_internal/commands/__init__.py", line 96, in create_command', '    module = importlib.import_module(module_path)', '  File "/tmp/tmp6usuxe11/.venv/lib64/python3.6/importlib/__init__.py", line 126, in import_module', '    return _bootstrap._gcd_import(name[level:], package, level)', '  File "<frozen importlib._bootstrap>", line 994, in _gcd_import', '  File "<frozen importlib._bootstrap>", line 971, in _find_and_load', '  File "<frozen importlib._bootstrap>", line 955, in _find_and_load_unlocked', '  File "<frozen importlib._bootstrap>", line 665, in _load_unlocked', '  File "<frozen importlib._bootstrap_external>", line 678, in exec_module', '  File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed', '  File "/tmp/tmp6usuxe11/.venv/lib/python3.6/site-packages/pip/_internal/commands/install.py", line 24, in <module>', '    from pip._internal.cli.req_command import RequirementCommand', '  File "/tmp/tmp6usuxe11/.venv/lib/python3.6/site-packages/pip/_internal/cli/req_command.py", line 20, in <module>', '    from pip._internal.operations.prepare import RequirementPreparer', '  File "/tmp/tmp6usuxe11/.venv/lib/python3.6/site-packages/pip/_internal/operations/prepare.py", line 16, in <module>', '    from pip._internal.distributions import (', '  File "/tmp/tmp6usuxe11/.venv/lib/python3.6/site-packages/pip/_internal/distributions/__init__.py", line 1, in <module>', '    from pip._internal.distributions.source import SourceDistribution', "ImportError: cannot import name 'SourceDistribution'"]
ERROR: ERROR: Package installation failed...

Environment details

Kebechet version: 1.0.0
Python version: 3.6.8
Platform: Linux-3.10.0-957.21.2.el7.x86_64-x86_64-with-redhat-8.1-Ootpa
pipenv version: pipenv, version 2018.11.26


Dependency graph
Unable to obtain dependency graph:

An error occurred while installing pytest! Will try again.
An error occurred while installing pytest-timeout! Will try again.
An error occurred while installing pytest-cov! Will try again.
An error occurred while installing coala-bears! Will try again.
An error occurred while installing pylint! Will try again.
An error occurred while installing black! Will try again.
An error occurred while installing thoth-common! Will try again.
An error occurred while installing faust! Will try again.
[pipenv.exceptions.InstallError]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/cli/command.py", line 254, in install
[pipenv.exceptions.InstallError]:       editable_packages=state.installstate.editables,
[pipenv.exceptions.InstallError]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/core.py", line 1874, in do_install
[pipenv.exceptions.InstallError]:       keep_outdated=keep_outdated
[pipenv.exceptions.InstallError]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/core.py", line 1253, in do_init
[pipenv.exceptions.InstallError]:       pypi_mirror=pypi_mirror,
[pipenv.exceptions.InstallError]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/core.py", line 862, in do_install_dependencies
[pipenv.exceptions.InstallError]:       _cleanup_procs(procs, False, failed_deps_queue, retry=False)
[pipenv.exceptions.InstallError]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/core.py", line 681, in _cleanup_procs
[pipenv.exceptions.InstallError]:       raise exceptions.InstallError(c.dep.name, extra=err_lines)
[pipenv.exceptions.InstallError]: []
[pipenv.exceptions.InstallError]: ['Traceback (most recent call last):', '  File "/tmp/tmp6usuxe11/.venv/bin/pip", line 10, in <module>', '    sys.exit(main())', '  File "/tmp/tmp6usuxe11/.venv/lib/python3.6/site-packages/pip/_internal/cli/main.py", line 73, in main', '    command = create_command(cmd_name, isolated=("--isolated" in cmd_args))', '  File "/tmp/tmp6usuxe11/.venv/lib/python3.6/site-packages/pip/_internal/commands/__init__.py", line 96, in create_command', '    module = importlib.import_module(module_path)', '  File "/tmp/tmp6usuxe11/.venv/lib64/python3.6/importlib/__init__.py", line 126, in import_module', '    return _bootstrap._gcd_import(name[level:], package, level)', '  File "<frozen importlib._bootstrap>", line 994, in _gcd_import', '  File "<frozen importlib._bootstrap>", line 971, in _find_and_load', '  File "<frozen importlib._bootstrap>", line 955, in _find_and_load_unlocked', '  File "<frozen importlib._bootstrap>", line 665, in _load_unlocked', '  File "<frozen importlib._bootstrap_external>", line 678, in exec_module', '  File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed', '  File "/tmp/tmp6usuxe11/.venv/lib/python3.6/site-packages/pip/_internal/commands/install.py", line 24, in <module>', '    from pip._internal.cli.req_command import RequirementCommand', '  File "/tmp/tmp6usuxe11/.venv/lib/python3.6/site-packages/pip/_internal/cli/req_command.py", line 20, in <module>', '    from pip._internal.operations.prepare import RequirementPreparer', '  File "/tmp/tmp6usuxe11/.venv/lib/python3.6/site-packages/pip/_internal/operations/prepare.py", line 16, in <module>', '    from pip._internal.distributions import (', '  File "/tmp/tmp6usuxe11/.venv/lib/python3.6/site-packages/pip/_internal/distributions/__init__.py", line 1, in <module>', '    from pip._internal.distributions.source import SourceDistribution', "ImportError: cannot import name 'SourceDistribution'"]
ERROR: ERROR: Package installation failed...

Notes

For more information, see Pipfile and Pipfile.lock.

Once this issue is resolved, the issue will be automatically closed by bot.

Failed to update dependencies to their latest version

Automatic dependency update failed for the current master with SHA 78c74ea.

The automatic dependency management cannot continue. Please fix errors reported bellow.

Command
  $ pipenv update --dev
Standard output
Running $ pipenv lock then $ pipenv sync.
Installing dependencies from Pipfile.lock (090e68)…
Installing initially failed dependencies…

Standard error
Creating a virtualenv for this project…
Pipfile: /tmp/tmp43ug76js/Pipfile
Using /home/user/.local/share/virtualenvs/user-5PivF_Od/bin/python (3.6.8) to create virtualenv…
Already using interpreter /home/user/.local/share/virtualenvs/user-5PivF_Od/bin/python
Using real prefix '/usr'
  No LICENSE.txt / LICENSE found in source
New python executable in /tmp/tmp43ug76js/.venv/bin/python
Installing setuptools, pip, wheel...
done.
Running virtualenv with interpreter /home/user/.local/share/virtualenvs/user-5PivF_Od/bin/python

Virtualenv location: /tmp/tmp43ug76js/.venv
Locking [dev-packages] dependencies…
Locking [packages] dependencies…
Updated Pipfile.lock (090e68)!
An error occurred while installing pycodestyle==2.5.0 --hash=sha256:95a2219d12372f05704562a14ec30bc76b05a5b297b21a5dfe3f6fac3491ae56 --hash=sha256:e40a936c9a450ad81df37f549d676d127b1b66000a6c500caa2b085bc0ca976c! Will try again.
An error occurred while installing pycparser==2.19 --hash=sha256:a988718abfad80b6b157acce7bf130a30876d27603738ac39f140993246b25b3! Will try again.
An error occurred while installing pydocstyle==2.1.1 --hash=sha256:08a870edc94508264ed90510db466c6357c7192e0e866561d740624a8fc7d90c --hash=sha256:4d5bcde961107873bae621f3d580c3e35a426d3687ffc6f8fb356f6628da5a97 --hash=sha256:af9fcccb303899b83bec82dc9a1d56c60fc369973223a5e80c3dfa9bdf984405! Will try again.
An error occurred while installing pyflakes==1.5.0 --hash=sha256:aa0d4dff45c0cc2214ba158d29280f8fa1129f3e87858ef825930845146337f4 --hash=sha256:cc5eadfb38041f8366128786b4ca12700ed05bbf1403d808e89d57d67a3875a7! Will try again.
An error occurred while installing pygments==2.5.2 --hash=sha256:2a3fe295e54a20164a9df49c75fa58526d3be48e14aceba6d6b1e8ac0bfd6f1b --hash=sha256:98c8aa5a9f778fcd1026a17361ddaf7330d1b7c62ae97c3bb0ae73e0b9b6b0fe! Will try again.
An error occurred while installing pylint==1.9.5 --hash=sha256:367e3d49813d349a905390ac27989eff82ab84958731c5ef0bef867452cfdc42 --hash=sha256:97a42df23d436c70132971d1dcb9efad2fe5c0c6add55b90161e773caf729300! Will try again.
An error occurred while installing pyparsing==2.4.5 --hash=sha256:20f995ecd72f2a1f4bf6b072b63b22e2eb457836601e76d6e5dfcd75436acc1f --hash=sha256:4ca62001be367f01bd3e92ecbb79070272a9d4964dce6a48a82ff0b8bc7e683a! Will try again.
An error occurred while installing pyprint==0.2.6 --hash=sha256:c68976963bad16f15aa52e7734666012700c5dfbab604656867fa53ad7a2fe5d --hash=sha256:fa0e1c140b392b76f2028543fa70bae47900120282b119859cdde664d167b0e2! Will try again.
An error occurred while installing pyroma==2.2 --hash=sha256:d3fd8055687c51f8cb704048d6432ecca8fb5513a9c2db857fc6617a095aaa50! Will try again.
An error occurred while installing pyrsistent==0.15.6 --hash=sha256:f3b280d030afb652f79d67c5586157c5c1355c9a58dfc7940566e28d28f3df1b! Will try again.
An error occurred while installing pytest==5.3.1 --hash=sha256:63344a2e3bce2e4d522fd62b4fdebb647c019f1f9e4ca075debbd13219db4418 --hash=sha256:f67403f33b2b1d25a6756184077394167fe5e2f9d8bdaab30707d19ccec35427! Will try again.
An error occurred while installing pytest-cov==2.8.1 --hash=sha256:cc6742d8bac45070217169f5f72ceee1e0e55b0221f54bcf24845972d3a47f2b --hash=sha256:cdbdef4f870408ebdbfeb44e63e07eb18bb4619fae852f6e760645fa36172626! Will try again.
An error occurred while installing pytest-timeout==1.3.3 --hash=sha256:4a30ba76837a32c7b7cd5c84ee9933fde4b9022b0cd20ea7d4a577c2a1649fb1 --hash=sha256:d49f618c6448c14168773b6cdda022764c63ea80d42274e3156787e8088d04c6! Will try again.
An error occurred while installing pyyaml==5.2 --hash=sha256:0e7f69397d53155e55d10ff68fdfb2cf630a35e6daf65cf0bdeaf04f127c09dc --hash=sha256:2e9f0b7c5914367b0916c3c104a024bb68f269a486b9d04a2e8ac6f6597b7803 --hash=sha256:35ace9b4147848cafac3db142795ee42deebe9d0dad885ce643928e88daebdcc --hash=sha256:38a4f0d114101c58c0f3a88aeaa44d63efd588845c5a2df5290b73db8f246d15 --hash=sha256:483eb6a33b671408c8529106df3707270bfacb2447bf8ad856a4b4f57f6e3075 --hash=sha256:4b6be5edb9f6bb73680f5bf4ee08ff25416d1400fbd4535fe0069b2994da07cd --hash=sha256:7f38e35c00e160db592091751d385cd7b3046d6d51f578b29943225178257b31 --hash=sha256:8100c896ecb361794d8bfdb9c11fce618c7cf83d624d73d5ab38aef3bc82d43f --hash=sha256:c0ee8eca2c582d29c3c2ec6e2c4f703d1b7f1fb10bc72317355a746057e7346c --hash=sha256:e4c015484ff0ff197564917b4b4246ca03f411b9bd7f16e02a2f586eb48b6d04 --hash=sha256:ebc4ed52dcc93eeebeae5cf5deb2ae4347b3a81c3fa12b0b8c976544829396a4 --hash=sha256:0e7f69397d53155e55d10ff68fdfb2cf630a35e6daf65cf0bdeaf04f127c09dc --hash=sha256:2e9f0b7c5914367b0916c3c104a024bb68f269a486b9d04a2e8ac6f6597b7803 --hash=sha256:35ace9b4147848cafac3db142795ee42deebe9d0dad885ce643928e88daebdcc --hash=sha256:38a4f0d114101c58c0f3a88aeaa44d63efd588845c5a2df5290b73db8f246d15 --hash=sha256:483eb6a33b671408c8529106df3707270bfacb2447bf8ad856a4b4f57f6e3075 --hash=sha256:4b6be5edb9f6bb73680f5bf4ee08ff25416d1400fbd4535fe0069b2994da07cd --hash=sha256:7f38e35c00e160db592091751d385cd7b3046d6d51f578b29943225178257b31 --hash=sha256:8100c896ecb361794d8bfdb9c11fce618c7cf83d624d73d5ab38aef3bc82d43f --hash=sha256:c0ee8eca2c582d29c3c2ec6e2c4f703d1b7f1fb10bc72317355a746057e7346c --hash=sha256:e4c015484ff0ff197564917b4b4246ca03f411b9bd7f16e02a2f586eb48b6d04 --hash=sha256:ebc4ed52dcc93eeebeae5cf5deb2ae4347b3a81c3fa12b0b8c976544829396a4! Will try again.
An error occurred while installing radon==1.4.0 --hash=sha256:035d6918f8d246ef70083993be70d1440a29701f403fe76c38595a45274b5063 --hash=sha256:a9f9171e69b6b57d5f8e58f89c76a79d7e09d790cc8fff0f95cd4c946e8cee8e! Will try again.
An error occurred while installing regex==2019.11.1 --hash=sha256:15454b37c5a278f46f7aa2d9339bda450c300617ca2fca6558d05d870245edc7 --hash=sha256:1ad40708c255943a227e778b022c6497c129ad614bb7a2a2f916e12e8a359ee7 --hash=sha256:5e00f65cc507d13ab4dfa92c1232d004fa202c1d43a32a13940ab8a5afe2fb96 --hash=sha256:604dc563a02a74d70ae1f55208ddc9bfb6d9f470f6d1a5054c4bd5ae58744ab1 --hash=sha256:720e34a539a76a1fedcebe4397290604cc2bdf6f81eca44adb9fb2ea071c0c69 --hash=sha256:7caf47e4a9ac6ef08cabd3442cc4ca3386db141fb3c8b2a7e202d0470028e910 --hash=sha256:7faf534c1841c09d8fefa60ccde7b9903c9b528853ecf41628689793290ca143 --hash=sha256:b4e0406d822aa4993ac45072a584d57aa4931cf8288b5455bbf30c1d59dbad59 --hash=sha256:c31eaf28c6fe75ea329add0022efeed249e37861c19681960f99bbc7db981fb2 --hash=sha256:c7393597191fc2043c744db021643549061e12abe0b3ff5c429d806de7b93b66 --hash=sha256:d2b302f8cdd82c8f48e9de749d1d17f85ce9a0f082880b9a4859f66b07037dc6 --hash=sha256:e3d8dd0ec0ea280cf89026b0898971f5750a7bd92cb62c51af5a52abd020054a --hash=sha256:ec032cbfed59bd5a4b8eab943c310acfaaa81394e14f44454ad5c9eba4f24a74! Will try again.
An error occurred while installing requests==2.22.0 --hash=sha256:11e007a8a2aa0323f5a921e9e6a2d7e4e67d9877e85773fba9ba6419025cbeb4 --hash=sha256:9cf5292fcd0f598c671cfc1e0d7d1a7f13bb8085e9a590f48c010551dc6c4b31 --hash=sha256:11e007a8a2aa0323f5a921e9e6a2d7e4e67d9877e85773fba9ba6419025cbeb4 --hash=sha256:9cf5292fcd0f598c671cfc1e0d7d1a7f13bb8085e9a590f48c010551dc6c4b31! Will try again.
An error occurred while installing restructuredtext-lint==1.0.1 --hash=sha256:e29dae3888168ff3813d34f554376fe4c58b6be2200dc1ced9cfea0e687b8b78! Will try again.
An error occurred while installing rstcheck==3.3.1 --hash=sha256:92c4f79256a54270e0402ba16a2f92d0b3c15c8f4410cb9c57127067c215741f! Will try again.
An error occurred while installing safety==0.5.1 --hash=sha256:24035999031ad5f5f75df310abe4ecbb832b6de869752dc8abe52908a6878d29 --hash=sha256:d7135e2934da57a64d9ad2d34854acc3d05075df91b6e2eddadd868ec6886573! Will try again.
An error occurred while installing sarge==0.1.5.post0 --hash=sha256:da8cc90883f8e5ab4af0d746438f608662f5f2a35da2e858517927edefa134b0! Will try again.
An error occurred while installing scspell3k==2.2 --hash=sha256:c7ee9dd5f9707d08885259246e20cf6bc73a1ac7876713ab7d1d3ce8cc6dcd09! Will try again.
An error occurred while installing singledispatch==3.4.0.3 --hash=sha256:5b06af87df13818d14f08a028e42f566640aef80805c3b50c5056b086e3c2b9c --hash=sha256:833b46966687b3de7f438c761ac475213e53b306740f1abfaa86e1d1aae56aa8! Will try again.
An error occurred while installing six==1.13.0 --hash=sha256:1f1b7d42e254082a9db6279deae68afb421ceba6158efa6131de7b3003ee93fd --hash=sha256:30f610279e8b2578cab6db20741130331735c781b56053c59c4076da27f06b66 --hash=sha256:1f1b7d42e254082a9db6279deae68afb421ceba6158efa6131de7b3003ee93fd --hash=sha256:30f610279e8b2578cab6db20741130331735c781b56053c59c4076da27f06b66! Will try again.
An error occurred while installing smmap2==2.0.5 --hash=sha256:0555a7bf4df71d1ef4218e4807bbf9b201f910174e6e08af2e138d4e517b4dde --hash=sha256:29a9ffa0497e7f2be94ca0ed1ca1aa3cd4cf25a1f6b4f5f87f74b46ed91d609a! Will try again.
An error occurred while installing snowballstemmer==2.0.0 --hash=sha256:209f257d7533fdb3cb73bdbd24f436239ca3b2fa67d56f6ff88e86be08cc5ef0 --hash=sha256:df3bac3df4c2c01363f3dd2cfa78cce2840a79b9f1c2d2de9ce8d31683992f52! Will try again.
An error occurred while installing stevedore==1.31.0 --hash=sha256:01d9f4beecf0fbd070ddb18e5efb10567801ba7ef3ddab0074f54e3cd4e91730 --hash=sha256:e0739f9739a681c7a1fda76a102b65295e96a144ccdb552f2ae03c5f0abe8a14! Will try again.
An error occurred while installing template-remover==0.1.9 --hash=sha256:480f1ce63f56affac1edb29356afcca1260e8409cd928fcf9438fc149df5ff41! Will try again.
An error occurred while installing termcolor==1.1.0 --hash=sha256:1d6d69ce66211143803fbc56652b41d73b4a400a2891d7bf7a1cdf4c02de613b! Will try again.
An error occurred while installing testfixtures==4.14.3 --hash=sha256:c505e92d3c679ce4001a990327e99275ce657a16cd40b54423c7e24c6fdf0b2f --hash=sha256:f9ab6face00b0b3284ced1e46acf0d715d1c5988f3826dc49e71d5fa522a2f7f! Will try again.
An error occurred while installing toml==0.10.0 --hash=sha256:229f81c57791a41d65e399fc06bf0848bab550a9dfd5ed66df18ce5f05e73d5c --hash=sha256:235682dd292d5899d361a811df37e04a8828a5b1da3115886b73cf81ebc9100e! Will try again.
An error occurred while installing traitlets==4.3.3 --hash=sha256:70b4c6a1d9019d7b4f6846832288f86998aa3b9207c6821f3578a6a6a467fe44 --hash=sha256:d023ee369ddd2763310e4c3eae1ff649689440d4ae59d7485eb4cfbbe3e359f7! Will try again.
An error occurred while installing unidiff==0.5.5 --hash=sha256:6e7ff4be1a9cd8d72197cd15ec735260b8b95d6f9d3e6fdc8a37301b12af0b27 --hash=sha256:9c9ab5fb96b6988b4cd5def6b275492442c04a570900d33aa6373105780025bc! Will try again.
An error occurred while installing urllib3==1.25.7 --hash=sha256:a8a318824cc77d1fd4b2bec2ded92646630d7fe8619497b142c84a9e6f5a7293 --hash=sha256:f3c5fd51747d450d4dcf6f923c81f78f811aab8205fda64b0aba34a4e48b0745 --hash=sha256:a8a318824cc77d1fd4b2bec2ded92646630d7fe8619497b142c84a9e6f5a7293 --hash=sha256:f3c5fd51747d450d4dcf6f923c81f78f811aab8205fda64b0aba34a4e48b0745! Will try again.
An error occurred while installing vim-vint==0.3.21 --hash=sha256:5dc59b2e5c2a746c88f5f51f3fafea3d639c6b0fdbb116bb74af27bf1c820d97 --hash=sha256:61357ebbb41e909e194a4187419ad72bde9e67cc12eb13b31c578866b99d45c0! Will try again.
An error occurred while installing vulture==0.25 --hash=sha256:a9c1c299f0a29d15ea4bb9bc636873a0f24fa5d8022ba90b1b3ffed68738dad0 --hash=sha256:d8758d5b17b162a991be854d4b3bceac5812f73d0e35a8838ca9dcb9ece2d1ca! Will try again.
An error occurred while installing wcwidth==0.1.7 --hash=sha256:3df37372226d6e63e1b1e1eda15c594bca98a22d33a23832a90998faa96bc65e --hash=sha256:f4ebe71925af7b40a864553f761ed559b43544f8f71746c2d756c7fe788ade7c! Will try again.
An error occurred while installing aiocontextvars==0.2.2 ; python_version < '3.7' --hash=sha256:885daf8261818767d8f7cbd79f9d4482d118f024b6586ef6e67980236a27bfa3 --hash=sha256:f027372dc48641f683c559f247bd84962becaacdc9ba711d583c3871fb5652aa! Will try again.
An error occurred while installing cachetools==3.1.1 --hash=sha256:428266a1c0d36dc5aca63a2d7c5942e88c2c898d72139fca0e97fdd2380517ae --hash=sha256:8ea2d3ce97850f31e4a08b0e2b5e6c34997d7216a9d2c98e0f3978630d4da69a! Will try again.
An error occurred while installing colorclass==2.2.0 --hash=sha256:b05c2a348dfc1aff2d502527d78a5b7b7e2f85da94a96c5081210d8e9ee8e18b! Will try again.
An error occurred while installing contextvars==2.4 ; python_version < '3.7' --hash=sha256:f38c908aaa59c14335eeea12abea5f443646216c4e29380d7bf34d2018e2c39e! Will try again.
An error occurred while installing croniter==0.3.30 --hash=sha256:0d905dbe6f131a910fd3dde792f0129788cd2cb3a8048c5f7aaa212670b0cef2 --hash=sha256:538adeb3a7f7816c3cdec6db974c441620d764c25ff4ed0146ee7296b8a50590! Will try again.
An error occurred while installing daiquiri==1.6.0 --hash=sha256:14f0c0746df96cb9c1c5b12ff4dca0bcb977d072c6f4424adcc54e1c0f548cd7 --hash=sha256:c13a236b82b0ff6eda514bba71df595c61f12de024bc53c703a4c7511ddc94c1! Will try again.
An error occurred while installing dictdiffer==0.8.0 --hash=sha256:97cf4ef98ebc1acf737074aed41e379cf48ab5ff528c92109dfb8e2e619e6809 --hash=sha256:b3ad476fc9cca60302b52c50e1839342d2092aeaba586d69cbf9249f87f52463! Will try again.
An error occurred while installing faust==1.9.0 --hash=sha256:0ca8be2667e53b4257649f13c992180c5b23a8893fa4b520d6662ca5828f81e0 --hash=sha256:86dfa0fa0d4c76869b48d897087697f5144d28b4234ae0b263930114f999d3ef --hash=sha256:c5bfce09ec056a3d869d4ccc3d633f6eb4a12742b5c7190e5652e31254608223! Will try again.
An error occurred while installing google-auth==1.7.2 --hash=sha256:55999a44129bcdf23a9db0b9b2f6a21f7d91d84cb50623a94090029afa7fe923 --hash=sha256:624db00f5cb1c938ea3c4a8aee94b43e69f1a9deadd734ed7d27d00bf3c68ae4! Will try again.
An error occurred while installing idna-ssl==1.1.0 ; python_version < '3.7' --hash=sha256:a933e3bb13da54383f9e8f35dc4f9cb9eb9b3b78c6b36f311254d6d0d92c6c7c! Will try again.
An error occurred while installing immutables==0.11 --hash=sha256:0aa055c745510238cbad2f1f709a37a1c9e30a38594de3b385e9876c48a25633 --hash=sha256:0f07c58122e1ce70a7165e68e18e795ac5fe94d7fee3e045ffcf6432602026df --hash=sha256:1c2e729aab250be0de0c13fa833241a778b51390ee2650e0457d1e45b318c441 --hash=sha256:2c536ff2bafeeff9a7865ea10a17a50f90b80b585e31396c349e8f57b0075bd4 --hash=sha256:2de2ec8dde1ca154f811776a8cbbeaea515c3b226c26036eab6484530eea28e0 --hash=sha256:422c7d4c75c88057c625e32992248329507bca180b48cfb702b4ef608f581b50 --hash=sha256:518f20945c1f600b618fb691922c2ab43b193f04dd2d4d2823220d0202014670 --hash=sha256:545186faab9237c102b8bcffd36d71f0b382174c93c501e061de239753cff694 --hash=sha256:6b6d8d035e5888baad3db61dfb167476838a63afccecd927c365f228bb55754c --hash=sha256:b268422a5802fbf934152b835329ac0d23b80b558eaee68034d45718edab4a11 --hash=sha256:b8fed714f1c84a3242c7184838f5e9889139a22bbdd701a182b7fdc237ca3cbb --hash=sha256:bce27277a2fe91509cca69181971ab509c2ee862e8b37b09f26b64f90e8fe8fb --hash=sha256:c7eb2d15c35c73bb168c002c6ea145b65f40131e10dede54b39db0b72849b280 --hash=sha256:d6850578a0dc6530ac19113cfe4ddc13903df635212d498f176fe601a8a5a4a3 --hash=sha256:e87bd941cb4dfa35f16e1ff4b2d99a2931452dcc9cfd788dc8fe513f3d38551e --hash=sha256:f5b93248552c9e7198558776da21c9157d3f70649905d7fdc083c2ab2fbc6088! Will try again.
An error occurred while installing jinja2==2.10.3 --hash=sha256:74320bb91f31270f9551d46522e33af46a80c3d619f4a4bf42b3164d30b5911f --hash=sha256:9fe95f19286cfefaa917656583d020be14e7859c6b0252588391e47db34527de! Will try again.
An error occurred while installing kafka-python==1.4.7 --hash=sha256:2f29baad4b3efe05a2bb81ac268855aa01cbc68397f15bac77b494ffd7e2cada --hash=sha256:4fbebebfcb6fc94903fb720fe883d7bbec7298f4f1acb857c21dd3b4b114ba4b! Will try again.
An error occurred while installing kubernetes==10.0.1 --hash=sha256:3770a496663396ad1def665eeadb947b3f45217a08b64b10c01a57e981ac8592 --hash=sha256:a6dee02a1b39ea4bb9c4c2cc415ea0ada33d8ea0a920f7d4fb6d166989dcac01! Will try again.
An error occurred while installing markupsafe==1.1.1 --hash=sha256:00bc623926325b26bb9605ae9eae8a215691f33cae5df11ca5424f06f2d1f473 --hash=sha256:09027a7803a62ca78792ad89403b1b7a73a01c8cb65909cd876f7fcebd79b161 --hash=sha256:09c4b7f37d6c648cb13f9230d847adf22f8171b1ccc4d5682398e77f40309235 --hash=sha256:1027c282dad077d0bae18be6794e6b6b8c91d58ed8a8d89a89d59693b9131db5 --hash=sha256:24982cc2533820871eba85ba648cd53d8623687ff11cbb805be4ff7b4c971aff --hash=sha256:29872e92839765e546828bb7754a68c418d927cd064fd4708fab9fe9c8bb116b --hash=sha256:43a55c2930bbc139570ac2452adf3d70cdbb3cfe5912c71cdce1c2c6bbd9c5d1 --hash=sha256:46c99d2de99945ec5cb54f23c8cd5689f6d7177305ebff350a58ce5f8de1669e --hash=sha256:500d4957e52ddc3351cabf489e79c91c17f6e0899158447047588650b5e69183 --hash=sha256:535f6fc4d397c1563d08b88e485c3496cf5784e927af890fb3c3aac7f933ec66 --hash=sha256:62fe6c95e3ec8a7fad637b7f3d372c15ec1caa01ab47926cfdf7a75b40e0eac1 --hash=sha256:6dd73240d2af64df90aa7c4e7481e23825ea70af4b4922f8ede5b9e35f78a3b1 --hash=sha256:717ba8fe3ae9cc0006d7c451f0bb265ee07739daf76355d06366154ee68d221e --hash=sha256:79855e1c5b8da654cf486b830bd42c06e8780cea587384cf6545b7d9ac013a0b --hash=sha256:7c1699dfe0cf8ff607dbdcc1e9b9af1755371f92a68f706051cc8c37d447c905 --hash=sha256:88e5fcfb52ee7b911e8bb6d6aa2fd21fbecc674eadd44118a9cc3863f938e735 --hash=sha256:8defac2f2ccd6805ebf65f5eeb132adcf2ab57aa11fdf4c0dd5169a004710e7d --hash=sha256:98c7086708b163d425c67c7a91bad6e466bb99d797aa64f965e9d25c12111a5e --hash=sha256:9add70b36c5666a2ed02b43b335fe19002ee5235efd4b8a89bfcf9005bebac0d --hash=sha256:9bf40443012702a1d2070043cb6291650a0841ece432556f784f004937f0f32c --hash=sha256:ade5e387d2ad0d7ebf59146cc00c8044acbd863725f887353a10df825fc8ae21 --hash=sha256:b00c1de48212e4cc9603895652c5c410df699856a2853135b3967591e4beebc2 --hash=sha256:b1282f8c00509d99fef04d8ba936b156d419be841854fe901d8ae224c59f0be5 --hash=sha256:b2051432115498d3562c084a49bba65d97cf251f5a331c64a12ee7e04dacc51b --hash=sha256:ba59edeaa2fc6114428f1637ffff42da1e311e29382d81b339c1817d37ec93c6 --hash=sha256:c8716a48d94b06bb3b2524c2b77e055fb313aeb4ea620c8dd03a105574ba704f --hash=sha256:cd5df75523866410809ca100dc9681e301e3c27567cf498077e8551b6d20e42f --hash=sha256:e249096428b3ae81b08327a63a485ad0878de3fb939049038579ac0ef61e17e7! Will try again.
An error occurred while installing mock==3.0.5 --hash=sha256:83657d894c90d5681d62155c82bda9c1187827525880eda8ff5df4ec813437c3 --hash=sha256:d157e52d4e5b938c550f39eb2fd15610db062441a9c2747d3dbfa9298211d0f8! Will try again.
An error occurred while installing mode==4.1.3 --hash=sha256:0a9370608e674cd0b6cd5e64779f307664da670068af356782f7f5813916f511 --hash=sha256:f9435c69f7078cb3160cd4ef23b98cda38a9f7feb60ab17ab125228803bfc02a! Will try again.
An error occurred while installing multidict==4.6.1 --hash=sha256:07f9a6bf75ad675d53956b2c6a2d4ef2fa63132f33ecc99e9c24cf93beb0d10b --hash=sha256:0ffe4d4d28cbe9801952bfb52a8095dd9ffecebd93f84bdf973c76300de783c5 --hash=sha256:1b605272c558e4c659dbaf0fb32a53bfede44121bcf77b356e6e906867b958b7 --hash=sha256:205a011e636d885af6dd0029e41e3514a46e05bb2a43251a619a6e8348b96fc0 --hash=sha256:250632316295f2311e1ed43e6b26a63b0216b866b45c11441886ac1543ca96e1 --hash=sha256:2bc9c2579312c68a3552ee816311c8da76412e6f6a9cf33b15152e385a572d2a --hash=sha256:318aadf1cfb6741c555c7dd83d94f746dc95989f4f106b25b8a83dfb547f2756 --hash=sha256:42cdd649741a14b0602bf15985cad0dd4696a380081a3319cd1ead46fd0f0fab --hash=sha256:5159c4975931a1a78bf6602bbebaa366747fce0a56cb2111f44789d2c45e379f --hash=sha256:87e26d8b89127c25659e962c61a4c655ec7445d19150daea0759516884ecb8b4 --hash=sha256:891b7e142885e17a894d9d22b0349b92bb2da4769b4e675665d0331c08719be5 --hash=sha256:8d919034420378132d074bf89df148d0193e9780c9fe7c0e495e895b8af4d8a2 --hash=sha256:9c890978e2b37dd0dc1bd952da9a5d9f245d4807bee33e3517e4119c48d66f8c --hash=sha256:a37433ce8cdb35fc9e6e47e1606fa1bfd6d70440879038dca7d8dd023197eaa9 --hash=sha256:c626029841ada34c030b94a00c573a0c7575fe66489cde148785b6535397d675 --hash=sha256:cfec9d001a83dc73580143f3c77e898cf7ad78b27bb5e64dbe9652668fcafec7 --hash=sha256:efaf1b18ea6c1f577b1371c0159edbe4749558bfe983e13aa24d0a0c01e1ad7b! Will try again.
An error occurred while installing mypy-extensions==0.4.3 --hash=sha256:090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d --hash=sha256:2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8! Will try again.
An error occurred while installing oauthlib==3.1.0 --hash=sha256:bee41cc35fcca6e988463cacc3bcb8a96224f470ca547e697b604cc697b2f889 --hash=sha256:df884cd6cbe20e32633f1db1072e9356f53638e4361bef4e8b03c9127c9328ea! Will try again.
An error occurred while installing openshift==0.10.0 --hash=sha256:8af7e1e1fd85af79e363b1a8a323f091764b3d9f2e9640bf32cbd11e52d4324f! Will try again.
An error occurred while installing pyasn1==0.4.8 --hash=sha256:39c7e2ec30515947ff4e87fb6f456dfc6e84857d34be479c9d4a4ba4bf46aa5d --hash=sha256:aef77c9fb94a3ac588e87841208bdec464471d9871bd5050a287cc9a475cd0ba! Will try again.
An error occurred while installing python-dateutil==2.8.1 --hash=sha256:73ebfe9dbf22e832286dafa60473e4cd239f8592f699aa5adaf10050e6e1823c --hash=sha256:75bb3f31ea686f1197762692a9ee6a7550b59fc6ca3a1f4b5d7e32fb98e2da2a! Will try again.
An error occurred while installing python-string-utils==0.6.0 --hash=sha256:05d24a8d884b629b534af992dc1f35dc4de4c73678ffdffa0efcbe667058af1f! Will try again.
An error occurred while installing pytz==2019.3 --hash=sha256:1c557d7d0e871de1f5ccd5833f60fb2550652da6be2693c1e02300743d21500d --hash=sha256:b02c06db6cf09c12dd25137e563b31700d3b80fcc4ad23abb7a315f2789819be! Will try again.
An error occurred while installing requests-oauthlib==1.3.0 --hash=sha256:7f71572defaecd16372f9006f33c2ec8c077c3cfa6f5911a9a90202beb513f3d --hash=sha256:b4261601a71fd721a8bd6d7aa1cc1d6a8a93b4a9f5e96626f8e4d91e8beeaa6a! Will try again.
An error occurred while installing rfc5424-logging-handler==1.4.3 --hash=sha256:9ae14073ef6d76d0c730ad6b6e3aeece841a6d413672d282876c0506dc097257 --hash=sha256:eaba528e47fba3e2845d52d559885cbc27a37db42a9d265ea539b3b4452d3057! Will try again.
An error occurred while installing robinhood-aiokafka==1.1.3 --hash=sha256:31e1c791ffa6862fadf1ba63a0a46a948ac7cbe651b767c01c93dbdf2f594e1e --hash=sha256:5f4a2c8793e6d3a81fee51ad237e212b1d4e59d181a3b7ae69080303b212db3e --hash=sha256:e0ef6d2315f74b89cf1b22f9c521dab057c14e8cc216f0dcee7ce09b1bf914f7! Will try again.
An error occurred while installing rsa==4.0 --hash=sha256:14ba45700ff1ec9eeb206a2ce76b32814958a98e372006c8fb76ba820211be66 --hash=sha256:1a836406405730121ae9823e19c6e806c62bbad73f890574fff50efa4122c487! Will try again.
An error occurred while installing ruamel.yaml==0.16.5 --hash=sha256:0db639b1b2742dae666c6fc009b8d1931ef15c9276ef31c0673cc6dcf766cf40 --hash=sha256:412a6f5cfdc0525dee6a27c08f5415c7fd832a7afcb7a0ed7319628aed23d408! Will try again.
An error occurred while installing ruamel.yaml.clib==0.2.0 ; platform_python_implementation == 'CPython' and python_version < '3.8' --hash=sha256:1e77424825caba5553bbade750cec2277ef130647d685c2b38f68bc03453bac6 --hash=sha256:392b7c371312abf27fb549ec2d5e0092f7ef6e6c9f767bfb13e83cb903aca0fd --hash=sha256:4d55386129291b96483edcb93b381470f7cd69f97585829b048a3d758d31210a --hash=sha256:550168c02d8de52ee58c3d8a8193d5a8a9491a5e7b2462d27ac5bf63717574c9 --hash=sha256:57933a6986a3036257ad7bf283529e7c19c2810ff24c86f4a0cfeb49d2099919 --hash=sha256:615b0396a7fad02d1f9a0dcf9f01202bf9caefee6265198f252c865f4227fcc6 --hash=sha256:77556a7aa190be9a2bd83b7ee075d3df5f3c5016d395613671487e79b082d784 --hash=sha256:7aee724e1ff424757b5bd8f6c5bbdb033a570b2b4683b17ace4dbe61a99a657b --hash=sha256:8073c8b92b06b572e4057b583c3d01674ceaf32167801fe545a087d7a1e8bf52 --hash=sha256:9c6d040d0396c28d3eaaa6cb20152cb3b2f15adf35a0304f4f40a3cf9f1d2448 --hash=sha256:a0ff786d2a7dbe55f9544b3f6ebbcc495d7e730df92a08434604f6f470b899c5 --hash=sha256:b1b7fcee6aedcdc7e62c3a73f238b3d080c7ba6650cd808bce8d7761ec484070 --hash=sha256:b66832ea8077d9b3f6e311c4a53d06273db5dc2db6e8a908550f3c14d67e718c --hash=sha256:d0d3ac228c9bbab08134b4004d748cf9f8743504875b3603b3afbb97e3472947 --hash=sha256:d10e9dd744cf85c219bf747c75194b624cc7a94f0c80ead624b06bfa9f61d3bc --hash=sha256:ea4362548ee0cbc266949d8a441238d9ad3600ca9910c3fe4e82ee3a50706973 --hash=sha256:ed5b3698a2bb241b7f5cbbe277eaa7fe48b07a58784fba4f75224fd066d253ad --hash=sha256:f9dcc1ae73f36e8059589b601e8e4776b9976effd76c21ad6a855a74318efd6e! Will try again.
[pipenv.exceptions.InstallError]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/cli/command.py", line 527, in update
[pipenv.exceptions.InstallError]:       pypi_mirror=state.pypi_mirror,
[pipenv.exceptions.InstallError]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/core.py", line 2611, in do_sync
[pipenv.exceptions.InstallError]:       system=system,
[pipenv.exceptions.InstallError]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/core.py", line 1253, in do_init
[pipenv.exceptions.InstallError]:       pypi_mirror=pypi_mirror,
[pipenv.exceptions.InstallError]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/core.py", line 862, in do_install_dependencies
[pipenv.exceptions.InstallError]:       _cleanup_procs(procs, False, failed_deps_queue, retry=False)
[pipenv.exceptions.InstallError]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/core.py", line 681, in _cleanup_procs
[pipenv.exceptions.InstallError]:       raise exceptions.InstallError(c.dep.name, extra=err_lines)
[pipenv.exceptions.InstallError]: ['Looking in indexes: https://pypi.python.org/simple']
[pipenv.exceptions.InstallError]: ["WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.VerifiedHTTPSConnection object at 0x7fac377bf518>: Failed to establish a new connection: [Errno -2] Name or service not known',)': /simple/pycodestyle/", "WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.VerifiedHTTPSConnection object at 0x7fac377bfdd8>: Failed to establish a new connection: [Errno -2] Name or service not known',)': /simple/pycodestyle/", "WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.VerifiedHTTPSConnection object at 0x7fac377bf7f0>: Failed to establish a new connection: [Errno -2] Name or service not known',)': /simple/pycodestyle/", "WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.VerifiedHTTPSConnection object at 0x7fac377bf160>: Failed to establish a new connection: [Errno -2] Name or service not known',)': /simple/pycodestyle/", "WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.VerifiedHTTPSConnection object at 0x7fac377bf080>: Failed to establish a new connection: [Errno -2] Name or service not known',)': /simple/pycodestyle/", 'ERROR: Could not find a version that satisfies the requirement pycodestyle==2.5.0 (from -r /tmp/pipenv-mazem5ik-requirements/pipenv-i9wm1apb-requirement.txt (line 1)) (from versions: none)', 'ERROR: No matching distribution found for pycodestyle==2.5.0 (from -r /tmp/pipenv-mazem5ik-requirements/pipenv-i9wm1apb-requirement.txt (line 1))']
ERROR: ERROR: Package installation failed...

Environment details

Kebechet version: 1.0.0
Python version: 3.6.8
Platform: Linux-3.10.0-957.21.2.el7.x86_64-x86_64-with-redhat-8.1-Ootpa
pipenv version: pipenv, version 2018.11.26


Dependency graph
black==19.10b0
  - appdirs [required: Any, installed: 1.4.3]
  - attrs [required: >=18.1.0, installed: 19.3.0]
  - click [required: >=6.5, installed: 6.6]
  - pathspec [required: >=0.6,<1, installed: 0.6.0]
  - regex [required: Any, installed: 2019.11.1]
  - toml [required: >=0.9.4, installed: 0.10.0]
  - typed-ast [required: >=1.4.0, installed: 1.4.0]
coala-bears==0.12.0.dev20171110210444
  - aenum [required: ~=2.0.8, installed: 2.0.10]
  - apertium-lint [required: ~=0.29, installed: 0.29]
  - autoflake [required: ~=0.7, installed: 0.7]
    - pyflakes [required: >=0.8.1, installed: 1.5.0]
  - autopep8 [required: ~=1.2, installed: 1.4.4]
    - pycodestyle [required: >=2.4.0, installed: 2.5.0]
  - bandit [required: ~=1.2, installed: 1.6.2]
    - GitPython [required: >=1.0.1, installed: 3.0.5]
      - gitdb2 [required: >=2.0.0, installed: 2.0.6]
        - smmap2 [required: >=2.0.0, installed: 2.0.5]
    - PyYAML [required: >=3.13, installed: 3.13]
    - six [required: >=1.10.0, installed: 1.13.0]
    - stevedore [required: >=1.20.0, installed: 1.31.0]
      - pbr [required: >=2.0.0,!=2.1.0, installed: 5.4.4]
      - six [required: >=1.10.0, installed: 1.13.0]
  - click [required: ==6.6, installed: 6.6]
  - cmakelint [required: ~=1.3, installed: 1.4.1]
  - coala [required: >=0.12.0.dev20170828055500, installed: 0.12.0.dev20180101025653]
    - appdirs [required: ~=1.4, installed: 1.4.3]
    - coala-utils [required: ~=0.6.2, installed: 0.6.7]
      - appdirs [required: ==1.4.*, installed: 1.4.3]
      - pyprint [required: ==0.2.*, installed: 0.2.6]
        - colorama [required: ~=0.3.7, installed: 0.3.9]
        - termcolor [required: ~=1.1.0, installed: 1.1.0]
    - colorlog [required: ~=2.7, installed: 2.10.0]
    - dependency-management [required: ~=0.4.0, installed: 0.4.0]
      - coala-utils [required: ~=0.6, installed: 0.6.7]
        - appdirs [required: ==1.4.*, installed: 1.4.3]
        - pyprint [required: ==0.2.*, installed: 0.2.6]
          - colorama [required: ~=0.3.7, installed: 0.3.9]
          - termcolor [required: ~=1.1.0, installed: 1.1.0]
      - sarge [required: ~=0.1.4, installed: 0.1.5.post0]
    - libclang-py3 [required: ~=3.4.0, installed: 3.4.0]
    - packaging [required: ~=16.8, installed: 16.8]
      - pyparsing [required: Any, installed: 2.4.5]
      - six [required: Any, installed: 1.13.0]
    - Pygments [required: ~=2.1, installed: 2.5.2]
    - PyPrint [required: ~=0.2.6, installed: 0.2.6]
      - colorama [required: ~=0.3.7, installed: 0.3.9]
      - termcolor [required: ~=1.1.0, installed: 1.1.0]
    - requests [required: ~=2.12, installed: 2.22.0]
      - certifi [required: >=2017.4.17, installed: 2019.11.28]
      - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
      - idna [required: >=2.5,<2.9, installed: 2.8]
      - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.7]
    - setuptools [required: >=19.0, installed: 42.0.2]
    - testfixtures [required: ~=4.14.3, installed: 4.14.3]
    - unidiff [required: ~=0.5.2, installed: 0.5.5]
  - cppclean [required: ~=0.12.0, installed: 0.12]
  - cpplint [required: ~=1.3, installed: 1.4.4]
  - dennis [required: ~=0.8, installed: 0.9]
    - click [required: >=6, installed: 6.6]
    - polib [required: >=1.0.8, installed: 1.1.0]
  - docutils-ast-writer [required: ~=0.1.2, installed: 0.1.2]
    - docutils [required: >=0.12, installed: 0.16b0.dev0]
  - eradicate [required: ~=0.1.6, installed: 0.1.6]
  - guess-language-spirit [required: ~=0.5.2, installed: 0.5.3]
  - html-linter [required: ~=0.3.0, installed: 0.3.0]
    - docopt [required: >=0.6.1, installed: 0.6.2]
    - template-remover [required: Any, installed: 0.1.9]
      - docopt [required: >=0.6.1, installed: 0.6.2]
  - HTTPolice [required: ~=0.5.2, installed: 0.5.2]
    - bitstring [required: >=3.1.4, installed: 3.1.6]
    - brotlipy [required: >=0.5.1, installed: 0.7.0]
      - cffi [required: >=1.0.0, installed: 1.13.2]
        - pycparser [required: Any, installed: 2.19]
    - defusedxml [required: >=0.5.0, installed: 0.6.0]
    - dominate [required: >=2.2.0, installed: 2.4.0]
    - lxml [required: >=3.6.0, installed: 4.4.2]
    - singledispatch [required: >=3.4.0.3, installed: 3.4.0.3]
      - six [required: Any, installed: 1.13.0]
    - six [required: >=1.10.0, installed: 1.13.0]
  - isort [required: ~=4.2, installed: 4.3.21]
  - memento-client [required: ~=0.6.1, installed: 0.6.1]
    - requests [required: >=2.7.0, installed: 2.22.0]
      - certifi [required: >=2017.4.17, installed: 2019.11.28]
      - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
      - idna [required: >=2.5,<2.9, installed: 2.8]
      - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.7]
  - munkres3 [required: ~=1.0, installed: 1.0.5.5]
  - mypy-lang [required: ~=0.4.6, installed: 0.4.6]
  - nbformat [required: ~=4.1, installed: 4.4.0]
    - ipython-genutils [required: Any, installed: 0.2.0]
    - jsonschema [required: >=2.4,!=2.5.0, installed: 3.2.0]
      - attrs [required: >=17.4.0, installed: 19.3.0]
      - importlib-metadata [required: Any, installed: 1.2.0]
        - zipp [required: >=0.5, installed: 0.6.0]
          - more-itertools [required: Any, installed: 8.0.2]
      - pyrsistent [required: >=0.14.0, installed: 0.15.6]
        - six [required: Any, installed: 1.13.0]
      - setuptools [required: Any, installed: 42.0.2]
      - six [required: >=1.11.0, installed: 1.13.0]
    - jupyter-core [required: Any, installed: 4.6.1]
      - traitlets [required: Any, installed: 4.3.3]
        - decorator [required: Any, installed: 4.4.1]
        - ipython-genutils [required: Any, installed: 0.2.0]
        - six [required: Any, installed: 1.13.0]
    - traitlets [required: >=4.1, installed: 4.3.3]
      - decorator [required: Any, installed: 4.4.1]
      - ipython-genutils [required: Any, installed: 0.2.0]
      - six [required: Any, installed: 1.13.0]
  - nltk [required: ~=3.2, installed: 3.4.5]
    - six [required: Any, installed: 1.13.0]
  - proselint [required: ~=0.7.0, installed: 0.7.0]
    - click [required: Any, installed: 6.6]
    - future [required: Any, installed: 0.18.2]
    - six [required: Any, installed: 1.13.0]
  - pycodestyle [required: ~=2.2, installed: 2.5.0]
  - pydocstyle [required: ~=2.0, installed: 2.1.1]
    - six [required: Any, installed: 1.13.0]
    - snowballstemmer [required: Any, installed: 2.0.0]
  - pyflakes [required: ~=1.5.0, installed: 1.5.0]
  - pylint [required: ~=1.6, installed: 1.9.5]
    - astroid [required: >=1.6,<2.0, installed: 1.6.6]
      - lazy-object-proxy [required: Any, installed: 1.4.3]
      - six [required: Any, installed: 1.13.0]
      - wrapt [required: Any, installed: 1.11.2]
    - isort [required: >=4.2.5, installed: 4.3.21]
    - mccabe [required: Any, installed: 0.6.1]
    - six [required: Any, installed: 1.13.0]
  - pyroma [required: ~=2.2.0, installed: 2.2]
    - docutils [required: Any, installed: 0.16b0.dev0]
    - setuptools [required: Any, installed: 42.0.2]
  - pyyaml [required: ~=3.12, installed: 3.13]
  - radon [required: ==1.4.0, installed: 1.4.0]
    - colorama [required: >=0.3,<0.4, installed: 0.3.9]
    - mando [required: >=0.3,<0.4, installed: 0.3.3]
  - restructuredtext-lint [required: ~=1.0.0, installed: 1.0.1]
    - docutils [required: >=0.11,<1.0, installed: 0.16b0.dev0]
  - rstcheck [required: ~=3.1, installed: 3.3.1]
    - docutils [required: >=0.7, installed: 0.16b0.dev0]
  - safety [required: ~=0.5.1, installed: 0.5.1]
    - Click [required: >=6.0, installed: 6.6]
    - packaging [required: Any, installed: 16.8]
      - pyparsing [required: Any, installed: 2.4.5]
      - six [required: Any, installed: 1.13.0]
    - requests [required: Any, installed: 2.22.0]
      - certifi [required: >=2017.4.17, installed: 2019.11.28]
      - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
      - idna [required: >=2.5,<2.9, installed: 2.8]
      - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.7]
  - scspell3k [required: ~=2.0, installed: 2.2]
  - vim-vint [required: ~=0.3.12, installed: 0.3.21]
    - ansicolor [required: >=0.2.4, installed: 0.2.6]
    - chardet [required: >=2.3.0, installed: 3.0.4]
    - PyYAML [required: >=3.11, installed: 3.13]
  - vulture [required: ~=0.25.0, installed: 0.25]
  - yamllint [required: ~=1.6.1, installed: 1.6.1]
    - pyyaml [required: Any, installed: 3.13]
  - yapf [required: ~=0.16.0, installed: 0.16.3]
faust==1.9.0
  - aiohttp [required: >=3.5.2,<4.0, installed: 3.6.2]
    - async-timeout [required: >=3.0,<4.0, installed: 3.0.1]
    - attrs [required: >=17.3.0, installed: 19.3.0]
    - chardet [required: >=2.0,<4.0, installed: 3.0.4]
    - idna-ssl [required: >=1.0, installed: 1.1.0]
      - idna [required: >=2.0, installed: 2.8]
    - multidict [required: >=4.5,<5.0, installed: 4.6.1]
    - typing-extensions [required: >=3.6.5, installed: 3.7.4.1]
    - yarl [required: >=1.0,<2.0, installed: 1.4.2]
      - idna [required: >=2.0, installed: 2.8]
      - multidict [required: >=4.0, installed: 4.6.1]
  - aiohttp-cors [required: >=0.7,<2.0, installed: 0.7.0]
    - aiohttp [required: >=1.1, installed: 3.6.2]
      - async-timeout [required: >=3.0,<4.0, installed: 3.0.1]
      - attrs [required: >=17.3.0, installed: 19.3.0]
      - chardet [required: >=2.0,<4.0, installed: 3.0.4]
      - idna-ssl [required: >=1.0, installed: 1.1.0]
        - idna [required: >=2.0, installed: 2.8]
      - multidict [required: >=4.5,<5.0, installed: 4.6.1]
      - typing-extensions [required: >=3.6.5, installed: 3.7.4.1]
      - yarl [required: >=1.0,<2.0, installed: 1.4.2]
        - idna [required: >=2.0, installed: 2.8]
        - multidict [required: >=4.0, installed: 4.6.1]
  - click [required: >=6.7,<8.0, installed: 6.6]
  - colorclass [required: >=2.2,<3.0, installed: 2.2.0]
  - croniter [required: >=0.3.16, installed: 0.3.30]
    - python-dateutil [required: Any, installed: 2.8.1]
      - six [required: >=1.5, installed: 1.13.0]
  - mode [required: >=4.1.3,<4.2, installed: 4.1.3]
    - aiocontextvars [required: >=0.2, installed: 0.2.2]
      - contextvars [required: ==2.4, installed: 2.4]
        - immutables [required: >=0.9, installed: 0.11]
    - colorlog [required: >=2.9.0, installed: 2.10.0]
    - mypy-extensions [required: Any, installed: 0.4.3]
  - mypy-extensions [required: Any, installed: 0.4.3]
  - opentracing [required: >=1.3.0,<2.0.0, installed: 1.3.0]
  - robinhood-aiokafka [required: >=1.1.3,<1.2, installed: 1.1.3]
    - kafka-python [required: >=1.4.6,<1.5, installed: 1.4.7]
  - terminaltables [required: >=3.1,<4.0, installed: 3.1.0]
  - venusian [required: >=1.1,<2.0, installed: 1.2.0]
  - yarl [required: >=1.0,<2.0, installed: 1.4.2]
    - idna [required: >=2.0, installed: 2.8]
    - multidict [required: >=4.0, installed: 4.6.1]
pytest-cov==2.8.1
  - coverage [required: >=4.4, installed: 5.0b1]
  - pytest [required: >=3.6, installed: 5.3.1]
    - attrs [required: >=17.4.0, installed: 19.3.0]
    - importlib-metadata [required: >=0.12, installed: 1.2.0]
      - zipp [required: >=0.5, installed: 0.6.0]
        - more-itertools [required: Any, installed: 8.0.2]
    - more-itertools [required: >=4.0.0, installed: 8.0.2]
    - packaging [required: Any, installed: 16.8]
      - pyparsing [required: Any, installed: 2.4.5]
      - six [required: Any, installed: 1.13.0]
    - pluggy [required: >=0.12,<1.0, installed: 0.13.1]
      - importlib-metadata [required: >=0.12, installed: 1.2.0]
        - zipp [required: >=0.5, installed: 0.6.0]
          - more-itertools [required: Any, installed: 8.0.2]
    - py [required: >=1.5.0, installed: 1.8.0]
    - wcwidth [required: Any, installed: 0.1.7]
pytest-timeout==1.3.3
  - pytest [required: >=3.6.0, installed: 5.3.1]
    - attrs [required: >=17.4.0, installed: 19.3.0]
    - importlib-metadata [required: >=0.12, installed: 1.2.0]
      - zipp [required: >=0.5, installed: 0.6.0]
        - more-itertools [required: Any, installed: 8.0.2]
    - more-itertools [required: >=4.0.0, installed: 8.0.2]
    - packaging [required: Any, installed: 16.8]
      - pyparsing [required: Any, installed: 2.4.5]
      - six [required: Any, installed: 1.13.0]
    - pluggy [required: >=0.12,<1.0, installed: 0.13.1]
      - importlib-metadata [required: >=0.12, installed: 1.2.0]
        - zipp [required: >=0.5, installed: 0.6.0]
          - more-itertools [required: Any, installed: 8.0.2]
    - py [required: >=1.5.0, installed: 1.8.0]
    - wcwidth [required: Any, installed: 0.1.7]
thoth-common==0.9.21
  - argo-workflows [required: Any, installed: 2.1.2]
    - kubernetes [required: >=10.0, installed: 10.0.1]
      - certifi [required: >=14.05.14, installed: 2019.11.28]
      - google-auth [required: >=1.0.1, installed: 1.7.2]
        - cachetools [required: >=2.0.0,<3.2, installed: 3.1.1]
        - pyasn1-modules [required: >=0.2.1, installed: 0.2.7]
          - pyasn1 [required: >=0.4.6,<0.5.0, installed: 0.4.8]
        - rsa [required: >=3.1.4,<4.1, installed: 4.0]
          - pyasn1 [required: >=0.1.3, installed: 0.4.8]
        - setuptools [required: >=40.3.0, installed: 42.0.2]
        - six [required: >=1.9.0, installed: 1.13.0]
      - python-dateutil [required: >=2.5.3, installed: 2.8.1]
        - six [required: >=1.5, installed: 1.13.0]
      - pyyaml [required: >=3.12, installed: 3.13]
      - requests [required: Any, installed: 2.22.0]
        - certifi [required: >=2017.4.17, installed: 2019.11.28]
        - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
        - idna [required: >=2.5,<2.9, installed: 2.8]
        - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.7]
      - requests-oauthlib [required: Any, installed: 1.3.0]
        - oauthlib [required: >=3.0.0, installed: 3.1.0]
        - requests [required: >=2.0.0, installed: 2.22.0]
          - certifi [required: >=2017.4.17, installed: 2019.11.28]
          - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
          - idna [required: >=2.5,<2.9, installed: 2.8]
          - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.7]
      - setuptools [required: >=21.0.0, installed: 42.0.2]
      - six [required: >=1.9.0, installed: 1.13.0]
      - urllib3 [required: >=1.24.2, installed: 1.25.7]
      - websocket-client [required: >=0.32.0,!=0.42.*,!=0.41.*,!=0.40.0, installed: 0.56.0]
        - six [required: Any, installed: 1.13.0]
    - mock [required: Any, installed: 3.0.5]
      - six [required: Any, installed: 1.13.0]
  - attrdict [required: Any, installed: 2.0.1]
    - six [required: Any, installed: 1.13.0]
  - attrs [required: Any, installed: 19.3.0]
  - daiquiri [required: Any, installed: 1.6.0]
  - openshift [required: Any, installed: 0.10.0]
    - dictdiffer [required: Any, installed: 0.8.0]
    - jinja2 [required: Any, installed: 2.10.3]
      - MarkupSafe [required: >=0.23, installed: 1.1.1]
    - kubernetes [required: ~=10.0, installed: 10.0.1]
      - certifi [required: >=14.05.14, installed: 2019.11.28]
      - google-auth [required: >=1.0.1, installed: 1.7.2]
        - cachetools [required: >=2.0.0,<3.2, installed: 3.1.1]
        - pyasn1-modules [required: >=0.2.1, installed: 0.2.7]
          - pyasn1 [required: >=0.4.6,<0.5.0, installed: 0.4.8]
        - rsa [required: >=3.1.4,<4.1, installed: 4.0]
          - pyasn1 [required: >=0.1.3, installed: 0.4.8]
        - setuptools [required: >=40.3.0, installed: 42.0.2]
        - six [required: >=1.9.0, installed: 1.13.0]
      - python-dateutil [required: >=2.5.3, installed: 2.8.1]
        - six [required: >=1.5, installed: 1.13.0]
      - pyyaml [required: >=3.12, installed: 3.13]
      - requests [required: Any, installed: 2.22.0]
        - certifi [required: >=2017.4.17, installed: 2019.11.28]
        - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
        - idna [required: >=2.5,<2.9, installed: 2.8]
        - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.7]
      - requests-oauthlib [required: Any, installed: 1.3.0]
        - oauthlib [required: >=3.0.0, installed: 3.1.0]
        - requests [required: >=2.0.0, installed: 2.22.0]
          - certifi [required: >=2017.4.17, installed: 2019.11.28]
          - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
          - idna [required: >=2.5,<2.9, installed: 2.8]
          - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.7]
      - setuptools [required: >=21.0.0, installed: 42.0.2]
      - six [required: >=1.9.0, installed: 1.13.0]
      - urllib3 [required: >=1.24.2, installed: 1.25.7]
      - websocket-client [required: >=0.32.0,!=0.42.*,!=0.41.*,!=0.40.0, installed: 0.56.0]
        - six [required: Any, installed: 1.13.0]
    - python-string-utils [required: Any, installed: 0.6.0]
    - ruamel.yaml [required: >=0.15, installed: 0.16.5]
      - ruamel.yaml.clib [required: >=0.1.2, installed: 0.2.0]
    - six [required: Any, installed: 1.13.0]
  - pyyaml [required: Any, installed: 3.13]
  - requests [required: Any, installed: 2.22.0]
    - certifi [required: >=2017.4.17, installed: 2019.11.28]
    - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
    - idna [required: >=2.5,<2.9, installed: 2.8]
    - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.7]
  - rfc5424-logging-handler [required: Any, installed: 1.4.3]
    - pytz [required: Any, installed: 2019.3]
    - tzlocal [required: Any, installed: 2.0.0]
      - pytz [required: Any, installed: 2019.3]
  - sentry-sdk [required: Any, installed: 0.13.5]
    - certifi [required: Any, installed: 2019.11.28]
    - urllib3 [required: >=1.10.0, installed: 1.25.7]

Notes

For more information, see Pipfile and Pipfile.lock.

Once this issue is resolved, the issue will be automatically closed by bot.

Send multiple Kafka messages from CLI

Is your feature request related to a problem? Please describe.
Related-to: thoth-station/investigator#63

Describe the solution you'd like
I would like to have the possibility to pass a json file that can contain a list of THOTH_MESSAGING_TOPIC_NAME, THOTH_MESSAGING_MESSAGE_CONTENTS so that multiple messages can be sent in a Workflow task.

Describe alternatives you've considered

Additional context

thoth-messaging==0.3.3 cannot be installed

Using pipenv, version 2020.1.29

Pipfile:

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

[dev-packages]

[packages]
thoth-lab = ">=0.1.8"
thoth-common= "*"
thoth-messaging= "*"

[requires]
python_version = "3.6"

Running pipenv

Pipfile.lock not found, creating…
Locking [dev-packages] dependencies…
Locking [packages] dependencies…
Building requirements...
Resolving dependencies...
⠦ Locking...
                          ROUND 1                           
✘ Locking Failed! 
Current constraints:
  thoth-common
  thoth-lab>=0.1.8
  thoth-messaging

Finding the best candidates:
  found candidate thoth-common==0.12.4 (constraint was <any>)
  found candidate thoth-lab==0.1.8 (constraint was >=0.1.8)
  found candidate thoth-messaging==0.3.3 (constraint was <any>)

Finding secondary dependencies:
  thoth-common==0.12.4 not in cache, need to check index
  thoth-common==0.12.4      requires argo-workflows<3.0,>=2.0, attrdict, attrs, daiquiri, jsonformatter, openshift~=0.10.0, pyyaml, requests, rfc5424-logging-handler, sentry-sdk
  thoth-lab==0.1.8 not in cache, need to check index
  thoth-lab==0.1.8          requires autopep8, cufflinks, ipykernel, ipython, jupyter-contrib-nbextensions, jupyter-require, matplotlib, networkx, pandas, pandas-profiling, plotly, prettyprinter, requests, thoth-storages
  thoth-messaging==0.3.3 not in cache, need to check index
Traceback (most recent call last):
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/resolver.py", line 807, in <module>
    main()
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/resolver.py", line 803, in main
    parsed.requirements_dir, parsed.packages, parse_only=parsed.parse_only)
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/resolver.py", line 785, in _main
    resolve_packages(pre, clear, verbose, system, write, requirements_dir, packages)
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/resolver.py", line 753, in resolve_packages
    requirements_dir=requirements_dir,
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/resolver.py", line 736, in resolve
    req_dir=requirements_dir
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/utils.py", line 1371, in resolve_deps
    req_dir=req_dir,
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/utils.py", line 1078, in actually_resolve_deps
    resolver.resolve()
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/utils.py", line 799, in resolve
    results = self.resolver.resolve(max_rounds=environments.PIPENV_MAX_ROUNDS)
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/patched/piptools/resolver.py", line 102, in resolve
    has_changed, best_matches = self._resolve_one_round()
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/patched/piptools/resolver.py", line 205, in _resolve_one_round
    for dep in self._iter_dependencies(best_match):
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/patched/piptools/resolver.py", line 300, in _iter_dependencies
    dependencies = self.repository.get_dependencies(ireq)
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/patched/piptools/repositories/pypi.py", line 202, in get_dependencies
    legacy_results = self.get_legacy_dependencies(ireq)
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/patched/piptools/repositories/pypi.py", line 350, in get_legacy_dependencies
    results, ireq = self.resolve_reqs(download_dir, ireq, wheel_cache)
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/patched/piptools/repositories/pypi.py", line 309, in resolve_reqs
    results = resolver._resolve_one(reqset, ireq)
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/patched/notpip/_internal/resolve.py", line 301, in _resolve_one
    abstract_dist = self._get_abstract_dist_for(req_to_install)
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/patched/notpip/_internal/resolve.py", line 248, in _get_abstract_dist_for
    self.require_hashes
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/patched/notpip/_internal/operations/prepare.py", line 342, in prepare_linked_requirement
    abstract_dist.prep_for_dist(finder, self.build_isolation)
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/patched/notpip/_internal/operations/prepare.py", line 158, in prep_for_dist
    self.req.prepare_metadata()
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/patched/notpip/_internal/req/req_install.py", line 530, in prepare_metadata
    self.run_egg_info()
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/patched/notpip/_internal/req/req_install.py", line 610, in run_egg_info
    command_desc='python setup.py egg_info')
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/patched/notpip/_internal/utils/misc.py", line 761, in call_subprocess
    % (command_desc, proc.returncode, cwd))
pipenv.patched.notpip._internal.exceptions.InstallationError: Command "python setup.py egg_info" failed with error code 1 in /tmp/tmph_ztoe11source/thoth-messaging/
ROUND 1                           
Current constraints:
  thoth-common
  thoth-lab>=0.1.8
  thoth-messaging

Finding the best candidates:
  found candidate thoth-common==0.12.4 (constraint was <any>)
  found candidate thoth-lab==0.1.8 (constraint was >=0.1.8)
  found candidate thoth-messaging==0.3.3 (constraint was <any>)

Finding secondary dependencies:
  thoth-common==0.12.4 not in cache, need to check index
  thoth-common==0.12.4      requires argo-workflows<3.0,>=2.0, attrdict, attrs, daiquiri, jsonformatter, openshift~=0.10.0, pyyaml, requests, rfc5424-logging-handler, sentry-sdk
  thoth-lab==0.1.8 not in cache, need to check index
  thoth-lab==0.1.8          requires autopep8, cufflinks, ipykernel, ipython, jupyter-contrib-nbextensions, jupyter-require, matplotlib, networkx, pandas, pandas-profiling, plotly, prettyprinter, requests, thoth-storages
  thoth-messaging==0.3.3 not in cache, need to check index
Traceback (most recent call last):
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/resolver.py", line 807, in <module>
    main()
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/resolver.py", line 803, in main
    parsed.requirements_dir, parsed.packages, parse_only=parsed.parse_only)
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/resolver.py", line 785, in _main
    resolve_packages(pre, clear, verbose, system, write, requirements_dir, packages)
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/resolver.py", line 753, in resolve_packages
    requirements_dir=requirements_dir,
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/resolver.py", line 736, in resolve
    req_dir=requirements_dir
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/utils.py", line 1371, in resolve_deps
    req_dir=req_dir,
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/utils.py", line 1078, in actually_resolve_deps
    resolver.resolve()
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/utils.py", line 799, in resolve
    results = self.resolver.resolve(max_rounds=environments.PIPENV_MAX_ROUNDS)
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/patched/piptools/resolver.py", line 102, in resolve
    has_changed, best_matches = self._resolve_one_round()
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/patched/piptools/resolver.py", line 205, in _resolve_one_round
    for dep in self._iter_dependencies(best_match):
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/patched/piptools/resolver.py", line 300, in _iter_dependencies
    dependencies = self.repository.get_dependencies(ireq)
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/patched/piptools/repositories/pypi.py", line 202, in get_dependencies
    legacy_results = self.get_legacy_dependencies(ireq)
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/patched/piptools/repositories/pypi.py", line 350, in get_legacy_dependencies
    results, ireq = self.resolve_reqs(download_dir, ireq, wheel_cache)
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/patched/piptools/repositories/pypi.py", line 309, in resolve_reqs
    results = resolver._resolve_one(reqset, ireq)
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/patched/notpip/_internal/resolve.py", line 301, in _resolve_one
    abstract_dist = self._get_abstract_dist_for(req_to_install)
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/patched/notpip/_internal/resolve.py", line 248, in _get_abstract_dist_for
    self.require_hashes
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/patched/notpip/_internal/operations/prepare.py", line 342, in prepare_linked_requirement
    abstract_dist.prep_for_dist(finder, self.build_isolation)
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/patched/notpip/_internal/operations/prepare.py", line 158, in prep_for_dist
    self.req.prepare_metadata()
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/patched/notpip/_internal/req/req_install.py", line 530, in prepare_metadata
    self.run_egg_info()
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/patched/notpip/_internal/req/req_install.py", line 610, in run_egg_info
    command_desc='python setup.py egg_info')
  File "/home/fmurdaca/.local/lib/python3.7/site-packages/pipenv/patched/notpip/_internal/utils/misc.py", line 761, in call_subprocess
    % (command_desc, proc.returncode, cwd))
pipenv.patched.notpip._internal.exceptions.InstallationError: Command "python setup.py egg_info" failed with error code 1 in /tmp/tmph_ztoe11source/thoth-messaging/

Failed to update dependencies to their latest version

Automatic dependency update failed for the current master with SHA 075d09f.

The automatic dependency management cannot continue. Please fix errors reported bellow.

Command
  $ pipenv update --dev
Standard output
Running $ pipenv lock then $ pipenv sync.
Installing dependencies from Pipfile.lock (090e68)…
Installing initially failed dependencies…

Standard error
Creating a virtualenv for this project…
Pipfile: /tmp/tmp9t337v91/Pipfile
Using /home/user/.local/share/virtualenvs/user-5PivF_Od/bin/python (3.6.8) to create virtualenv…
Already using interpreter /home/user/.local/share/virtualenvs/user-5PivF_Od/bin/python
Using real prefix '/usr'
  No LICENSE.txt / LICENSE found in source
New python executable in /tmp/tmp9t337v91/.venv/bin/python
Installing setuptools, pip, wheel...
done.
Running virtualenv with interpreter /home/user/.local/share/virtualenvs/user-5PivF_Od/bin/python

Virtualenv location: /tmp/tmp9t337v91/.venv
Locking [dev-packages] dependencies…
Locking [packages] dependencies…
Updated Pipfile.lock (090e68)!
An error occurred while installing lxml==4.5.0 --hash=sha256:0701f7965903a1c3f6f09328c1278ac0eee8f56f244e66af79cb224b7ef3801c --hash=sha256:afdb34b715daf814d1abea0317b6d672476b498472f1e5aacbadc34ebbc26e89! Will try again.
[pipenv.exceptions.InstallError]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/core.py", line 2611, in do_sync
[pipenv.exceptions.InstallError]:       system=system,
[pipenv.exceptions.InstallError]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/core.py", line 1253, in do_init
[pipenv.exceptions.InstallError]:       pypi_mirror=pypi_mirror,
[pipenv.exceptions.InstallError]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/core.py", line 859, in do_install_dependencies
[pipenv.exceptions.InstallError]:       retry_list, procs, failed_deps_queue, requirements_dir, **install_kwargs
[pipenv.exceptions.InstallError]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/core.py", line 763, in batch_install
[pipenv.exceptions.InstallError]:       _cleanup_procs(procs, not blocking, failed_deps_queue, retry=retry)
[pipenv.exceptions.InstallError]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/core.py", line 681, in _cleanup_procs
[pipenv.exceptions.InstallError]:       raise exceptions.InstallError(c.dep.name, extra=err_lines)
[pipenv.exceptions.InstallError]: ['Looking in indexes: https://pypi.python.org/simple']
[pipenv.exceptions.InstallError]: ['ERROR: Could not find a version that satisfies the requirement lxml==4.5.0 (from -r /tmp/pipenv-zxb_nq8e-requirements/pipenv-pu3cv7lj-requirement.txt (line 1)) (from versions: 0.9, 0.9.1, 0.9.2, 1.0b0, 1.0, 1.0.1, 1.0.2, 1.0.3, 1.0.4, 1.1a0, 1.1b0, 1.1, 1.1.1, 1.1.2, 1.2, 1.2.1, 1.3b0, 1.3, 1.3.2, 1.3.3, 1.3.4, 1.3.5, 1.3.6, 2.0a1, 2.0a2, 2.0a3, 2.0a4, 2.0a5, 2.0a6, 2.0b1, 2.0b2, 2.0, 2.0.1, 2.0.2, 2.0.3, 2.0.4, 2.0.5, 2.0.6, 2.0.7, 2.0.8, 2.0.9, 2.0.10, 2.0.11, 2.1a1, 2.1b1, 2.1b2, 2.1b3, 2.1, 2.1.1, 2.1.2, 2.1.3, 2.1.4, 2.1.5, 2.2a1, 2.2b1, 2.2b2, 2.2b3, 2.2b4, 2.2, 2.2.1, 2.2.2, 2.2.3, 2.2.4, 2.2.5, 2.2.6, 2.2.7, 2.2.8, 2.3b1, 2.3, 2.3.1, 2.3.2, 2.3.3, 2.3.4, 2.3.5, 2.3.6, 3.0, 3.0.1, 3.0.2, 3.1b1, 3.1.0, 3.1.1, 3.1.2, 3.2.0, 3.2.1, 3.2.2, 3.2.3, 3.2.4, 3.2.5, 3.3.0b1, 3.3.0b2, 3.3.0b3, 3.3.0b4, 3.3.0b5, 3.3.0, 3.3.1, 3.3.2, 3.3.3, 3.3.4, 3.3.5, 3.3.6, 3.4.0, 3.4.1, 3.4.2, 3.4.3, 3.4.4, 3.5.0b1, 3.5.0, 3.6.0, 3.6.1, 3.6.2, 3.6.3, 3.6.4, 3.7.0, 3.7.1, 3.7.2, 3.7.3, 3.8.0, 4.0.0, 4.1.0, 4.1.1, 4.2.0, 4.2.1, 4.2.2, 4.2.3, 4.2.4, 4.2.5, 4.2.6, 4.3.0, 4.3.1, 4.3.2, 4.3.3, 4.3.4, 4.3.5, 4.4.0, 4.4.1, 4.4.2, 4.4.3)', 'ERROR: No matching distribution found for lxml==4.5.0 (from -r /tmp/pipenv-zxb_nq8e-requirements/pipenv-pu3cv7lj-requirement.txt (line 1))']
ERROR: ERROR: Package installation failed...

Environment details

Kebechet version: 1.0.0
Python version: 3.6.8
Platform: Linux-3.10.0-957.21.2.el7.x86_64-x86_64-with-redhat-8.1-Ootpa
pipenv version: pipenv, version 2018.11.26


Dependency graph
black==19.10b0
  - appdirs [required: Any, installed: 1.4.3]
  - attrs [required: >=18.1.0, installed: 19.3.0]
  - click [required: >=6.5, installed: 6.6]
  - pathspec [required: >=0.6,<1, installed: 0.7.0]
  - regex [required: Any, installed: 2020.1.8]
  - toml [required: >=0.9.4, installed: 0.10.0]
  - typed-ast [required: >=1.4.0, installed: 1.4.1]
coala-bears==0.12.0.dev20171110210444
  - aenum [required: ~=2.0.8, installed: 2.0.10]
  - apertium-lint [required: ~=0.29, installed: 0.29]
  - autoflake [required: ~=0.7, installed: 0.7]
    - pyflakes [required: >=0.8.1, installed: 1.5.0]
  - autopep8 [required: ~=1.2, installed: 1.5]
    - pycodestyle [required: >=2.5.0, installed: 2.5.0]
  - bandit [required: ~=1.2, installed: 1.6.2]
    - GitPython [required: >=1.0.1, installed: 3.0.5]
      - gitdb2 [required: >=2.0.0, installed: 2.0.6]
        - smmap2 [required: >=2.0.0, installed: 2.0.5]
    - PyYAML [required: >=3.13, installed: 3.13]
    - six [required: >=1.10.0, installed: 1.14.0]
    - stevedore [required: >=1.20.0, installed: 1.31.0]
      - pbr [required: >=2.0.0,!=2.1.0, installed: 5.4.4]
      - six [required: >=1.10.0, installed: 1.14.0]
  - click [required: ==6.6, installed: 6.6]
  - cmakelint [required: ~=1.3, installed: 1.4.1]
  - coala [required: >=0.12.0.dev20170828055500, installed: 0.12.0.dev20180101025653]
    - appdirs [required: ~=1.4, installed: 1.4.3]
    - coala-utils [required: ~=0.6.2, installed: 0.6.7]
      - appdirs [required: ==1.4.*, installed: 1.4.3]
      - pyprint [required: ==0.2.*, installed: 0.2.6]
        - colorama [required: ~=0.3.7, installed: 0.3.9]
        - termcolor [required: ~=1.1.0, installed: 1.1.0]
    - colorlog [required: ~=2.7, installed: 2.10.0]
    - dependency-management [required: ~=0.4.0, installed: 0.4.0]
      - coala-utils [required: ~=0.6, installed: 0.6.7]
        - appdirs [required: ==1.4.*, installed: 1.4.3]
        - pyprint [required: ==0.2.*, installed: 0.2.6]
          - colorama [required: ~=0.3.7, installed: 0.3.9]
          - termcolor [required: ~=1.1.0, installed: 1.1.0]
      - sarge [required: ~=0.1.4, installed: 0.1.5.post0]
    - libclang-py3 [required: ~=3.4.0, installed: 3.4.0]
    - packaging [required: ~=16.8, installed: 16.8]
      - pyparsing [required: Any, installed: 2.4.6]
      - six [required: Any, installed: 1.14.0]
    - Pygments [required: ~=2.1, installed: 2.5.2]
    - PyPrint [required: ~=0.2.6, installed: 0.2.6]
      - colorama [required: ~=0.3.7, installed: 0.3.9]
      - termcolor [required: ~=1.1.0, installed: 1.1.0]
    - requests [required: ~=2.12, installed: 2.22.0]
      - certifi [required: >=2017.4.17, installed: 2019.11.28]
      - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
      - idna [required: >=2.5,<2.9, installed: 2.8]
      - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.8]
    - setuptools [required: >=19.0, installed: 45.1.0]
    - testfixtures [required: ~=4.14.3, installed: 4.14.3]
    - unidiff [required: ~=0.5.2, installed: 0.5.5]
  - cppclean [required: ~=0.12.0, installed: 0.12]
  - cpplint [required: ~=1.3, installed: 1.4.5]
  - dennis [required: ~=0.8, installed: 0.9]
    - click [required: >=6, installed: 6.6]
    - polib [required: >=1.0.8, installed: 1.1.0]
  - docutils-ast-writer [required: ~=0.1.2, installed: 0.1.2]
    - docutils [required: >=0.12, installed: 0.16]
  - eradicate [required: ~=0.1.6, installed: 0.1.6]
  - guess-language-spirit [required: ~=0.5.2, installed: 0.5.3]
  - html-linter [required: ~=0.3.0, installed: 0.3.0]
    - docopt [required: >=0.6.1, installed: 0.6.2]
    - template-remover [required: Any, installed: 0.1.9]
      - docopt [required: >=0.6.1, installed: 0.6.2]
  - HTTPolice [required: ~=0.5.2, installed: 0.5.2]
    - bitstring [required: >=3.1.4, installed: 3.1.6]
    - brotlipy [required: >=0.5.1, installed: 0.7.0]
      - cffi [required: >=1.0.0, installed: 1.13.2]
        - pycparser [required: Any, installed: 2.19]
    - defusedxml [required: >=0.5.0, installed: 0.6.0]
    - dominate [required: >=2.2.0, installed: 2.4.0]
    - lxml [required: >=3.6.0, installed: 4.4.3]
    - singledispatch [required: >=3.4.0.3, installed: 3.4.0.3]
      - six [required: Any, installed: 1.14.0]
    - six [required: >=1.10.0, installed: 1.14.0]
  - isort [required: ~=4.2, installed: 4.3.21]
  - memento-client [required: ~=0.6.1, installed: 0.6.1]
    - requests [required: >=2.7.0, installed: 2.22.0]
      - certifi [required: >=2017.4.17, installed: 2019.11.28]
      - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
      - idna [required: >=2.5,<2.9, installed: 2.8]
      - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.8]
  - munkres3 [required: ~=1.0, installed: 1.0.5.5]
  - mypy-lang [required: ~=0.4.6, installed: 0.4.6]
  - nbformat [required: ~=4.1, installed: 4.4.0]
    - ipython-genutils [required: Any, installed: 0.2.0]
    - jsonschema [required: >=2.4,!=2.5.0, installed: 3.2.0]
      - attrs [required: >=17.4.0, installed: 19.3.0]
      - importlib-metadata [required: Any, installed: 1.5.0]
        - zipp [required: >=0.5, installed: 2.1.0]
      - pyrsistent [required: >=0.14.0, installed: 0.15.7]
        - six [required: Any, installed: 1.14.0]
      - setuptools [required: Any, installed: 45.1.0]
      - six [required: >=1.11.0, installed: 1.14.0]
    - jupyter-core [required: Any, installed: 4.6.1]
      - traitlets [required: Any, installed: 4.3.3]
        - decorator [required: Any, installed: 4.4.1]
        - ipython-genutils [required: Any, installed: 0.2.0]
        - six [required: Any, installed: 1.14.0]
    - traitlets [required: >=4.1, installed: 4.3.3]
      - decorator [required: Any, installed: 4.4.1]
      - ipython-genutils [required: Any, installed: 0.2.0]
      - six [required: Any, installed: 1.14.0]
  - nltk [required: ~=3.2, installed: 3.4.5]
    - six [required: Any, installed: 1.14.0]
  - proselint [required: ~=0.7.0, installed: 0.7.0]
    - click [required: Any, installed: 6.6]
    - future [required: Any, installed: 0.18.2]
    - six [required: Any, installed: 1.14.0]
  - pycodestyle [required: ~=2.2, installed: 2.5.0]
  - pydocstyle [required: ~=2.0, installed: 2.1.1]
    - six [required: Any, installed: 1.14.0]
    - snowballstemmer [required: Any, installed: 2.0.0]
  - pyflakes [required: ~=1.5.0, installed: 1.5.0]
  - pylint [required: ~=1.6, installed: 1.9.5]
    - astroid [required: >=1.6,<2.0, installed: 1.6.6]
      - lazy-object-proxy [required: Any, installed: 1.4.3]
      - six [required: Any, installed: 1.14.0]
      - wrapt [required: Any, installed: 1.11.2]
    - isort [required: >=4.2.5, installed: 4.3.21]
    - mccabe [required: Any, installed: 0.6.1]
    - six [required: Any, installed: 1.14.0]
  - pyroma [required: ~=2.2.0, installed: 2.2]
    - docutils [required: Any, installed: 0.16]
    - setuptools [required: Any, installed: 45.1.0]
  - pyyaml [required: ~=3.12, installed: 3.13]
  - radon [required: ==1.4.0, installed: 1.4.0]
    - colorama [required: >=0.3,<0.4, installed: 0.3.9]
    - mando [required: >=0.3,<0.4, installed: 0.3.3]
  - restructuredtext-lint [required: ~=1.0.0, installed: 1.0.1]
    - docutils [required: >=0.11,<1.0, installed: 0.16]
  - rstcheck [required: ~=3.1, installed: 3.3.1]
    - docutils [required: >=0.7, installed: 0.16]
  - safety [required: ~=0.5.1, installed: 0.5.1]
    - Click [required: >=6.0, installed: 6.6]
    - packaging [required: Any, installed: 16.8]
      - pyparsing [required: Any, installed: 2.4.6]
      - six [required: Any, installed: 1.14.0]
    - requests [required: Any, installed: 2.22.0]
      - certifi [required: >=2017.4.17, installed: 2019.11.28]
      - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
      - idna [required: >=2.5,<2.9, installed: 2.8]
      - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.8]
  - scspell3k [required: ~=2.0, installed: 2.2]
  - vim-vint [required: ~=0.3.12, installed: 0.3.21]
    - ansicolor [required: >=0.2.4, installed: 0.2.6]
    - chardet [required: >=2.3.0, installed: 3.0.4]
    - PyYAML [required: >=3.11, installed: 3.13]
  - vulture [required: ~=0.25.0, installed: 0.25]
  - yamllint [required: ~=1.6.1, installed: 1.6.1]
    - pyyaml [required: Any, installed: 3.13]
  - yapf [required: ~=0.16.0, installed: 0.16.3]
faust==1.10.1
  - aiohttp [required: >=3.5.2,<4.0, installed: 3.6.2]
    - async-timeout [required: >=3.0,<4.0, installed: 3.0.1]
    - attrs [required: >=17.3.0, installed: 19.3.0]
    - chardet [required: >=2.0,<4.0, installed: 3.0.4]
    - idna-ssl [required: >=1.0, installed: 1.1.0]
      - idna [required: >=2.0, installed: 2.8]
    - multidict [required: >=4.5,<5.0, installed: 4.7.4]
    - typing-extensions [required: >=3.6.5, installed: 3.7.4.1]
    - yarl [required: >=1.0,<2.0, installed: 1.4.2]
      - idna [required: >=2.0, installed: 2.8]
      - multidict [required: >=4.0, installed: 4.7.4]
  - aiohttp-cors [required: >=0.7,<2.0, installed: 0.7.0]
    - aiohttp [required: >=1.1, installed: 3.6.2]
      - async-timeout [required: >=3.0,<4.0, installed: 3.0.1]
      - attrs [required: >=17.3.0, installed: 19.3.0]
      - chardet [required: >=2.0,<4.0, installed: 3.0.4]
      - idna-ssl [required: >=1.0, installed: 1.1.0]
        - idna [required: >=2.0, installed: 2.8]
      - multidict [required: >=4.5,<5.0, installed: 4.7.4]
      - typing-extensions [required: >=3.6.5, installed: 3.7.4.1]
      - yarl [required: >=1.0,<2.0, installed: 1.4.2]
        - idna [required: >=2.0, installed: 2.8]
        - multidict [required: >=4.0, installed: 4.7.4]
  - click [required: >=6.7,<8.0, installed: 6.6]
  - colorclass [required: >=2.2,<3.0, installed: 2.2.0]
  - croniter [required: >=0.3.16, installed: 0.3.31]
    - python-dateutil [required: Any, installed: 2.8.1]
      - six [required: >=1.5, installed: 1.14.0]
  - mode [required: >=4.3.0,<4.4, installed: 4.3.0]
    - aiocontextvars [required: >=0.2, installed: 0.2.2]
      - contextvars [required: ==2.4, installed: 2.4]
        - immutables [required: >=0.9, installed: 0.11]
    - colorlog [required: >=2.9.0, installed: 2.10.0]
    - mypy-extensions [required: Any, installed: 0.4.3]
    - typing-extensions [required: Any, installed: 3.7.4.1]
  - mypy-extensions [required: Any, installed: 0.4.3]
  - opentracing [required: >=1.3.0,<2.0.0, installed: 1.3.0]
  - robinhood-aiokafka [required: >=1.1.3,<1.2, installed: 1.1.3]
    - kafka-python [required: >=1.4.6,<1.5, installed: 1.4.7]
  - terminaltables [required: >=3.1,<4.0, installed: 3.1.0]
  - venusian [required: >=1.1,<2.0, installed: 1.2.0]
  - yarl [required: >=1.0,<2.0, installed: 1.4.2]
    - idna [required: >=2.0, installed: 2.8]
    - multidict [required: >=4.0, installed: 4.7.4]
pytest-cov==2.8.1
  - coverage [required: >=4.4, installed: 5.0.3]
  - pytest [required: >=3.6, installed: 5.3.4]
    - attrs [required: >=17.4.0, installed: 19.3.0]
    - importlib-metadata [required: >=0.12, installed: 1.5.0]
      - zipp [required: >=0.5, installed: 2.1.0]
    - more-itertools [required: >=4.0.0, installed: 8.1.0]
    - packaging [required: Any, installed: 16.8]
      - pyparsing [required: Any, installed: 2.4.6]
      - six [required: Any, installed: 1.14.0]
    - pluggy [required: >=0.12,<1.0, installed: 0.13.1]
      - importlib-metadata [required: >=0.12, installed: 1.5.0]
        - zipp [required: >=0.5, installed: 2.1.0]
    - py [required: >=1.5.0, installed: 1.8.1]
    - wcwidth [required: Any, installed: 0.1.8]
pytest-timeout==1.3.4
  - pytest [required: >=3.6.0, installed: 5.3.4]
    - attrs [required: >=17.4.0, installed: 19.3.0]
    - importlib-metadata [required: >=0.12, installed: 1.5.0]
      - zipp [required: >=0.5, installed: 2.1.0]
    - more-itertools [required: >=4.0.0, installed: 8.1.0]
    - packaging [required: Any, installed: 16.8]
      - pyparsing [required: Any, installed: 2.4.6]
      - six [required: Any, installed: 1.14.0]
    - pluggy [required: >=0.12,<1.0, installed: 0.13.1]
      - importlib-metadata [required: >=0.12, installed: 1.5.0]
        - zipp [required: >=0.5, installed: 2.1.0]
    - py [required: >=1.5.0, installed: 1.8.1]
    - wcwidth [required: Any, installed: 0.1.8]
thoth-common==0.10.0
  - argo-workflows [required: Any, installed: 2.1.4]
    - kubernetes [required: ~=10.0, installed: 10.0.1]
      - certifi [required: >=14.05.14, installed: 2019.11.28]
      - google-auth [required: >=1.0.1, installed: 1.11.0]
        - cachetools [required: >=2.0.0,<5.0, installed: 4.0.0]
        - pyasn1-modules [required: >=0.2.1, installed: 0.2.8]
          - pyasn1 [required: >=0.4.6,<0.5.0, installed: 0.4.8]
        - rsa [required: >=3.1.4,<4.1, installed: 4.0]
          - pyasn1 [required: >=0.1.3, installed: 0.4.8]
        - setuptools [required: >=40.3.0, installed: 45.1.0]
        - six [required: >=1.9.0, installed: 1.14.0]
      - python-dateutil [required: >=2.5.3, installed: 2.8.1]
        - six [required: >=1.5, installed: 1.14.0]
      - pyyaml [required: >=3.12, installed: 3.13]
      - requests [required: Any, installed: 2.22.0]
        - certifi [required: >=2017.4.17, installed: 2019.11.28]
        - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
        - idna [required: >=2.5,<2.9, installed: 2.8]
        - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.8]
      - requests-oauthlib [required: Any, installed: 1.3.0]
        - oauthlib [required: >=3.0.0, installed: 3.1.0]
        - requests [required: >=2.0.0, installed: 2.22.0]
          - certifi [required: >=2017.4.17, installed: 2019.11.28]
          - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
          - idna [required: >=2.5,<2.9, installed: 2.8]
          - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.8]
      - setuptools [required: >=21.0.0, installed: 45.1.0]
      - six [required: >=1.9.0, installed: 1.14.0]
      - urllib3 [required: >=1.24.2, installed: 1.25.8]
      - websocket-client [required: >=0.32.0,!=0.42.*,!=0.41.*,!=0.40.0, installed: 0.57.0]
        - six [required: Any, installed: 1.14.0]
    - mock [required: Any, installed: 3.0.5]
      - six [required: Any, installed: 1.14.0]
  - attrdict [required: Any, installed: 2.0.1]
    - six [required: Any, installed: 1.14.0]
  - attrs [required: Any, installed: 19.3.0]
  - daiquiri [required: Any, installed: 2.0.0]
    - python-json-logger [required: Any, installed: 0.1.11]
  - openshift [required: Any, installed: 0.10.1]
    - dictdiffer [required: Any, installed: 0.8.1]
    - jinja2 [required: Any, installed: 2.11.0]
      - MarkupSafe [required: >=0.23, installed: 1.1.1]
    - kubernetes [required: ~=10.0.1, installed: 10.0.1]
      - certifi [required: >=14.05.14, installed: 2019.11.28]
      - google-auth [required: >=1.0.1, installed: 1.11.0]
        - cachetools [required: >=2.0.0,<5.0, installed: 4.0.0]
        - pyasn1-modules [required: >=0.2.1, installed: 0.2.8]
          - pyasn1 [required: >=0.4.6,<0.5.0, installed: 0.4.8]
        - rsa [required: >=3.1.4,<4.1, installed: 4.0]
          - pyasn1 [required: >=0.1.3, installed: 0.4.8]
        - setuptools [required: >=40.3.0, installed: 45.1.0]
        - six [required: >=1.9.0, installed: 1.14.0]
      - python-dateutil [required: >=2.5.3, installed: 2.8.1]
        - six [required: >=1.5, installed: 1.14.0]
      - pyyaml [required: >=3.12, installed: 3.13]
      - requests [required: Any, installed: 2.22.0]
        - certifi [required: >=2017.4.17, installed: 2019.11.28]
        - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
        - idna [required: >=2.5,<2.9, installed: 2.8]
        - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.8]
      - requests-oauthlib [required: Any, installed: 1.3.0]
        - oauthlib [required: >=3.0.0, installed: 3.1.0]
        - requests [required: >=2.0.0, installed: 2.22.0]
          - certifi [required: >=2017.4.17, installed: 2019.11.28]
          - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
          - idna [required: >=2.5,<2.9, installed: 2.8]
          - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.8]
      - setuptools [required: >=21.0.0, installed: 45.1.0]
      - six [required: >=1.9.0, installed: 1.14.0]
      - urllib3 [required: >=1.24.2, installed: 1.25.8]
      - websocket-client [required: >=0.32.0,!=0.42.*,!=0.41.*,!=0.40.0, installed: 0.57.0]
        - six [required: Any, installed: 1.14.0]
    - python-string-utils [required: Any, installed: 0.6.0]
    - ruamel.yaml [required: >=0.15, installed: 0.16.6]
      - ruamel.yaml.clib [required: >=0.1.2, installed: 0.2.0]
    - six [required: Any, installed: 1.14.0]
  - pyyaml [required: Any, installed: 3.13]
  - requests [required: Any, installed: 2.22.0]
    - certifi [required: >=2017.4.17, installed: 2019.11.28]
    - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
    - idna [required: >=2.5,<2.9, installed: 2.8]
    - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.8]
  - rfc5424-logging-handler [required: Any, installed: 1.4.3]
    - pytz [required: Any, installed: 2019.3]
    - tzlocal [required: Any, installed: 2.0.0]
      - pytz [required: Any, installed: 2019.3]
  - sentry-sdk [required: Any, installed: 0.14.1]
    - certifi [required: Any, installed: 2019.11.28]
    - urllib3 [required: >=1.10.0, installed: 1.25.8]

Notes

For more information, see Pipfile and Pipfile.lock.

Once this issue is resolved, the issue will be automatically closed by bot.

Typo in import

Describe the bug
Typo in import

To Reproduce
Steps to reproduce the behavior:

  1. Schedule a solver workflow

Expected behavior
The message is sent correctly

Screenshots

solver-fedora-32-py38-79dc5b00-205220480: Traceback (most recent call last):
solver-fedora-32-py38-79dc5b00-205220480:   File "/opt/app-root/bin/faust", line 8, in <module>
solver-fedora-32-py38-79dc5b00-205220480:   File "/opt/app-root/lib/python3.6/site-packages/click/core.py", line 829, in __call__
solver-fedora-32-py38-79dc5b00-205220480:     sys.exit(cli())
solver-fedora-32-py38-79dc5b00-205220480:     return self.main(*args, **kwargs)
solver-fedora-32-py38-79dc5b00-205220480:   File "/opt/app-root/lib/python3.6/site-packages/click/core.py", line 781, in main
solver-fedora-32-py38-79dc5b00-205220480:     with self.make_context(prog_name, args, **extra) as ctx:
solver-fedora-32-py38-79dc5b00-205220480:   File "/opt/app-root/lib/python3.6/site-packages/faust/cli/base.py", line 407, in make_context
solver-fedora-32-py38-79dc5b00-205220480:     self._maybe_import_app()
solver-fedora-32-py38-79dc5b00-205220480:   File "/opt/app-root/lib/python3.6/site-packages/faust/cli/base.py", line 372, in _maybe_import_app
solver-fedora-32-py38-79dc5b00-205220480:   File "/opt/app-root/lib/python3.6/site-packages/faust/cli/base.py", line 299, in find_app
solver-fedora-32-py38-79dc5b00-205220480:     find_app(appstr)
solver-fedora-32-py38-79dc5b00-205220480:   File "/opt/app-root/lib/python3.6/site-packages/mode/utils/imports.py", line 269, in symbol_by_name
solver-fedora-32-py38-79dc5b00-205220480:     val = symbol_by_name(app, imp=imp)
solver-fedora-32-py38-79dc5b00-205220480:     **kwargs)
solver-fedora-32-py38-79dc5b00-205220480:   File "/opt/app-root/lib/python3.6/site-packages/mode/utils/imports.py", line 376, in import_from_cwd
solver-fedora-32-py38-79dc5b00-205220480:     return imp(module, package=package)
solver-fedora-32-py38-79dc5b00-205220480:   File "/opt/app-root/lib64/python3.6/importlib/__init__.py", line 126, in import_module
solver-fedora-32-py38-79dc5b00-205220480:   File "<frozen importlib._bootstrap>", line 994, in _gcd_import
solver-fedora-32-py38-79dc5b00-205220480:     return _bootstrap._gcd_import(name[level:], package, level)
solver-fedora-32-py38-79dc5b00-205220480:   File "<frozen importlib._bootstrap>", line 971, in _find_and_load
solver-fedora-32-py38-79dc5b00-205220480:   File "<frozen importlib._bootstrap>", line 955, in _find_and_load_unlocked
solver-fedora-32-py38-79dc5b00-205220480:   File "<frozen importlib._bootstrap>", line 665, in _load_unlocked
solver-fedora-32-py38-79dc5b00-205220480:   File "<frozen importlib._bootstrap_external>", line 678, in exec_module
solver-fedora-32-py38-79dc5b00-205220480:   File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
solver-fedora-32-py38-79dc5b00-205220480:   File "/opt/app-root/src/cli.py", line 30, in <module>
solver-fedora-32-py38-79dc5b00-205220480:     from thtoh.common import init_logging
solver-fedora-32-py38-79dc5b00-205220480: ModuleNotFoundError: No module named 'thtoh'

Additional context
Add any other context about the problem here.

Failed to update dependencies to their latest version

Automatic dependency update failed for the current master with SHA 7a6d885.

The automatic dependency management cannot continue. Please fix errors reported bellow.

Command
  $ pipenv update --dev
Standard output
Running $ pipenv lock then $ pipenv sync.
Installing dependencies from Pipfile.lock (090e68)…
Installing initially failed dependencies…

Standard error
Creating a virtualenv for this project…
Pipfile: /tmp/tmp7x1ym3ku/Pipfile
Using /usr/bin/python3 (3.6.8) to create virtualenv…
Already using interpreter /usr/bin/python3
Using base prefix '/usr'
  No LICENSE.txt / LICENSE found in source
New python executable in /tmp/tmp7x1ym3ku/.venv/bin/python3
Also creating executable in /tmp/tmp7x1ym3ku/.venv/bin/python
Installing setuptools, pip, wheel...
done.

Virtualenv location: /tmp/tmp7x1ym3ku/.venv
Locking [dev-packages] dependencies…
Locking [packages] dependencies…
Updated Pipfile.lock (090e68)!
An error occurred while installing cffi==1.13.0 --hash=sha256:8fe230f612c18af1df6f348d02d682fe2c28ca0a6c3856c99599cdacae7cf226 --hash=sha256:8fe230f612c18af1df6f348d02d682fe2c28ca0a6c3856c99599cdacae7cf226! Will try again.
[pipenv.exceptions.InstallError]:   File "/usr/local/lib/python3.6/site-packages/pipenv/core.py", line 2611, in do_sync
[pipenv.exceptions.InstallError]:       system=system,
[pipenv.exceptions.InstallError]:   File "/usr/local/lib/python3.6/site-packages/pipenv/core.py", line 1253, in do_init
[pipenv.exceptions.InstallError]:       pypi_mirror=pypi_mirror,
[pipenv.exceptions.InstallError]:   File "/usr/local/lib/python3.6/site-packages/pipenv/core.py", line 859, in do_install_dependencies
[pipenv.exceptions.InstallError]:       retry_list, procs, failed_deps_queue, requirements_dir, **install_kwargs
[pipenv.exceptions.InstallError]:   File "/usr/local/lib/python3.6/site-packages/pipenv/core.py", line 763, in batch_install
[pipenv.exceptions.InstallError]:       _cleanup_procs(procs, not blocking, failed_deps_queue, retry=retry)
[pipenv.exceptions.InstallError]:   File "/usr/local/lib/python3.6/site-packages/pipenv/core.py", line 681, in _cleanup_procs
[pipenv.exceptions.InstallError]:       raise exceptions.InstallError(c.dep.name, extra=err_lines)
[pipenv.exceptions.InstallError]: ['Looking in indexes: https://pypi.python.org/simple', 'Collecting cffi==1.13.0', '  Using cached https://files.pythonhosted.org/packages/d6/cf/ba7e2df852a2fc807d48b3f7bea46f741830be4f047a0712e6de3e95fb6a/cffi-1.13.0.tar.gz', 'Building wheels for collected packages: cffi', '  Building wheel for cffi (setup.py): started', "  Building wheel for cffi (setup.py): finished with status 'error'", '  Running setup.py clean for cffi', 'Failed to build cffi', 'Installing collected packages: cffi', '    Running setup.py install for cffi: started', "    Running setup.py install for cffi: finished with status 'error'"]
[pipenv.exceptions.InstallError]: ['ERROR: Command errored out with exit status 1:', '   command: /tmp/tmp7x1ym3ku/.venv/bin/python3 -u -c \'import sys, setuptools, tokenize; sys.argv[0] = \'"\'"\'/tmp/pip-install-rj2bkans/cffi/setup.py\'"\'"\'; __file__=\'"\'"\'/tmp/pip-install-rj2bkans/cffi/setup.py\'"\'"\';f=getattr(tokenize, \'"\'"\'open\'"\'"\', open)(__file__);code=f.read().replace(\'"\'"\'\\r\\n\'"\'"\', \'"\'"\'\\n\'"\'"\');f.close();exec(compile(code, __file__, \'"\'"\'exec\'"\'"\'))\' bdist_wheel -d /tmp/pip-wheel-kqx61tx8 --python-tag cp36', '       cwd: /tmp/pip-install-rj2bkans/cffi/', '  Complete output (58 lines):', '  Package libffi was not found in the pkg-config search path.', "  Perhaps you should add the directory containing `libffi.pc'", '  to the PKG_CONFIG_PATH environment variable', "  Package 'libffi', required by 'virtual:world', not found", '  Package libffi was not found in the pkg-config search path.', "  Perhaps you should add the directory containing `libffi.pc'", '  to the PKG_CONFIG_PATH environment variable', "  Package 'libffi', required by 'virtual:world', not found", '  Package libffi was not found in the pkg-config search path.', "  Perhaps you should add the directory containing `libffi.pc'", '  to the PKG_CONFIG_PATH environment variable', "  Package 'libffi', required by 'virtual:world', not found", '  Package libffi was not found in the pkg-config search path.', "  Perhaps you should add the directory containing `libffi.pc'", '  to the PKG_CONFIG_PATH environment variable', "  Package 'libffi', required by 'virtual:world', not found", '  Package libffi was not found in the pkg-config search path.', "  Perhaps you should add the directory containing `libffi.pc'", '  to the PKG_CONFIG_PATH environment variable', "  Package 'libffi', required by 'virtual:world', not found", '  running bdist_wheel', '  running build', '  running build_py', '  creating build', '  creating build/lib.linux-x86_64-3.6', '  creating build/lib.linux-x86_64-3.6/cffi', '  copying cffi/vengine_cpy.py -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/model.py -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/commontypes.py -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/error.py -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/backend_ctypes.py -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/cparser.py -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/ffiplatform.py -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/pkgconfig.py -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/vengine_gen.py -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/api.py -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/lock.py -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/__init__.py -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/setuptools_ext.py -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/cffi_opcode.py -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/verifier.py -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/recompiler.py -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/_cffi_include.h -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/parse_c_type.h -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/_embedding.h -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/_cffi_errors.h -> build/lib.linux-x86_64-3.6/cffi', '  warning: build_py: byte-compiling is disabled, skipping.', '  ', '  running build_ext', "  building '_cffi_backend' extension", '  creating build/temp.linux-x86_64-3.6', '  creating build/temp.linux-x86_64-3.6/c', '  gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DUSE__THREAD -DHAVE_SYNC_SYNCHRONIZE -I/usr/include/ffi -I/usr/include/libffi -I/usr/include/python3.6m -c c/_cffi_backend.c -o build/temp.linux-x86_64-3.6/c/_cffi_backend.o', '  c/_cffi_backend.c:15:10: fatal error: ffi.h: No such file or directory', '   #include <ffi.h>', '            ^~~~~~~', '  compilation terminated.', "  error: command 'gcc' failed with exit status 1", '  ----------------------------------------', '  ERROR: Failed building wheel for cffi', '    ERROR: Command errored out with exit status 1:', '     command: /tmp/tmp7x1ym3ku/.venv/bin/python3 -u -c \'import sys, setuptools, tokenize; sys.argv[0] = \'"\'"\'/tmp/pip-install-rj2bkans/cffi/setup.py\'"\'"\'; __file__=\'"\'"\'/tmp/pip-install-rj2bkans/cffi/setup.py\'"\'"\';f=getattr(tokenize, \'"\'"\'open\'"\'"\', open)(__file__);code=f.read().replace(\'"\'"\'\\r\\n\'"\'"\', \'"\'"\'\\n\'"\'"\');f.close();exec(compile(code, __file__, \'"\'"\'exec\'"\'"\'))\' install --record /tmp/pip-record-cadiab3g/install-record.txt --single-version-externally-managed --compile --install-headers /tmp/tmp7x1ym3ku/.venv/include/site/python3.6/cffi', '         cwd: /tmp/pip-install-rj2bkans/cffi/', '    Complete output (58 lines):', '    Package libffi was not found in the pkg-config search path.', "    Perhaps you should add the directory containing `libffi.pc'", '    to the PKG_CONFIG_PATH environment variable', "    Package 'libffi', required by 'virtual:world', not found", '    Package libffi was not found in the pkg-config search path.', "    Perhaps you should add the directory containing `libffi.pc'", '    to the PKG_CONFIG_PATH environment variable', "    Package 'libffi', required by 'virtual:world', not found", '    Package libffi was not found in the pkg-config search path.', "    Perhaps you should add the directory containing `libffi.pc'", '    to the PKG_CONFIG_PATH environment variable', "    Package 'libffi', required by 'virtual:world', not found", '    Package libffi was not found in the pkg-config search path.', "    Perhaps you should add the directory containing `libffi.pc'", '    to the PKG_CONFIG_PATH environment variable', "    Package 'libffi', required by 'virtual:world', not found", '    Package libffi was not found in the pkg-config search path.', "    Perhaps you should add the directory containing `libffi.pc'", '    to the PKG_CONFIG_PATH environment variable', "    Package 'libffi', required by 'virtual:world', not found", '    running install', '    running build', '    running build_py', '    creating build', '    creating build/lib.linux-x86_64-3.6', '    creating build/lib.linux-x86_64-3.6/cffi', '    copying cffi/vengine_cpy.py -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/model.py -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/commontypes.py -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/error.py -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/backend_ctypes.py -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/cparser.py -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/ffiplatform.py -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/pkgconfig.py -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/vengine_gen.py -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/api.py -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/lock.py -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/__init__.py -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/setuptools_ext.py -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/cffi_opcode.py -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/verifier.py -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/recompiler.py -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/_cffi_include.h -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/parse_c_type.h -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/_embedding.h -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/_cffi_errors.h -> build/lib.linux-x86_64-3.6/cffi', '    warning: build_py: byte-compiling is disabled, skipping.', '    ', '    running build_ext', "    building '_cffi_backend' extension", '    creating build/temp.linux-x86_64-3.6', '    creating build/temp.linux-x86_64-3.6/c', '    gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DUSE__THREAD -DHAVE_SYNC_SYNCHRONIZE -I/usr/include/ffi -I/usr/include/libffi -I/usr/include/python3.6m -c c/_cffi_backend.c -o build/temp.linux-x86_64-3.6/c/_cffi_backend.o', '    c/_cffi_backend.c:15:10: fatal error: ffi.h: No such file or directory', '     #include <ffi.h>', '              ^~~~~~~', '    compilation terminated.', "    error: command 'gcc' failed with exit status 1", '    ----------------------------------------', 'ERROR: Command errored out with exit status 1: /tmp/tmp7x1ym3ku/.venv/bin/python3 -u -c \'import sys, setuptools, tokenize; sys.argv[0] = \'"\'"\'/tmp/pip-install-rj2bkans/cffi/setup.py\'"\'"\'; __file__=\'"\'"\'/tmp/pip-install-rj2bkans/cffi/setup.py\'"\'"\';f=getattr(tokenize, \'"\'"\'open\'"\'"\', open)(__file__);code=f.read().replace(\'"\'"\'\\r\\n\'"\'"\', \'"\'"\'\\n\'"\'"\');f.close();exec(compile(code, __file__, \'"\'"\'exec\'"\'"\'))\' install --record /tmp/pip-record-cadiab3g/install-record.txt --single-version-externally-managed --compile --install-headers /tmp/tmp7x1ym3ku/.venv/include/site/python3.6/cffi Check the logs for full command output.']
ERROR: ERROR: Package installation failed...

Environment details

Kebechet version: 1.0.0
Python version: 3.6.8
Platform: Linux-3.10.0-957.21.2.el7.x86_64-x86_64-with-fedora-28-Twenty_Eight
pipenv version: pipenv, version 2018.11.26


Dependency graph
Unable to obtain dependency graph:

An error occurred while installing coala-bears! Will try again.
An error occurred while installing thoth-common! Will try again.
[pipenv.exceptions.InstallError]:   File "/usr/local/lib/python3.6/site-packages/pipenv/cli/command.py", line 254, in install
[pipenv.exceptions.InstallError]:       editable_packages=state.installstate.editables,
[pipenv.exceptions.InstallError]:   File "/usr/local/lib/python3.6/site-packages/pipenv/core.py", line 1874, in do_install
[pipenv.exceptions.InstallError]:       keep_outdated=keep_outdated
[pipenv.exceptions.InstallError]:   File "/usr/local/lib/python3.6/site-packages/pipenv/core.py", line 1253, in do_init
[pipenv.exceptions.InstallError]:       pypi_mirror=pypi_mirror,
[pipenv.exceptions.InstallError]:   File "/usr/local/lib/python3.6/site-packages/pipenv/core.py", line 862, in do_install_dependencies
[pipenv.exceptions.InstallError]:       _cleanup_procs(procs, False, failed_deps_queue, retry=False)
[pipenv.exceptions.InstallError]:   File "/usr/local/lib/python3.6/site-packages/pipenv/core.py", line 681, in _cleanup_procs
[pipenv.exceptions.InstallError]:       raise exceptions.InstallError(c.dep.name, extra=err_lines)
[pipenv.exceptions.InstallError]: ['Looking in indexes: https://pypi.python.org/simple', 'Requirement already up-to-date: coala-bears in ./.venv/lib/python3.6/site-packages (0.12.0.dev20171110210444)', 'Requirement already satisfied, skipping upgrade: eradicate~=0.1.6 in ./.venv/lib/python3.6/site-packages (from coala-bears) (0.1.6)', 'Requirement already satisfied, skipping upgrade: safety~=0.5.1 in ./.venv/lib/python3.6/site-packages (from coala-bears) (0.5.1)', 'Requirement already satisfied, skipping upgrade: apertium-lint~=0.29 in ./.venv/lib/python3.6/site-packages (from coala-bears) (0.29)', 'Requirement already satisfied, skipping upgrade: yamllint~=1.6.1 in ./.venv/lib/python3.6/site-packages (from coala-bears) (1.6.1)', 'Requirement already satisfied, skipping upgrade: pyroma~=2.2.0 in ./.venv/lib/python3.6/site-packages (from coala-bears) (2.2)', 'Requirement already satisfied, skipping upgrade: guess-language-spirit~=0.5.2 in ./.venv/lib/python3.6/site-packages (from coala-bears) (0.5.3)', 'Requirement already satisfied, skipping upgrade: cmakelint~=1.3 in ./.venv/lib/python3.6/site-packages (from coala-bears) (1.4.1)', 'Requirement already satisfied, skipping upgrade: html-linter~=0.3.0 in ./.venv/lib/python3.6/site-packages (from coala-bears) (0.3.0)', 'Requirement already satisfied, skipping upgrade: proselint~=0.7.0 in ./.venv/lib/python3.6/site-packages (from coala-bears) (0.7.0)', 'Requirement already satisfied, skipping upgrade: isort~=4.2 in ./.venv/lib/python3.6/site-packages (from coala-bears) (4.3.21)', 'Requirement already satisfied, skipping upgrade: cppclean~=0.12.0 in ./.venv/lib/python3.6/site-packages (from coala-bears) (0.12)', 'Requirement already satisfied, skipping upgrade: vim-vint~=0.3.12 in ./.venv/lib/python3.6/site-packages (from coala-bears) (0.3.21)', 'Requirement already satisfied, skipping upgrade: rstcheck~=3.1 in ./.venv/lib/python3.6/site-packages (from coala-bears) (3.3.1)', 'Requirement already satisfied, skipping upgrade: coala>=0.12.0.dev20170828055500 in ./.venv/lib/python3.6/site-packages (from coala-bears) (0.12.0.dev20180101025653)', 'Requirement already satisfied, skipping upgrade: scspell3k~=2.0 in ./.venv/lib/python3.6/site-packages (from coala-bears) (2.2)', 'Requirement already satisfied, skipping upgrade: nbformat~=4.1 in ./.venv/lib/python3.6/site-packages (from coala-bears) (4.4.0)', 'Requirement already satisfied, skipping upgrade: dennis~=0.8 in ./.venv/lib/python3.6/site-packages (from coala-bears) (0.9)', 'Requirement already satisfied, skipping upgrade: autopep8~=1.2 in ./.venv/lib/python3.6/site-packages (from coala-bears) (1.4.4)', 'Requirement already satisfied, skipping upgrade: vulture~=0.25.0 in ./.venv/lib/python3.6/site-packages (from coala-bears) (0.25)', 'Collecting click==6.6', '  Using cached https://files.pythonhosted.org/packages/1c/7c/10b4132dd952b6a04e37626258825b8aa8c1eb99545f2eb26a77c21efb55/click-6.6-py2.py3-none-any.whl', 'Requirement already satisfied, skipping upgrade: memento-client~=0.6.1 in ./.venv/lib/python3.6/site-packages (from coala-bears) (0.6.1)', 'Requirement already satisfied, skipping upgrade: docutils-ast-writer~=0.1.2 in ./.venv/lib/python3.6/site-packages (from coala-bears) (0.1.2)', 'Requirement already satisfied, skipping upgrade: mypy-lang~=0.4.6 in ./.venv/lib/python3.6/site-packages (from coala-bears) (0.4.6)', 'Requirement already satisfied, skipping upgrade: HTTPolice~=0.5.2 in ./.venv/lib/python3.6/site-packages (from coala-bears) (0.5.2)', 'Requirement already satisfied, skipping upgrade: munkres3~=1.0 in ./.venv/lib/python3.6/site-packages (from coala-bears) (1.0.5.5)', 'Requirement already satisfied, skipping upgrade: autoflake~=0.7 in ./.venv/lib/python3.6/site-packages (from coala-bears) (0.7)', 'Requirement already satisfied, skipping upgrade: pydocstyle~=2.0 in ./.venv/lib/python3.6/site-packages (from coala-bears) (2.1.1)', 'Requirement already satisfied, skipping upgrade: pycodestyle~=2.2 in ./.venv/lib/python3.6/site-packages (from coala-bears) (2.5.0)', 'Requirement already satisfied, skipping upgrade: pyflakes~=1.5.0 in ./.venv/lib/python3.6/site-packages (from coala-bears) (1.5.0)', 'Collecting pylint~=1.6', '  Using cached https://files.pythonhosted.org/packages/36/3b/fa4025a424adafd85c6195001b1c130ecb8d8b30784a1c4cb68e7b5e5ae7/pylint-1.9.5-py2.py3-none-any.whl', 'Requirement already satisfied, skipping upgrade: yapf~=0.16.0 in ./.venv/lib/python3.6/site-packages (from coala-bears) (0.16.3)', 'Processing /home/user/.cache/pipenv/wheels/ad/da/0c/74eb680767247273e2cf2723482cb9c924fe70af57c334513f/PyYAML-3.13-cp36-cp36m-linux_x86_64.whl', 'Requirement already satisfied, skipping upgrade: aenum~=2.0.8 in ./.venv/lib/python3.6/site-packages (from coala-bears) (2.0.10)', 'Requirement already satisfied, skipping upgrade: radon==1.4.0 in ./.venv/lib/python3.6/site-packages (from coala-bears) (1.4.0)', 'Requirement already satisfied, skipping upgrade: restructuredtext-lint~=1.0.0 in ./.venv/lib/python3.6/site-packages (from coala-bears) (1.0.1)', 'Requirement already satisfied, skipping upgrade: nltk~=3.2 in ./.venv/lib/python3.6/site-packages (from coala-bears) (3.4.5)', 'Requirement already satisfied, skipping upgrade: bandit~=1.2 in ./.venv/lib/python3.6/site-packages (from coala-bears) (1.6.2)', 'Requirement already satisfied, skipping upgrade: cpplint~=1.3 in ./.venv/lib/python3.6/site-packages (from coala-bears) (1.4.4)', 'Requirement already satisfied, skipping upgrade: packaging in ./.venv/lib/python3.6/site-packages (from safety~=0.5.1->coala-bears) (16.8)', 'Requirement already satisfied, skipping upgrade: requests in ./.venv/lib/python3.6/site-packages (from safety~=0.5.1->coala-bears) (2.22.0)', 'Requirement already satisfied, skipping upgrade: docutils in ./.venv/lib/python3.6/site-packages (from pyroma~=2.2.0->coala-bears) (0.15.2)', 'Requirement already satisfied, skipping upgrade: setuptools in ./.venv/lib/python3.6/site-packages (from pyroma~=2.2.0->coala-bears) (41.4.0)', 'Requirement already satisfied, skipping upgrade: docopt>=0.6.1 in ./.venv/lib/python3.6/site-packages (from html-linter~=0.3.0->coala-bears) (0.6.2)', 'Requirement already satisfied, skipping upgrade: template-remover in ./.venv/lib/python3.6/site-packages (from html-linter~=0.3.0->coala-bears) (0.1.9)', 'Requirement already satisfied, skipping upgrade: future in ./.venv/lib/python3.6/site-packages (from proselint~=0.7.0->coala-bears) (0.18.0)', 'Requirement already satisfied, skipping upgrade: six in ./.venv/lib/python3.6/site-packages (from proselint~=0.7.0->coala-bears) (1.12.0)', 'Requirement already satisfied, skipping upgrade: chardet>=2.3.0 in ./.venv/lib/python3.6/site-packages (from vim-vint~=0.3.12->coala-bears) (3.0.4)', 'Requirement already satisfied, skipping upgrade: ansicolor>=0.2.4 in ./.venv/lib/python3.6/site-packages (from vim-vint~=0.3.12->coala-bears) (0.2.6)', 'Requirement already satisfied, skipping upgrade: Pygments~=2.1 in ./.venv/lib/python3.6/site-packages (from coala>=0.12.0.dev20170828055500->coala-bears) (2.4.2)', 'Requirement already satisfied, skipping upgrade: coala-utils~=0.6.2 in ./.venv/lib/python3.6/site-packages (from coala>=0.12.0.dev20170828055500->coala-bears) (0.6.7)', 'Requirement already satisfied, skipping upgrade: dependency-management~=0.4.0 in ./.venv/lib/python3.6/site-packages (from coala>=0.12.0.dev20170828055500->coala-bears) (0.4.0)', 'Requirement already satisfied, skipping upgrade: unidiff~=0.5.2 in ./.venv/lib/python3.6/site-packages (from coala>=0.12.0.dev20170828055500->coala-bears) (0.5.5)', 'Requirement already satisfied, skipping upgrade: PyPrint~=0.2.6 in ./.venv/lib/python3.6/site-packages (from coala>=0.12.0.dev20170828055500->coala-bears) (0.2.6)', 'Requirement already satisfied, skipping upgrade: testfixtures~=4.14.3 in ./.venv/lib/python3.6/site-packages (from coala>=0.12.0.dev20170828055500->coala-bears) (4.14.3)', 'Requirement already satisfied, skipping upgrade: libclang-py3~=3.4.0 in ./.venv/lib/python3.6/site-packages (from coala>=0.12.0.dev20170828055500->coala-bears) (3.4.0)', 'Collecting colorlog~=2.7', '  Using cached https://files.pythonhosted.org/packages/61/ff/d6337d488739c1a7ade37f736880e44717bcb0e7cea178c17774a4a93700/colorlog-2.10.0-py2.py3-none-any.whl', 'Requirement already satisfied, skipping upgrade: appdirs~=1.4 in ./.venv/lib/python3.6/site-packages (from coala>=0.12.0.dev20170828055500->coala-bears) (1.4.3)', 'Requirement already satisfied, skipping upgrade: jsonschema!=2.5.0,>=2.4 in ./.venv/lib/python3.6/site-packages (from nbformat~=4.1->coala-bears) (3.1.1)', 'Requirement already satisfied, skipping upgrade: ipython-genutils in ./.venv/lib/python3.6/site-packages (from nbformat~=4.1->coala-bears) (0.2.0)', 'Requirement already satisfied, skipping upgrade: traitlets>=4.1 in ./.venv/lib/python3.6/site-packages (from nbformat~=4.1->coala-bears) (4.3.3)', 'Requirement already satisfied, skipping upgrade: jupyter-core in ./.venv/lib/python3.6/site-packages (from nbformat~=4.1->coala-bears) (4.6.0)', 'Requirement already satisfied, skipping upgrade: polib>=1.0.8 in ./.venv/lib/python3.6/site-packages (from dennis~=0.8->coala-bears) (1.1.0)', 'Requirement already satisfied, skipping upgrade: lxml>=3.6.0 in ./.venv/lib/python3.6/site-packages (from HTTPolice~=0.5.2->coala-bears) (4.4.1)', 'Requirement already satisfied, skipping upgrade: singledispatch>=3.4.0.3 in ./.venv/lib/python3.6/site-packages (from HTTPolice~=0.5.2->coala-bears) (3.4.0.3)', 'Requirement already satisfied, skipping upgrade: bitstring>=3.1.4 in ./.venv/lib/python3.6/site-packages (from HTTPolice~=0.5.2->coala-bears) (3.1.6)', 'Requirement already satisfied, skipping upgrade: defusedxml>=0.5.0 in ./.venv/lib/python3.6/site-packages (from HTTPolice~=0.5.2->coala-bears) (0.6.0)', 'Requirement already satisfied, skipping upgrade: dominate>=2.2.0 in ./.venv/lib/python3.6/site-packages (from HTTPolice~=0.5.2->coala-bears) (2.4.0)', 'Requirement already satisfied, skipping upgrade: brotlipy>=0.5.1 in ./.venv/lib/python3.6/site-packages (from HTTPolice~=0.5.2->coala-bears) (0.7.0)', 'Requirement already satisfied, skipping upgrade: snowballstemmer in ./.venv/lib/python3.6/site-packages (from pydocstyle~=2.0->coala-bears) (2.0.0)', 'Collecting astroid<2.0,>=1.6', '  Using cached https://files.pythonhosted.org/packages/8b/29/0f7ec6fbf28a158886b7de49aee3a77a8a47a7e24c60e9fd6ec98ee2ec02/astroid-1.6.6-py2.py3-none-any.whl', 'Requirement already satisfied, skipping upgrade: mccabe in ./.venv/lib/python3.6/site-packages (from pylint~=1.6->coala-bears) (0.6.1)', 'Requirement already satisfied, skipping upgrade: colorama<0.4,>=0.3 in ./.venv/lib/python3.6/site-packages (from radon==1.4.0->coala-bears) (0.3.9)', 'Requirement already satisfied, skipping upgrade: mando<0.4,>=0.3 in ./.venv/lib/python3.6/site-packages (from radon==1.4.0->coala-bears) (0.3.3)', 'Requirement already satisfied, skipping upgrade: GitPython>=1.0.1 in ./.venv/lib/python3.6/site-packages (from bandit~=1.2->coala-bears) (3.0.3)', 'Requirement already satisfied, skipping upgrade: stevedore>=1.20.0 in ./.venv/lib/python3.6/site-packages (from bandit~=1.2->coala-bears) (1.31.0)', 'Requirement already satisfied, skipping upgrade: pyparsing in ./.venv/lib/python3.6/site-packages (from packaging->safety~=0.5.1->coala-bears) (2.4.2)', 'Requirement already satisfied, skipping upgrade: idna<2.9,>=2.5 in ./.venv/lib/python3.6/site-packages (from requests->safety~=0.5.1->coala-bears) (2.8)', 'Requirement already satisfied, skipping upgrade: certifi>=2017.4.17 in ./.venv/lib/python3.6/site-packages (from requests->safety~=0.5.1->coala-bears) (2019.9.11)', 'Requirement already satisfied, skipping upgrade: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in ./.venv/lib/python3.6/site-packages (from requests->safety~=0.5.1->coala-bears) (1.25.6)', 'Requirement already satisfied, skipping upgrade: sarge~=0.1.4 in ./.venv/lib/python3.6/site-packages (from dependency-management~=0.4.0->coala>=0.12.0.dev20170828055500->coala-bears) (0.1.5.post0)', 'Requirement already satisfied, skipping upgrade: termcolor~=1.1.0 in ./.venv/lib/python3.6/site-packages (from PyPrint~=0.2.6->coala>=0.12.0.dev20170828055500->coala-bears) (1.1.0)', 'Requirement already satisfied, skipping upgrade: attrs>=17.4.0 in ./.venv/lib/python3.6/site-packages (from jsonschema!=2.5.0,>=2.4->nbformat~=4.1->coala-bears) (19.3.0)', 'Requirement already satisfied, skipping upgrade: pyrsistent>=0.14.0 in ./.venv/lib/python3.6/site-packages (from jsonschema!=2.5.0,>=2.4->nbformat~=4.1->coala-bears) (0.15.4)', 'Requirement already satisfied, skipping upgrade: importlib-metadata in ./.venv/lib/python3.6/site-packages (from jsonschema!=2.5.0,>=2.4->nbformat~=4.1->coala-bears) (0.23)', 'Requirement already satisfied, skipping upgrade: decorator in ./.venv/lib/python3.6/site-packages (from traitlets>=4.1->nbformat~=4.1->coala-bears) (4.4.0)', 'Collecting cffi>=1.0.0', '  Using cached https://files.pythonhosted.org/packages/d6/cf/ba7e2df852a2fc807d48b3f7bea46f741830be4f047a0712e6de3e95fb6a/cffi-1.13.0.tar.gz', 'Requirement already satisfied, skipping upgrade: wrapt in ./.venv/lib/python3.6/site-packages (from astroid<2.0,>=1.6->pylint~=1.6->coala-bears) (1.11.2)', 'Requirement already satisfied, skipping upgrade: lazy-object-proxy in ./.venv/lib/python3.6/site-packages (from astroid<2.0,>=1.6->pylint~=1.6->coala-bears) (1.4.2)', 'Requirement already satisfied, skipping upgrade: gitdb2>=2.0.0 in ./.venv/lib/python3.6/site-packages (from GitPython>=1.0.1->bandit~=1.2->coala-bears) (2.0.6)', 'Requirement already satisfied, skipping upgrade: pbr!=2.1.0,>=2.0.0 in ./.venv/lib/python3.6/site-packages (from stevedore>=1.20.0->bandit~=1.2->coala-bears) (5.4.3)', 'Requirement already satisfied, skipping upgrade: zipp>=0.5 in ./.venv/lib/python3.6/site-packages (from importlib-metadata->jsonschema!=2.5.0,>=2.4->nbformat~=4.1->coala-bears) (0.6.0)', 'Requirement already satisfied, skipping upgrade: pycparser in ./.venv/lib/python3.6/site-packages (from cffi>=1.0.0->brotlipy>=0.5.1->HTTPolice~=0.5.2->coala-bears) (2.19)', 'Requirement already satisfied, skipping upgrade: smmap2>=2.0.0 in ./.venv/lib/python3.6/site-packages (from gitdb2>=2.0.0->GitPython>=1.0.1->bandit~=1.2->coala-bears) (2.0.5)', 'Requirement already satisfied, skipping upgrade: more-itertools in ./.venv/lib/python3.6/site-packages (from zipp>=0.5->importlib-metadata->jsonschema!=2.5.0,>=2.4->nbformat~=4.1->coala-bears) (7.2.0)', 'Building wheels for collected packages: cffi', '  Building wheel for cffi (setup.py): started', "  Building wheel for cffi (setup.py): finished with status 'error'", '  Running setup.py clean for cffi', 'Failed to build cffi', 'Installing collected packages: click, astroid, pylint, pyyaml, colorlog, cffi', '  Found existing installation: Click 7.0', '    Uninstalling Click-7.0:', '      Successfully uninstalled Click-7.0', '  Found existing installation: astroid 2.3.1', '    Uninstalling astroid-2.3.1:', '      Successfully uninstalled astroid-2.3.1', '  Found existing installation: pylint 2.4.2', '    Uninstalling pylint-2.4.2:', '      Successfully uninstalled pylint-2.4.2', '  Found existing installation: PyYAML 5.1.2', '    Uninstalling PyYAML-5.1.2:', '      Successfully uninstalled PyYAML-5.1.2', '  Found existing installation: colorlog 4.0.2', '    Uninstalling colorlog-4.0.2:', '      Successfully uninstalled colorlog-4.0.2', '    Running setup.py install for cffi: started', "    Running setup.py install for cffi: finished with status 'error'"]
[pipenv.exceptions.InstallError]: ['ERROR: Command errored out with exit status 1:', '   command: /tmp/tmp7x1ym3ku/.venv/bin/python3 -u -c \'import sys, setuptools, tokenize; sys.argv[0] = \'"\'"\'/tmp/pip-install-tlsd1ryy/cffi/setup.py\'"\'"\'; __file__=\'"\'"\'/tmp/pip-install-tlsd1ryy/cffi/setup.py\'"\'"\';f=getattr(tokenize, \'"\'"\'open\'"\'"\', open)(__file__);code=f.read().replace(\'"\'"\'\\r\\n\'"\'"\', \'"\'"\'\\n\'"\'"\');f.close();exec(compile(code, __file__, \'"\'"\'exec\'"\'"\'))\' bdist_wheel -d /tmp/pip-wheel-atsentqa --python-tag cp36', '       cwd: /tmp/pip-install-tlsd1ryy/cffi/', '  Complete output (58 lines):', '  Package libffi was not found in the pkg-config search path.', "  Perhaps you should add the directory containing `libffi.pc'", '  to the PKG_CONFIG_PATH environment variable', "  Package 'libffi', required by 'virtual:world', not found", '  Package libffi was not found in the pkg-config search path.', "  Perhaps you should add the directory containing `libffi.pc'", '  to the PKG_CONFIG_PATH environment variable', "  Package 'libffi', required by 'virtual:world', not found", '  Package libffi was not found in the pkg-config search path.', "  Perhaps you should add the directory containing `libffi.pc'", '  to the PKG_CONFIG_PATH environment variable', "  Package 'libffi', required by 'virtual:world', not found", '  Package libffi was not found in the pkg-config search path.', "  Perhaps you should add the directory containing `libffi.pc'", '  to the PKG_CONFIG_PATH environment variable', "  Package 'libffi', required by 'virtual:world', not found", '  Package libffi was not found in the pkg-config search path.', "  Perhaps you should add the directory containing `libffi.pc'", '  to the PKG_CONFIG_PATH environment variable', "  Package 'libffi', required by 'virtual:world', not found", '  running bdist_wheel', '  running build', '  running build_py', '  creating build', '  creating build/lib.linux-x86_64-3.6', '  creating build/lib.linux-x86_64-3.6/cffi', '  copying cffi/vengine_cpy.py -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/model.py -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/commontypes.py -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/error.py -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/backend_ctypes.py -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/cparser.py -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/ffiplatform.py -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/pkgconfig.py -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/vengine_gen.py -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/api.py -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/lock.py -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/__init__.py -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/setuptools_ext.py -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/cffi_opcode.py -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/verifier.py -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/recompiler.py -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/_cffi_include.h -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/parse_c_type.h -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/_embedding.h -> build/lib.linux-x86_64-3.6/cffi', '  copying cffi/_cffi_errors.h -> build/lib.linux-x86_64-3.6/cffi', '  warning: build_py: byte-compiling is disabled, skipping.', '  ', '  running build_ext', "  building '_cffi_backend' extension", '  creating build/temp.linux-x86_64-3.6', '  creating build/temp.linux-x86_64-3.6/c', '  gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DUSE__THREAD -DHAVE_SYNC_SYNCHRONIZE -I/usr/include/ffi -I/usr/include/libffi -I/usr/include/python3.6m -c c/_cffi_backend.c -o build/temp.linux-x86_64-3.6/c/_cffi_backend.o', '  c/_cffi_backend.c:15:10: fatal error: ffi.h: No such file or directory', '   #include <ffi.h>', '            ^~~~~~~', '  compilation terminated.', "  error: command 'gcc' failed with exit status 1", '  ----------------------------------------', '  ERROR: Failed building wheel for cffi', "ERROR: faust 1.8.0 has requirement click<8.0,>=6.7, but you'll have click 6.6 which is incompatible.", '    ERROR: Command errored out with exit status 1:', '     command: /tmp/tmp7x1ym3ku/.venv/bin/python3 -u -c \'import sys, setuptools, tokenize; sys.argv[0] = \'"\'"\'/tmp/pip-install-tlsd1ryy/cffi/setup.py\'"\'"\'; __file__=\'"\'"\'/tmp/pip-install-tlsd1ryy/cffi/setup.py\'"\'"\';f=getattr(tokenize, \'"\'"\'open\'"\'"\', open)(__file__);code=f.read().replace(\'"\'"\'\\r\\n\'"\'"\', \'"\'"\'\\n\'"\'"\');f.close();exec(compile(code, __file__, \'"\'"\'exec\'"\'"\'))\' install --record /tmp/pip-record-d6f_m2_e/install-record.txt --single-version-externally-managed --compile --install-headers /tmp/tmp7x1ym3ku/.venv/include/site/python3.6/cffi', '         cwd: /tmp/pip-install-tlsd1ryy/cffi/', '    Complete output (58 lines):', '    Package libffi was not found in the pkg-config search path.', "    Perhaps you should add the directory containing `libffi.pc'", '    to the PKG_CONFIG_PATH environment variable', "    Package 'libffi', required by 'virtual:world', not found", '    Package libffi was not found in the pkg-config search path.', "    Perhaps you should add the directory containing `libffi.pc'", '    to the PKG_CONFIG_PATH environment variable', "    Package 'libffi', required by 'virtual:world', not found", '    Package libffi was not found in the pkg-config search path.', "    Perhaps you should add the directory containing `libffi.pc'", '    to the PKG_CONFIG_PATH environment variable', "    Package 'libffi', required by 'virtual:world', not found", '    Package libffi was not found in the pkg-config search path.', "    Perhaps you should add the directory containing `libffi.pc'", '    to the PKG_CONFIG_PATH environment variable', "    Package 'libffi', required by 'virtual:world', not found", '    Package libffi was not found in the pkg-config search path.', "    Perhaps you should add the directory containing `libffi.pc'", '    to the PKG_CONFIG_PATH environment variable', "    Package 'libffi', required by 'virtual:world', not found", '    running install', '    running build', '    running build_py', '    creating build', '    creating build/lib.linux-x86_64-3.6', '    creating build/lib.linux-x86_64-3.6/cffi', '    copying cffi/vengine_cpy.py -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/model.py -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/commontypes.py -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/error.py -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/backend_ctypes.py -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/cparser.py -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/ffiplatform.py -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/pkgconfig.py -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/vengine_gen.py -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/api.py -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/lock.py -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/__init__.py -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/setuptools_ext.py -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/cffi_opcode.py -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/verifier.py -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/recompiler.py -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/_cffi_include.h -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/parse_c_type.h -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/_embedding.h -> build/lib.linux-x86_64-3.6/cffi', '    copying cffi/_cffi_errors.h -> build/lib.linux-x86_64-3.6/cffi', '    warning: build_py: byte-compiling is disabled, skipping.', '    ', '    running build_ext', "    building '_cffi_backend' extension", '    creating build/temp.linux-x86_64-3.6', '    creating build/temp.linux-x86_64-3.6/c', '    gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DUSE__THREAD -DHAVE_SYNC_SYNCHRONIZE -I/usr/include/ffi -I/usr/include/libffi -I/usr/include/python3.6m -c c/_cffi_backend.c -o build/temp.linux-x86_64-3.6/c/_cffi_backend.o', '    c/_cffi_backend.c:15:10: fatal error: ffi.h: No such file or directory', '     #include <ffi.h>', '              ^~~~~~~', '    compilation terminated.', "    error: command 'gcc' failed with exit status 1", '    ----------------------------------------', 'ERROR: Command errored out with exit status 1: /tmp/tmp7x1ym3ku/.venv/bin/python3 -u -c \'import sys, setuptools, tokenize; sys.argv[0] = \'"\'"\'/tmp/pip-install-tlsd1ryy/cffi/setup.py\'"\'"\'; __file__=\'"\'"\'/tmp/pip-install-tlsd1ryy/cffi/setup.py\'"\'"\';f=getattr(tokenize, \'"\'"\'open\'"\'"\', open)(__file__);code=f.read().replace(\'"\'"\'\\r\\n\'"\'"\', \'"\'"\'\\n\'"\'"\');f.close();exec(compile(code, __file__, \'"\'"\'exec\'"\'"\'))\' install --record /tmp/pip-record-d6f_m2_e/install-record.txt --single-version-externally-managed --compile --install-headers /tmp/tmp7x1ym3ku/.venv/include/site/python3.6/cffi Check the logs for full command output.']
ERROR: ERROR: Package installation failed...

Notes

For more information, see Pipfile and Pipfile.lock.

Once this issue is resolved, the issue will be automatically closed by bot.

Failed to update dependencies to their latest version

Automatic dependency update failed for the current master with SHA 7a6d885.

The automatic dependency management cannot continue. Please fix errors reported bellow.

Command
  $ pipenv update --dev
Standard output
Running $ pipenv lock then $ pipenv sync.
Installing dependencies from Pipfile.lock (090e68)…
Installing initially failed dependencies…

Standard error
Creating a virtualenv for this project…
Pipfile: /tmp/tmpquflubuo/Pipfile
Using /usr/bin/python3 (3.6.8) to create virtualenv…
Already using interpreter /usr/bin/python3
Using base prefix '/usr'
  No LICENSE.txt / LICENSE found in source
New python executable in /tmp/tmpquflubuo/.venv/bin/python3
Also creating executable in /tmp/tmpquflubuo/.venv/bin/python
Installing setuptools, pip, wheel...
done.

Virtualenv location: /tmp/tmpquflubuo/.venv
Locking [dev-packages] dependencies…
Locking [packages] dependencies…
Updated Pipfile.lock (090e68)!
An error occurred while installing cryptography==2.8 --hash=sha256:3cda1f0ed8747339bbdf71b9f38ca74c7b592f24f65cdb3ab3765e4b02871651! Will try again.
[pipenv.exceptions.InstallError]:   File "/usr/local/lib/python3.6/site-packages/pipenv/core.py", line 2611, in do_sync
[pipenv.exceptions.InstallError]:       system=system,
[pipenv.exceptions.InstallError]:   File "/usr/local/lib/python3.6/site-packages/pipenv/core.py", line 1253, in do_init
[pipenv.exceptions.InstallError]:       pypi_mirror=pypi_mirror,
[pipenv.exceptions.InstallError]:   File "/usr/local/lib/python3.6/site-packages/pipenv/core.py", line 859, in do_install_dependencies
[pipenv.exceptions.InstallError]:       retry_list, procs, failed_deps_queue, requirements_dir, **install_kwargs
[pipenv.exceptions.InstallError]:   File "/usr/local/lib/python3.6/site-packages/pipenv/core.py", line 763, in batch_install
[pipenv.exceptions.InstallError]:       _cleanup_procs(procs, not blocking, failed_deps_queue, retry=retry)
[pipenv.exceptions.InstallError]:   File "/usr/local/lib/python3.6/site-packages/pipenv/core.py", line 681, in _cleanup_procs
[pipenv.exceptions.InstallError]:       raise exceptions.InstallError(c.dep.name, extra=err_lines)
[pipenv.exceptions.InstallError]: ['Looking in indexes: https://pypi.python.org/simple', 'Collecting cryptography==2.8', '  Using cached https://files.pythonhosted.org/packages/be/60/da377e1bed002716fb2d5d1d1cab720f298cb33ecff7bf7adea72788e4e4/cryptography-2.8.tar.gz', '  Installing build dependencies: started', "  Installing build dependencies: finished with status 'done'", '  Getting requirements to build wheel: started', "  Getting requirements to build wheel: finished with status 'done'", '    Preparing wheel metadata: started', "    Preparing wheel metadata: finished with status 'done'", 'Building wheels for collected packages: cryptography', '  Building wheel for cryptography (PEP 517): started', "  Building wheel for cryptography (PEP 517): finished with status 'error'", '  Running setup.py clean for cryptography', 'Failed to build cryptography']
[pipenv.exceptions.InstallError]: ['ERROR: Command errored out with exit status 1:', '   command: /tmp/tmpquflubuo/.venv/bin/python3 /tmp/tmpquflubuo/.venv/lib/python3.6/site-packages/pip/_vendor/pep517/_in_process.py build_wheel /tmp/tmpqi40r2we', '       cwd: /tmp/pip-install-5eksi43m/cryptography', '  Complete output (139 lines):', '  running bdist_wheel', '  running build', '  running build_py', '  creating build', '  creating build/lib.linux-x86_64-3.6', '  creating build/lib.linux-x86_64-3.6/cryptography', '  copying src/cryptography/__about__.py -> build/lib.linux-x86_64-3.6/cryptography', '  copying src/cryptography/__init__.py -> build/lib.linux-x86_64-3.6/cryptography', '  copying src/cryptography/exceptions.py -> build/lib.linux-x86_64-3.6/cryptography', '  copying src/cryptography/fernet.py -> build/lib.linux-x86_64-3.6/cryptography', '  copying src/cryptography/utils.py -> build/lib.linux-x86_64-3.6/cryptography', '  creating build/lib.linux-x86_64-3.6/cryptography/hazmat', '  copying src/cryptography/hazmat/__init__.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat', '  copying src/cryptography/hazmat/_der.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat', '  copying src/cryptography/hazmat/_oid.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat', '  creating build/lib.linux-x86_64-3.6/cryptography/x509', '  copying src/cryptography/x509/__init__.py -> build/lib.linux-x86_64-3.6/cryptography/x509', '  copying src/cryptography/x509/base.py -> build/lib.linux-x86_64-3.6/cryptography/x509', '  copying src/cryptography/x509/certificate_transparency.py -> build/lib.linux-x86_64-3.6/cryptography/x509', '  copying src/cryptography/x509/extensions.py -> build/lib.linux-x86_64-3.6/cryptography/x509', '  copying src/cryptography/x509/general_name.py -> build/lib.linux-x86_64-3.6/cryptography/x509', '  copying src/cryptography/x509/name.py -> build/lib.linux-x86_64-3.6/cryptography/x509', '  copying src/cryptography/x509/ocsp.py -> build/lib.linux-x86_64-3.6/cryptography/x509', '  copying src/cryptography/x509/oid.py -> build/lib.linux-x86_64-3.6/cryptography/x509', '  creating build/lib.linux-x86_64-3.6/cryptography/hazmat/backends', '  copying src/cryptography/hazmat/backends/__init__.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/backends', '  copying src/cryptography/hazmat/backends/interfaces.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/backends', '  creating build/lib.linux-x86_64-3.6/cryptography/hazmat/bindings', '  copying src/cryptography/hazmat/bindings/__init__.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/bindings', '  creating build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives', '  copying src/cryptography/hazmat/primitives/__init__.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives', '  copying src/cryptography/hazmat/primitives/cmac.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives', '  copying src/cryptography/hazmat/primitives/constant_time.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives', '  copying src/cryptography/hazmat/primitives/hashes.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives', '  copying src/cryptography/hazmat/primitives/hmac.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives', '  copying src/cryptography/hazmat/primitives/keywrap.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives', '  copying src/cryptography/hazmat/primitives/padding.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives', '  copying src/cryptography/hazmat/primitives/poly1305.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives', '  creating build/lib.linux-x86_64-3.6/cryptography/hazmat/backends/openssl', '  copying src/cryptography/hazmat/backends/openssl/__init__.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/backends/openssl', '  copying src/cryptography/hazmat/backends/openssl/aead.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/backends/openssl', '  copying src/cryptography/hazmat/backends/openssl/backend.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/backends/openssl', '  copying src/cryptography/hazmat/backends/openssl/ciphers.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/backends/openssl', '  copying src/cryptography/hazmat/backends/openssl/cmac.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/backends/openssl', '  copying src/cryptography/hazmat/backends/openssl/decode_asn1.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/backends/openssl', '  copying src/cryptography/hazmat/backends/openssl/dh.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/backends/openssl', '  copying src/cryptography/hazmat/backends/openssl/dsa.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/backends/openssl', '  copying src/cryptography/hazmat/backends/openssl/ec.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/backends/openssl', '  copying src/cryptography/hazmat/backends/openssl/ed25519.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/backends/openssl', '  copying src/cryptography/hazmat/backends/openssl/ed448.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/backends/openssl', '  copying src/cryptography/hazmat/backends/openssl/encode_asn1.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/backends/openssl', '  copying src/cryptography/hazmat/backends/openssl/hashes.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/backends/openssl', '  copying src/cryptography/hazmat/backends/openssl/hmac.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/backends/openssl', '  copying src/cryptography/hazmat/backends/openssl/ocsp.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/backends/openssl', '  copying src/cryptography/hazmat/backends/openssl/poly1305.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/backends/openssl', '  copying src/cryptography/hazmat/backends/openssl/rsa.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/backends/openssl', '  copying src/cryptography/hazmat/backends/openssl/utils.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/backends/openssl', '  copying src/cryptography/hazmat/backends/openssl/x25519.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/backends/openssl', '  copying src/cryptography/hazmat/backends/openssl/x448.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/backends/openssl', '  copying src/cryptography/hazmat/backends/openssl/x509.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/backends/openssl', '  creating build/lib.linux-x86_64-3.6/cryptography/hazmat/bindings/openssl', '  copying src/cryptography/hazmat/bindings/openssl/__init__.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/bindings/openssl', '  copying src/cryptography/hazmat/bindings/openssl/_conditional.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/bindings/openssl', '  copying src/cryptography/hazmat/bindings/openssl/binding.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/bindings/openssl', '  creating build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives/asymmetric', '  copying src/cryptography/hazmat/primitives/asymmetric/__init__.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives/asymmetric', '  copying src/cryptography/hazmat/primitives/asymmetric/dh.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives/asymmetric', '  copying src/cryptography/hazmat/primitives/asymmetric/dsa.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives/asymmetric', '  copying src/cryptography/hazmat/primitives/asymmetric/ec.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives/asymmetric', '  copying src/cryptography/hazmat/primitives/asymmetric/ed25519.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives/asymmetric', '  copying src/cryptography/hazmat/primitives/asymmetric/ed448.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives/asymmetric', '  copying src/cryptography/hazmat/primitives/asymmetric/padding.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives/asymmetric', '  copying src/cryptography/hazmat/primitives/asymmetric/rsa.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives/asymmetric', '  copying src/cryptography/hazmat/primitives/asymmetric/utils.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives/asymmetric', '  copying src/cryptography/hazmat/primitives/asymmetric/x25519.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives/asymmetric', '  copying src/cryptography/hazmat/primitives/asymmetric/x448.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives/asymmetric', '  creating build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives/ciphers', '  copying src/cryptography/hazmat/primitives/ciphers/__init__.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives/ciphers', '  copying src/cryptography/hazmat/primitives/ciphers/aead.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives/ciphers', '  copying src/cryptography/hazmat/primitives/ciphers/algorithms.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives/ciphers', '  copying src/cryptography/hazmat/primitives/ciphers/base.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives/ciphers', '  copying src/cryptography/hazmat/primitives/ciphers/modes.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives/ciphers', '  creating build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives/kdf', '  copying src/cryptography/hazmat/primitives/kdf/__init__.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives/kdf', '  copying src/cryptography/hazmat/primitives/kdf/concatkdf.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives/kdf', '  copying src/cryptography/hazmat/primitives/kdf/hkdf.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives/kdf', '  copying src/cryptography/hazmat/primitives/kdf/kbkdf.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives/kdf', '  copying src/cryptography/hazmat/primitives/kdf/pbkdf2.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives/kdf', '  copying src/cryptography/hazmat/primitives/kdf/scrypt.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives/kdf', '  copying src/cryptography/hazmat/primitives/kdf/x963kdf.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives/kdf', '  creating build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives/serialization', '  copying src/cryptography/hazmat/primitives/serialization/__init__.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives/serialization', '  copying src/cryptography/hazmat/primitives/serialization/base.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives/serialization', '  copying src/cryptography/hazmat/primitives/serialization/pkcs12.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives/serialization', '  copying src/cryptography/hazmat/primitives/serialization/ssh.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives/serialization', '  creating build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives/twofactor', '  copying src/cryptography/hazmat/primitives/twofactor/__init__.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives/twofactor', '  copying src/cryptography/hazmat/primitives/twofactor/hotp.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives/twofactor', '  copying src/cryptography/hazmat/primitives/twofactor/totp.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives/twofactor', '  copying src/cryptography/hazmat/primitives/twofactor/utils.py -> build/lib.linux-x86_64-3.6/cryptography/hazmat/primitives/twofactor', '  running egg_info', '  writing src/cryptography.egg-info/PKG-INFO', '  writing dependency_links to src/cryptography.egg-info/dependency_links.txt', '  writing requirements to src/cryptography.egg-info/requires.txt', '  writing top-level names to src/cryptography.egg-info/top_level.txt', "  reading manifest file 'src/cryptography.egg-info/SOURCES.txt'", "  reading manifest template 'MANIFEST.in'", "  no previously-included directories found matching 'docs/_build'", "  warning: no previously-included files found matching 'vectors'", "  warning: no previously-included files matching '*' found under directory 'vectors'", "  warning: no previously-included files found matching 'azure-pipelines.yml'", "  warning: no previously-included files found matching '.azure-pipelines'", "  warning: no previously-included files found matching '.travis.yml'", "  warning: no previously-included files found matching '.travis'", "  warning: no previously-included files matching '*' found under directory '.azure-pipelines'", "  warning: no previously-included files matching '*' found under directory '.travis'", "  warning: no previously-included files found matching 'release.py'", "  warning: no previously-included files found matching '.coveragerc'", "  warning: no previously-included files found matching 'codecov.yml'", "  warning: no previously-included files found matching 'dev-requirements.txt'", "  warning: no previously-included files found matching 'rtd-requirements.txt'", "  warning: no previously-included files found matching 'tox.ini'", "  writing manifest file 'src/cryptography.egg-info/SOURCES.txt'", '  warning: build_py: byte-compiling is disabled, skipping.', '  ', '  running build_ext', "  generating cffi module 'build/temp.linux-x86_64-3.6/_padding.c'", '  creating build/temp.linux-x86_64-3.6', "  generating cffi module 'build/temp.linux-x86_64-3.6/_constant_time.c'", "  generating cffi module 'build/temp.linux-x86_64-3.6/_openssl.c'", "  building '_openssl' extension", '  creating build/temp.linux-x86_64-3.6/build', '  creating build/temp.linux-x86_64-3.6/build/temp.linux-x86_64-3.6', '  gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -D_GNU_SOURCE -fPIC -fwrapv -fPIC -I/usr/include/python3.6m -c build/temp.linux-x86_64-3.6/_openssl.c -o build/temp.linux-x86_64-3.6/build/temp.linux-x86_64-3.6/_openssl.o -Wconversion -Wno-error=sign-conversion', '  build/temp.linux-x86_64-3.6/_openssl.c:498:10: fatal error: openssl/opensslv.h: No such file or directory', '   #include <openssl/opensslv.h>', '            ^~~~~~~~~~~~~~~~~~~~', '  compilation terminated.', "  error: command 'gcc' failed with exit status 1", '  ----------------------------------------', '  ERROR: Failed building wheel for cryptography', 'ERROR: Could not build wheels for cryptography which use PEP 517 and cannot be installed directly']
ERROR: ERROR: Package installation failed...

Environment details

Kebechet version: 1.0.0
Python version: 3.6.8
Platform: Linux-3.10.0-957.21.2.el7.x86_64-x86_64-with-fedora-28-Twenty_Eight
pipenv version: pipenv, version 2018.11.26


Dependency graph
black==19.3b0
  - appdirs [required: Any, installed: 1.4.3]
  - attrs [required: >=18.1.0, installed: 19.3.0]
  - click [required: >=6.5, installed: 6.6]
  - toml [required: >=0.9.4, installed: 0.10.0]
coala-bears==0.12.0.dev20171110210444
  - aenum [required: ~=2.0.8, installed: 2.0.10]
  - apertium-lint [required: ~=0.29, installed: 0.29]
  - autoflake [required: ~=0.7, installed: 0.7]
    - pyflakes [required: >=0.8.1, installed: 1.5.0]
  - autopep8 [required: ~=1.2, installed: 1.4.4]
    - pycodestyle [required: >=2.4.0, installed: 2.5.0]
  - bandit [required: ~=1.2, installed: 1.6.2]
    - GitPython [required: >=1.0.1, installed: 3.0.3]
      - gitdb2 [required: >=2.0.0, installed: 2.0.6]
        - smmap2 [required: >=2.0.0, installed: 2.0.5]
    - PyYAML [required: >=3.13, installed: 3.13]
    - six [required: >=1.10.0, installed: 1.12.0]
    - stevedore [required: >=1.20.0, installed: 1.31.0]
      - pbr [required: >=2.0.0,!=2.1.0, installed: 5.4.3]
      - six [required: >=1.10.0, installed: 1.12.0]
  - click [required: ==6.6, installed: 6.6]
  - cmakelint [required: ~=1.3, installed: 1.4.1]
  - coala [required: >=0.12.0.dev20170828055500, installed: 0.12.0.dev20180101025653]
    - appdirs [required: ~=1.4, installed: 1.4.3]
    - coala-utils [required: ~=0.6.2, installed: 0.6.7]
      - appdirs [required: ==1.4.*, installed: 1.4.3]
      - pyprint [required: ==0.2.*, installed: 0.2.6]
        - colorama [required: ~=0.3.7, installed: 0.3.9]
        - termcolor [required: ~=1.1.0, installed: 1.1.0]
    - colorlog [required: ~=2.7, installed: 2.10.0]
    - dependency-management [required: ~=0.4.0, installed: 0.4.0]
      - coala-utils [required: ~=0.6, installed: 0.6.7]
        - appdirs [required: ==1.4.*, installed: 1.4.3]
        - pyprint [required: ==0.2.*, installed: 0.2.6]
          - colorama [required: ~=0.3.7, installed: 0.3.9]
          - termcolor [required: ~=1.1.0, installed: 1.1.0]
      - sarge [required: ~=0.1.4, installed: 0.1.5.post0]
    - libclang-py3 [required: ~=3.4.0, installed: 3.4.0]
    - packaging [required: ~=16.8, installed: 16.8]
      - pyparsing [required: Any, installed: 2.4.2]
      - six [required: Any, installed: 1.12.0]
    - Pygments [required: ~=2.1, installed: 2.4.2]
    - PyPrint [required: ~=0.2.6, installed: 0.2.6]
      - colorama [required: ~=0.3.7, installed: 0.3.9]
      - termcolor [required: ~=1.1.0, installed: 1.1.0]
    - requests [required: ~=2.12, installed: 2.22.0]
      - certifi [required: >=2017.4.17, installed: 2019.9.11]
      - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
      - idna [required: >=2.5,<2.9, installed: 2.8]
      - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.6]
    - setuptools [required: >=19.0, installed: 41.4.0]
    - testfixtures [required: ~=4.14.3, installed: 4.14.3]
    - unidiff [required: ~=0.5.2, installed: 0.5.5]
  - cppclean [required: ~=0.12.0, installed: 0.12]
  - cpplint [required: ~=1.3, installed: 1.4.4]
  - dennis [required: ~=0.8, installed: 0.9]
    - click [required: >=6, installed: 6.6]
    - polib [required: >=1.0.8, installed: 1.1.0]
  - docutils-ast-writer [required: ~=0.1.2, installed: 0.1.2]
    - docutils [required: >=0.12, installed: 0.15.2]
  - eradicate [required: ~=0.1.6, installed: 0.1.6]
  - guess-language-spirit [required: ~=0.5.2, installed: 0.5.3]
  - html-linter [required: ~=0.3.0, installed: 0.3.0]
    - docopt [required: >=0.6.1, installed: 0.6.2]
    - template-remover [required: Any, installed: 0.1.9]
      - docopt [required: >=0.6.1, installed: 0.6.2]
  - HTTPolice [required: ~=0.5.2, installed: 0.5.2]
    - bitstring [required: >=3.1.4, installed: 3.1.6]
    - brotlipy [required: >=0.5.1, installed: 0.7.0]
      - cffi [required: >=1.0.0, installed: 1.13.0]
        - pycparser [required: Any, installed: 2.19]
    - defusedxml [required: >=0.5.0, installed: 0.6.0]
    - dominate [required: >=2.2.0, installed: 2.4.0]
    - lxml [required: >=3.6.0, installed: 4.4.1]
    - singledispatch [required: >=3.4.0.3, installed: 3.4.0.3]
      - six [required: Any, installed: 1.12.0]
    - six [required: >=1.10.0, installed: 1.12.0]
  - isort [required: ~=4.2, installed: 4.3.21]
  - memento-client [required: ~=0.6.1, installed: 0.6.1]
    - requests [required: >=2.7.0, installed: 2.22.0]
      - certifi [required: >=2017.4.17, installed: 2019.9.11]
      - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
      - idna [required: >=2.5,<2.9, installed: 2.8]
      - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.6]
  - munkres3 [required: ~=1.0, installed: 1.0.5.5]
  - mypy-lang [required: ~=0.4.6, installed: 0.4.6]
  - nbformat [required: ~=4.1, installed: 4.4.0]
    - ipython-genutils [required: Any, installed: 0.2.0]
    - jsonschema [required: >=2.4,!=2.5.0, installed: 3.1.1]
      - attrs [required: >=17.4.0, installed: 19.3.0]
      - importlib-metadata [required: Any, installed: 0.23]
        - zipp [required: >=0.5, installed: 0.6.0]
          - more-itertools [required: Any, installed: 7.2.0]
      - pyrsistent [required: >=0.14.0, installed: 0.15.4]
        - six [required: Any, installed: 1.12.0]
      - setuptools [required: Any, installed: 41.4.0]
      - six [required: >=1.11.0, installed: 1.12.0]
    - jupyter-core [required: Any, installed: 4.6.0]
      - traitlets [required: Any, installed: 4.3.3]
        - decorator [required: Any, installed: 4.4.0]
        - ipython-genutils [required: Any, installed: 0.2.0]
        - six [required: Any, installed: 1.12.0]
    - traitlets [required: >=4.1, installed: 4.3.3]
      - decorator [required: Any, installed: 4.4.0]
      - ipython-genutils [required: Any, installed: 0.2.0]
      - six [required: Any, installed: 1.12.0]
  - nltk [required: ~=3.2, installed: 3.4.5]
    - six [required: Any, installed: 1.12.0]
  - proselint [required: ~=0.7.0, installed: 0.7.0]
    - click [required: Any, installed: 6.6]
    - future [required: Any, installed: 0.18.0]
    - six [required: Any, installed: 1.12.0]
  - pycodestyle [required: ~=2.2, installed: 2.5.0]
  - pydocstyle [required: ~=2.0, installed: 2.1.1]
    - six [required: Any, installed: 1.12.0]
    - snowballstemmer [required: Any, installed: 2.0.0]
  - pyflakes [required: ~=1.5.0, installed: 1.5.0]
  - pylint [required: ~=1.6, installed: 1.9.5]
    - astroid [required: >=1.6,<2.0, installed: 1.6.6]
      - lazy-object-proxy [required: Any, installed: 1.4.2]
      - six [required: Any, installed: 1.12.0]
      - wrapt [required: Any, installed: 1.11.2]
    - isort [required: >=4.2.5, installed: 4.3.21]
    - mccabe [required: Any, installed: 0.6.1]
    - six [required: Any, installed: 1.12.0]
  - pyroma [required: ~=2.2.0, installed: 2.2]
    - docutils [required: Any, installed: 0.15.2]
    - setuptools [required: Any, installed: 41.4.0]
  - pyyaml [required: ~=3.12, installed: 3.13]
  - radon [required: ==1.4.0, installed: 1.4.0]
    - colorama [required: >=0.3,<0.4, installed: 0.3.9]
    - mando [required: >=0.3,<0.4, installed: 0.3.3]
  - restructuredtext-lint [required: ~=1.0.0, installed: 1.0.1]
    - docutils [required: >=0.11,<1.0, installed: 0.15.2]
  - rstcheck [required: ~=3.1, installed: 3.3.1]
    - docutils [required: >=0.7, installed: 0.15.2]
  - safety [required: ~=0.5.1, installed: 0.5.1]
    - Click [required: >=6.0, installed: 6.6]
    - packaging [required: Any, installed: 16.8]
      - pyparsing [required: Any, installed: 2.4.2]
      - six [required: Any, installed: 1.12.0]
    - requests [required: Any, installed: 2.22.0]
      - certifi [required: >=2017.4.17, installed: 2019.9.11]
      - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
      - idna [required: >=2.5,<2.9, installed: 2.8]
      - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.6]
  - scspell3k [required: ~=2.0, installed: 2.2]
  - vim-vint [required: ~=0.3.12, installed: 0.3.21]
    - ansicolor [required: >=0.2.4, installed: 0.2.6]
    - chardet [required: >=2.3.0, installed: 3.0.4]
    - PyYAML [required: >=3.11, installed: 3.13]
  - vulture [required: ~=0.25.0, installed: 0.25]
  - yamllint [required: ~=1.6.1, installed: 1.6.1]
    - pyyaml [required: Any, installed: 3.13]
  - yapf [required: ~=0.16.0, installed: 0.16.3]
faust==1.8.0
  - aiohttp [required: >=3.5.2,<4.0, installed: 3.6.2]
    - async-timeout [required: >=3.0,<4.0, installed: 3.0.1]
    - attrs [required: >=17.3.0, installed: 19.3.0]
    - chardet [required: >=2.0,<4.0, installed: 3.0.4]
    - idna-ssl [required: >=1.0, installed: 1.1.0]
      - idna [required: >=2.0, installed: 2.8]
    - multidict [required: >=4.5,<5.0, installed: 4.5.2]
    - typing-extensions [required: >=3.6.5, installed: 3.7.4]
    - yarl [required: >=1.0,<2.0, installed: 1.4.0a11]
      - idna [required: >=2.0, installed: 2.8]
      - multidict [required: >=4.0, installed: 4.5.2]
  - aiohttp-cors [required: >=0.7,<2.0, installed: 0.7.0]
    - aiohttp [required: >=1.1, installed: 3.6.2]
      - async-timeout [required: >=3.0,<4.0, installed: 3.0.1]
      - attrs [required: >=17.3.0, installed: 19.3.0]
      - chardet [required: >=2.0,<4.0, installed: 3.0.4]
      - idna-ssl [required: >=1.0, installed: 1.1.0]
        - idna [required: >=2.0, installed: 2.8]
      - multidict [required: >=4.5,<5.0, installed: 4.5.2]
      - typing-extensions [required: >=3.6.5, installed: 3.7.4]
      - yarl [required: >=1.0,<2.0, installed: 1.4.0a11]
        - idna [required: >=2.0, installed: 2.8]
        - multidict [required: >=4.0, installed: 4.5.2]
  - click [required: >=6.7,<8.0, installed: 6.6]
  - colorclass [required: >=2.2,<3.0, installed: 2.2.0]
  - croniter [required: >=0.3.16, installed: 0.3.30]
    - python-dateutil [required: Any, installed: 2.8.0]
      - six [required: >=1.5, installed: 1.12.0]
  - mode [required: >=4.1.0,<4.2, installed: 4.1.2]
    - aiocontextvars [required: >=0.2, installed: 0.2.2]
      - contextvars [required: ==2.4, installed: 2.4]
        - immutables [required: >=0.9, installed: 0.11]
    - colorlog [required: >=2.9.0, installed: 2.10.0]
    - mypy-extensions [required: Any, installed: 0.4.2]
  - mypy-extensions [required: Any, installed: 0.4.2]
  - opentracing [required: >=1.3.0,<2.0.0, installed: 1.3.0]
  - robinhood-aiokafka [required: >=1.0.3,<1.1, installed: 1.0.4]
    - kafka-python [required: >=1.4.4,<1.5, installed: 1.4.7]
  - terminaltables [required: >=3.1,<4.0, installed: 3.1.0]
  - venusian [required: >=1.1,<2.0, installed: 1.2.0]
  - yarl [required: >=1.0,<2.0, installed: 1.4.0a11]
    - idna [required: >=2.0, installed: 2.8]
    - multidict [required: >=4.0, installed: 4.5.2]
pytest-cov==2.8.1
  - coverage [required: >=4.4, installed: 5.0a8]
  - pytest [required: >=3.6, installed: 5.2.1]
    - atomicwrites [required: >=1.0, installed: 1.3.0]
    - attrs [required: >=17.4.0, installed: 19.3.0]
    - importlib-metadata [required: >=0.12, installed: 0.23]
      - zipp [required: >=0.5, installed: 0.6.0]
        - more-itertools [required: Any, installed: 7.2.0]
    - more-itertools [required: >=4.0.0, installed: 7.2.0]
    - packaging [required: Any, installed: 16.8]
      - pyparsing [required: Any, installed: 2.4.2]
      - six [required: Any, installed: 1.12.0]
    - pluggy [required: >=0.12,<1.0, installed: 0.13.0]
      - importlib-metadata [required: >=0.12, installed: 0.23]
        - zipp [required: >=0.5, installed: 0.6.0]
          - more-itertools [required: Any, installed: 7.2.0]
    - py [required: >=1.5.0, installed: 1.8.0]
    - wcwidth [required: Any, installed: 0.1.7]
pytest-timeout==1.3.3
  - pytest [required: >=3.6.0, installed: 5.2.1]
    - atomicwrites [required: >=1.0, installed: 1.3.0]
    - attrs [required: >=17.4.0, installed: 19.3.0]
    - importlib-metadata [required: >=0.12, installed: 0.23]
      - zipp [required: >=0.5, installed: 0.6.0]
        - more-itertools [required: Any, installed: 7.2.0]
    - more-itertools [required: >=4.0.0, installed: 7.2.0]
    - packaging [required: Any, installed: 16.8]
      - pyparsing [required: Any, installed: 2.4.2]
      - six [required: Any, installed: 1.12.0]
    - pluggy [required: >=0.12,<1.0, installed: 0.13.0]
      - importlib-metadata [required: >=0.12, installed: 0.23]
        - zipp [required: >=0.5, installed: 0.6.0]
          - more-itertools [required: Any, installed: 7.2.0]
    - py [required: >=1.5.0, installed: 1.8.0]
    - wcwidth [required: Any, installed: 0.1.7]
thoth-common==0.9.14
  - attrs [required: Any, installed: 19.3.0]
  - daiquiri [required: Any, installed: 1.6.0]
  - openshift [required: ==0.8.0, installed: 0.8.0]
    - dictdiffer [required: Any, installed: 0.8.0]
    - jinja2 [required: Any, installed: 2.10.3]
      - MarkupSafe [required: >=0.23, installed: 1.1.1]
    - kubernetes [required: >=8.0.0,<9.0.0, installed: 8.0.2]
      - adal [required: >=1.0.2, installed: 1.2.2]
        - cryptography [required: >=1.1.0, installed: ?]
        - PyJWT [required: >=1.0.0, installed: 1.7.1]
        - python-dateutil [required: >=2.1.0, installed: 2.8.0]
          - six [required: >=1.5, installed: 1.12.0]
        - requests [required: >=2.0.0, installed: 2.22.0]
          - certifi [required: >=2017.4.17, installed: 2019.9.11]
          - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
          - idna [required: >=2.5,<2.9, installed: 2.8]
          - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.6]
      - certifi [required: >=14.05.14, installed: 2019.9.11]
      - google-auth [required: >=1.0.1, installed: 1.6.3]
        - cachetools [required: >=2.0.0, installed: 3.1.1]
        - pyasn1-modules [required: >=0.2.1, installed: 0.2.7]
          - pyasn1 [required: >=0.4.6,<0.5.0, installed: 0.4.7]
        - rsa [required: >=3.1.4, installed: 4.0]
          - pyasn1 [required: >=0.1.3, installed: 0.4.7]
        - six [required: >=1.9.0, installed: 1.12.0]
      - python-dateutil [required: >=2.5.3, installed: 2.8.0]
        - six [required: >=1.5, installed: 1.12.0]
      - pyyaml [required: >=3.12, installed: 3.13]
      - requests [required: Any, installed: 2.22.0]
        - certifi [required: >=2017.4.17, installed: 2019.9.11]
        - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
        - idna [required: >=2.5,<2.9, installed: 2.8]
        - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.6]
      - requests-oauthlib [required: Any, installed: 1.2.0]
        - oauthlib [required: >=3.0.0, installed: 3.1.0]
        - requests [required: >=2.0.0, installed: 2.22.0]
          - certifi [required: >=2017.4.17, installed: 2019.9.11]
          - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
          - idna [required: >=2.5,<2.9, installed: 2.8]
          - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.6]
      - setuptools [required: >=21.0.0, installed: 41.4.0]
      - six [required: >=1.9.0, installed: 1.12.0]
      - urllib3 [required: >=1.24.2, installed: 1.25.6]
      - websocket-client [required: >=0.32.0,!=0.42.*,!=0.41.*,!=0.40.0, installed: 0.56.0]
        - six [required: Any, installed: 1.12.0]
    - python-string-utils [required: Any, installed: 0.6.0]
    - ruamel.yaml [required: >=0.15, installed: 0.16.5]
      - ruamel.yaml.clib [required: >=0.1.2, installed: 0.2.0]
    - six [required: Any, installed: 1.12.0]
  - pyyaml [required: Any, installed: 3.13]
  - requests [required: Any, installed: 2.22.0]
    - certifi [required: >=2017.4.17, installed: 2019.9.11]
    - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
    - idna [required: >=2.5,<2.9, installed: 2.8]
    - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.6]
  - rfc5424-logging-handler [required: Any, installed: 1.4.3]
    - pytz [required: Any, installed: 2019.3]
    - tzlocal [required: Any, installed: 2.0.0]
      - pytz [required: Any, installed: 2019.3]
  - sentry-sdk [required: Any, installed: 0.12.3]
    - certifi [required: Any, installed: 2019.9.11]
    - urllib3 [required: >=1.9, installed: 1.25.6]
typed-ast==1.4.0

Notes

For more information, see Pipfile and Pipfile.lock.

Once this issue is resolved, the issue will be automatically closed by bot.

Failed to update dependencies to their latest version

Automatic dependency update failed for the current master with SHA 14bd7f6.

The automatic dependency management cannot continue. Please fix errors reported bellow.

Command
  $ pipenv lock
Standard output

Standard error
Locking [dev-packages] dependencies…
Locking [packages] dependencies…

FAIL
[pipenv.exceptions.ResolutionFailure]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/resolver.py", line 69, in resolve
[pipenv.exceptions.ResolutionFailure]:       req_dir=requirements_dir
[pipenv.exceptions.ResolutionFailure]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/utils.py", line 726, in resolve_deps
[pipenv.exceptions.ResolutionFailure]:       req_dir=req_dir,
[pipenv.exceptions.ResolutionFailure]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/utils.py", line 480, in actually_resolve_deps
[pipenv.exceptions.ResolutionFailure]:       resolved_tree = resolver.resolve()
[pipenv.exceptions.ResolutionFailure]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/utils.py", line 395, in resolve
[pipenv.exceptions.ResolutionFailure]:       raise ResolutionFailure(message=str(e))
[pipenv.exceptions.ResolutionFailure]:       pipenv.exceptions.ResolutionFailure: ERROR: ERROR: Could not find a version that matches robinhood-aiokafka<1.2,>=1.1.3
[pipenv.exceptions.ResolutionFailure]:       Tried: 0.4.8, 0.4.8, 0.4.9, 0.4.9, 0.4.10, 0.4.10, 0.4.11, 0.4.11, 0.4.12, 0.4.12, 0.4.13, 0.4.13, 0.4.14, 0.4.14, 0.4.15, 0.4.15, 0.4.16, 0.4.16, 0.4.17, 0.4.17, 0.4.18, 0.4.18, 0.4.18, 0.4.19, 0.4.19, 0.5.0, 0.5.0, 0.5.1, 0.5.1, 0.5.2, 0.5.2, 1.0.0, 1.0.0, 1.0.1, 1.0.1, 1.0.2, 1.0.2, 1.0.2, 1.0.3, 1.0.3, 1.0.3, 1.0.4, 1.0.4
[pipenv.exceptions.ResolutionFailure]: Warning: Your dependencies could not be resolved. You likely have a mismatch in your sub-dependencies.
  First try clearing your dependency cache with $ pipenv lock --clear, then try the original command again.
 Alternatively, you can use $ pipenv install --skip-lock to bypass this mechanism, then run $ pipenv graph to inspect the situation.
  Hint: try $ pipenv lock --pre if it is a pre-release dependency.
ERROR: ERROR: Could not find a version that matches robinhood-aiokafka<1.2,>=1.1.3
Tried: 0.4.8, 0.4.8, 0.4.9, 0.4.9, 0.4.10, 0.4.10, 0.4.11, 0.4.11, 0.4.12, 0.4.12, 0.4.13, 0.4.13, 0.4.14, 0.4.14, 0.4.15, 0.4.15, 0.4.16, 0.4.16, 0.4.17, 0.4.17, 0.4.18, 0.4.18, 0.4.18, 0.4.19, 0.4.19, 0.5.0, 0.5.0, 0.5.1, 0.5.1, 0.5.2, 0.5.2, 1.0.0, 1.0.0, 1.0.1, 1.0.1, 1.0.2, 1.0.2, 1.0.2, 1.0.3, 1.0.3, 1.0.3, 1.0.4, 1.0.4
There are incompatible versions in the resolved dependencies.
[pipenv.exceptions.ResolutionFailure]:       req_dir=requirements_dir
[pipenv.exceptions.ResolutionFailure]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/utils.py", line 726, in resolve_deps
[pipenv.exceptions.ResolutionFailure]:       req_dir=req_dir,
[pipenv.exceptions.ResolutionFailure]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/utils.py", line 480, in actually_resolve_deps
[pipenv.exceptions.ResolutionFailure]:       resolved_tree = resolver.resolve()
[pipenv.exceptions.ResolutionFailure]:   File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/utils.py", line 395, in resolve
[pipenv.exceptions.ResolutionFailure]:       raise ResolutionFailure(message=str(e))
[pipenv.exceptions.ResolutionFailure]:       pipenv.exceptions.ResolutionFailure: ERROR: ERROR: Could not find a version that matches robinhood-aiokafka<1.2,>=1.1.3
[pipenv.exceptions.ResolutionFailure]:       Tried: 0.4.8, 0.4.8, 0.4.9, 0.4.9, 0.4.10, 0.4.10, 0.4.11, 0.4.11, 0.4.12, 0.4.12, 0.4.13, 0.4.13, 0.4.14, 0.4.14, 0.4.15, 0.4.15, 0.4.16, 0.4.16, 0.4.17, 0.4.17, 0.4.18, 0.4.18, 0.4.18, 0.4.19, 0.4.19, 0.5.0, 0.5.0, 0.5.1, 0.5.1, 0.5.2, 0.5.2, 1.0.0, 1.0.0, 1.0.1, 1.0.1, 1.0.2, 1.0.2, 1.0.2, 1.0.3, 1.0.3, 1.0.3, 1.0.4, 1.0.4
[pipenv.exceptions.ResolutionFailure]: Warning: Your dependencies could not be resolved. You likely have a mismatch in your sub-dependencies.
  First try clearing your dependency cache with $ pipenv lock --clear, then try the original command again.
 Alternatively, you can use $ pipenv install --skip-lock to bypass this mechanism, then run $ pipenv graph to inspect the situation.
  Hint: try $ pipenv lock --pre if it is a pre-release dependency.
ERROR: ERROR: Could not find a version that matches robinhood-aiokafka<1.2,>=1.1.3
Tried: 0.4.8, 0.4.8, 0.4.9, 0.4.9, 0.4.10, 0.4.10, 0.4.11, 0.4.11, 0.4.12, 0.4.12, 0.4.13, 0.4.13, 0.4.14, 0.4.14, 0.4.15, 0.4.15, 0.4.16, 0.4.16, 0.4.17, 0.4.17, 0.4.18, 0.4.18, 0.4.18, 0.4.19, 0.4.19, 0.5.0, 0.5.0, 0.5.1, 0.5.1, 0.5.2, 0.5.2, 1.0.0, 1.0.0, 1.0.1, 1.0.1, 1.0.2, 1.0.2, 1.0.2, 1.0.3, 1.0.3, 1.0.3, 1.0.4, 1.0.4
There are incompatible versions in the resolved dependencies.

['Traceback (most recent call last):\n', '  File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/utils.py", line 501, in create_spinner\n    yield sp\n', '  File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/utils.py", line 649, in venv_resolve_deps\n    c = resolve(cmd, sp)\n', '  File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/utils.py", line 539, in resolve\n    sys.exit(c.return_code)\n', 'SystemExit: 1\n']

Environment details

Kebechet version: 1.0.0
Python version: 3.6.8
Platform: Linux-3.10.0-957.21.2.el7.x86_64-x86_64-with-redhat-8.1-Ootpa
pipenv version: pipenv, version 2018.11.26


Dependency graph
adal==1.2.2
  - cryptography [required: >=1.1.0, installed: 2.7]
    - asn1crypto [required: >=0.21.0, installed: 1.1.0]
    - cffi [required: >=1.8,!=1.11.3, installed: 1.12.3]
      - pycparser [required: Any, installed: 2.19]
    - six [required: >=1.4.1, installed: 1.12.0]
  - PyJWT [required: >=1.0.0, installed: 1.7.1]
  - python-dateutil [required: >=2.1.0, installed: 2.8.0]
    - six [required: >=1.5, installed: 1.12.0]
  - requests [required: >=2.0.0, installed: 2.22.0]
    - certifi [required: >=2017.4.17, installed: 2019.9.11]
    - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
    - idna [required: >=2.5,<2.9, installed: 2.8]
    - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.6]
black==19.10b0
  - appdirs [required: Any, installed: 1.4.3]
  - attrs [required: >=18.1.0, installed: 19.2.0]
  - click [required: >=6.5, installed: 6.6]
  - pathspec [required: >=0.6,<1, installed: 0.6.0]
  - regex [required: Any, installed: 2019.8.19]
  - toml [required: >=0.9.4, installed: 0.10.0]
  - typed-ast [required: >=1.4.0, installed: 1.4.0]
coala-bears==0.12.0.dev20171110210444
  - aenum [required: ~=2.0.8, installed: 2.0.10]
  - apertium-lint [required: ~=0.29, installed: 0.29]
  - autoflake [required: ~=0.7, installed: 0.7]
    - pyflakes [required: >=0.8.1, installed: 1.5.0]
  - autopep8 [required: ~=1.2, installed: 1.4.4]
    - pycodestyle [required: >=2.4.0, installed: 2.5.0]
  - bandit [required: ~=1.2, installed: 1.6.2]
    - GitPython [required: >=1.0.1, installed: 3.0.3]
      - gitdb2 [required: >=2.0.0, installed: 2.0.6]
        - smmap2 [required: >=2.0.0, installed: 2.0.5]
    - PyYAML [required: >=3.13, installed: 3.13]
    - six [required: >=1.10.0, installed: 1.12.0]
    - stevedore [required: >=1.20.0, installed: 1.31.0]
      - pbr [required: >=2.0.0,!=2.1.0, installed: 5.4.3]
      - six [required: >=1.10.0, installed: 1.12.0]
  - click [required: ==6.6, installed: 6.6]
  - cmakelint [required: ~=1.3, installed: 1.4.1]
  - coala [required: >=0.12.0.dev20170828055500, installed: 0.12.0.dev20180101025653]
    - appdirs [required: ~=1.4, installed: 1.4.3]
    - coala-utils [required: ~=0.6.2, installed: 0.6.7]
      - appdirs [required: ==1.4.*, installed: 1.4.3]
      - pyprint [required: ==0.2.*, installed: 0.2.6]
        - colorama [required: ~=0.3.7, installed: 0.3.9]
        - termcolor [required: ~=1.1.0, installed: 1.1.0]
    - colorlog [required: ~=2.7, installed: 2.10.0]
    - dependency-management [required: ~=0.4.0, installed: 0.4.0]
      - coala-utils [required: ~=0.6, installed: 0.6.7]
        - appdirs [required: ==1.4.*, installed: 1.4.3]
        - pyprint [required: ==0.2.*, installed: 0.2.6]
          - colorama [required: ~=0.3.7, installed: 0.3.9]
          - termcolor [required: ~=1.1.0, installed: 1.1.0]
      - sarge [required: ~=0.1.4, installed: 0.1.5.post0]
    - libclang-py3 [required: ~=3.4.0, installed: 3.4.0]
    - packaging [required: ~=16.8, installed: 16.8]
      - pyparsing [required: Any, installed: 2.4.2]
      - six [required: Any, installed: 1.12.0]
    - Pygments [required: ~=2.1, installed: 2.4.2]
    - PyPrint [required: ~=0.2.6, installed: 0.2.6]
      - colorama [required: ~=0.3.7, installed: 0.3.9]
      - termcolor [required: ~=1.1.0, installed: 1.1.0]
    - requests [required: ~=2.12, installed: 2.22.0]
      - certifi [required: >=2017.4.17, installed: 2019.9.11]
      - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
      - idna [required: >=2.5,<2.9, installed: 2.8]
      - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.6]
    - setuptools [required: >=19.0, installed: 42.0.2]
    - testfixtures [required: ~=4.14.3, installed: 4.14.3]
    - unidiff [required: ~=0.5.2, installed: 0.5.5]
  - cppclean [required: ~=0.12.0, installed: 0.12]
  - cpplint [required: ~=1.3, installed: 1.4.4]
  - dennis [required: ~=0.8, installed: 0.9]
    - click [required: >=6, installed: 6.6]
    - polib [required: >=1.0.8, installed: 1.1.0]
  - docutils-ast-writer [required: ~=0.1.2, installed: 0.1.2]
    - docutils [required: >=0.12, installed: 0.15.2]
  - eradicate [required: ~=0.1.6, installed: 0.1.6]
  - guess-language-spirit [required: ~=0.5.2, installed: 0.5.3]
  - html-linter [required: ~=0.3.0, installed: 0.3.0]
    - docopt [required: >=0.6.1, installed: 0.6.2]
    - template-remover [required: Any, installed: 0.1.9]
      - docopt [required: >=0.6.1, installed: 0.6.2]
  - HTTPolice [required: ~=0.5.2, installed: 0.5.2]
    - bitstring [required: >=3.1.4, installed: 3.1.6]
    - brotlipy [required: >=0.5.1, installed: 0.7.0]
      - cffi [required: >=1.0.0, installed: 1.12.3]
        - pycparser [required: Any, installed: 2.19]
    - defusedxml [required: >=0.5.0, installed: 0.6.0]
    - dominate [required: >=2.2.0, installed: 2.4.0]
    - lxml [required: >=3.6.0, installed: 4.4.1]
    - singledispatch [required: >=3.4.0.3, installed: 3.4.0.3]
      - six [required: Any, installed: 1.12.0]
    - six [required: >=1.10.0, installed: 1.12.0]
  - isort [required: ~=4.2, installed: 4.3.21]
  - memento-client [required: ~=0.6.1, installed: 0.6.1]
    - requests [required: >=2.7.0, installed: 2.22.0]
      - certifi [required: >=2017.4.17, installed: 2019.9.11]
      - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
      - idna [required: >=2.5,<2.9, installed: 2.8]
      - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.6]
  - munkres3 [required: ~=1.0, installed: 1.0.5.5]
  - mypy-lang [required: ~=0.4.6, installed: 0.4.6]
  - nbformat [required: ~=4.1, installed: 4.4.0]
    - ipython-genutils [required: Any, installed: 0.2.0]
    - jsonschema [required: >=2.4,!=2.5.0, installed: 3.1.1]
      - attrs [required: >=17.4.0, installed: 19.2.0]
      - importlib-metadata [required: Any, installed: 0.23]
        - zipp [required: >=0.5, installed: 0.6.0]
          - more-itertools [required: Any, installed: 8.0.2]
      - pyrsistent [required: >=0.14.0, installed: 0.15.4]
        - six [required: Any, installed: 1.12.0]
      - setuptools [required: Any, installed: 42.0.2]
      - six [required: >=1.11.0, installed: 1.12.0]
    - jupyter-core [required: Any, installed: 4.6.0]
      - traitlets [required: Any, installed: 4.3.3]
        - decorator [required: Any, installed: 4.4.0]
        - ipython-genutils [required: Any, installed: 0.2.0]
        - six [required: Any, installed: 1.12.0]
    - traitlets [required: >=4.1, installed: 4.3.3]
      - decorator [required: Any, installed: 4.4.0]
      - ipython-genutils [required: Any, installed: 0.2.0]
      - six [required: Any, installed: 1.12.0]
  - nltk [required: ~=3.2, installed: 3.4.5]
    - six [required: Any, installed: 1.12.0]
  - proselint [required: ~=0.7.0, installed: 0.7.0]
    - click [required: Any, installed: 6.6]
    - future [required: Any, installed: 0.18.0]
    - six [required: Any, installed: 1.12.0]
  - pycodestyle [required: ~=2.2, installed: 2.5.0]
  - pydocstyle [required: ~=2.0, installed: 2.1.1]
    - six [required: Any, installed: 1.12.0]
    - snowballstemmer [required: Any, installed: 2.0.0]
  - pyflakes [required: ~=1.5.0, installed: 1.5.0]
  - pylint [required: ~=1.6, installed: 2.4.2]
    - astroid [required: >=2.3.0,<2.4, installed: 2.3.3]
      - lazy-object-proxy [required: ==1.4.*, installed: 1.4.2]
      - six [required: ~=1.12, installed: 1.12.0]
      - typed-ast [required: >=1.4.0,<1.5, installed: 1.4.0]
      - wrapt [required: ==1.11.*, installed: 1.11.2]
    - isort [required: >=4.2.5,<5, installed: 4.3.21]
    - mccabe [required: >=0.6,<0.7, installed: 0.6.1]
  - pyroma [required: ~=2.2.0, installed: 2.2]
    - docutils [required: Any, installed: 0.15.2]
    - setuptools [required: Any, installed: 42.0.2]
  - pyyaml [required: ~=3.12, installed: 3.13]
  - radon [required: ==1.4.0, installed: 1.4.0]
    - colorama [required: >=0.3,<0.4, installed: 0.3.9]
    - mando [required: >=0.3,<0.4, installed: 0.3.3]
  - restructuredtext-lint [required: ~=1.0.0, installed: 1.0.1]
    - docutils [required: >=0.11,<1.0, installed: 0.15.2]
  - rstcheck [required: ~=3.1, installed: 3.3.1]
    - docutils [required: >=0.7, installed: 0.15.2]
  - safety [required: ~=0.5.1, installed: 0.5.1]
    - Click [required: >=6.0, installed: 6.6]
    - packaging [required: Any, installed: 16.8]
      - pyparsing [required: Any, installed: 2.4.2]
      - six [required: Any, installed: 1.12.0]
    - requests [required: Any, installed: 2.22.0]
      - certifi [required: >=2017.4.17, installed: 2019.9.11]
      - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
      - idna [required: >=2.5,<2.9, installed: 2.8]
      - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.6]
  - scspell3k [required: ~=2.0, installed: 2.2]
  - vim-vint [required: ~=0.3.12, installed: 0.3.21]
    - ansicolor [required: >=0.2.4, installed: 0.2.6]
    - chardet [required: >=2.3.0, installed: 3.0.4]
    - PyYAML [required: >=3.11, installed: 3.13]
  - vulture [required: ~=0.25.0, installed: 0.25]
  - yamllint [required: ~=1.6.1, installed: 1.6.1]
    - pyyaml [required: Any, installed: 3.13]
  - yapf [required: ~=0.16.0, installed: 0.16.3]
faust==1.9.0
  - aiohttp [required: >=3.5.2,<4.0, installed: 3.6.2]
    - async-timeout [required: >=3.0,<4.0, installed: 3.0.1]
    - attrs [required: >=17.3.0, installed: 19.2.0]
    - chardet [required: >=2.0,<4.0, installed: 3.0.4]
    - idna-ssl [required: >=1.0, installed: 1.1.0]
      - idna [required: >=2.0, installed: 2.8]
    - multidict [required: >=4.5,<5.0, installed: 4.5.2]
    - typing-extensions [required: >=3.6.5, installed: 3.7.4]
    - yarl [required: >=1.0,<2.0, installed: 1.4.0a11]
      - idna [required: >=2.0, installed: 2.8]
      - multidict [required: >=4.0, installed: 4.5.2]
  - aiohttp-cors [required: >=0.7,<2.0, installed: 0.7.0]
    - aiohttp [required: >=1.1, installed: 3.6.2]
      - async-timeout [required: >=3.0,<4.0, installed: 3.0.1]
      - attrs [required: >=17.3.0, installed: 19.2.0]
      - chardet [required: >=2.0,<4.0, installed: 3.0.4]
      - idna-ssl [required: >=1.0, installed: 1.1.0]
        - idna [required: >=2.0, installed: 2.8]
      - multidict [required: >=4.5,<5.0, installed: 4.5.2]
      - typing-extensions [required: >=3.6.5, installed: 3.7.4]
      - yarl [required: >=1.0,<2.0, installed: 1.4.0a11]
        - idna [required: >=2.0, installed: 2.8]
        - multidict [required: >=4.0, installed: 4.5.2]
  - click [required: >=6.7,<8.0, installed: 6.6]
  - colorclass [required: >=2.2,<3.0, installed: 2.2.0]
  - croniter [required: >=0.3.16, installed: 0.3.30]
    - python-dateutil [required: Any, installed: 2.8.0]
      - six [required: >=1.5, installed: 1.12.0]
  - mode [required: >=4.1.3,<4.2, installed: 4.1.6]
    - aiocontextvars [required: >=0.2, installed: 0.2.2]
      - contextvars [required: ==2.4, installed: 2.4]
        - immutables [required: >=0.9, installed: 0.10]
    - colorlog [required: >=2.9.0, installed: 2.10.0]
    - mypy-extensions [required: Any, installed: 0.4.2]
  - mypy-extensions [required: Any, installed: 0.4.2]
  - opentracing [required: >=1.3.0,<2.0.0, installed: 1.3.0]
  - robinhood-aiokafka [required: >=1.1.3,<1.2, installed: 1.1.3]
    - kafka-python [required: >=1.4.6,<1.5, installed: 1.4.7]
  - terminaltables [required: >=3.1,<4.0, installed: 3.1.0]
  - venusian [required: >=1.1,<2.0, installed: 1.2.0]
  - yarl [required: >=1.0,<2.0, installed: 1.4.0a11]
    - idna [required: >=2.0, installed: 2.8]
    - multidict [required: >=4.0, installed: 4.5.2]
pytest-cov==2.8.1
  - coverage [required: >=4.4, installed: 5.0]
  - pytest [required: >=3.6, installed: 5.3.2]
    - attrs [required: >=17.4.0, installed: 19.2.0]
    - importlib-metadata [required: >=0.12, installed: 0.23]
      - zipp [required: >=0.5, installed: 0.6.0]
        - more-itertools [required: Any, installed: 8.0.2]
    - more-itertools [required: >=4.0.0, installed: 8.0.2]
    - packaging [required: Any, installed: 16.8]
      - pyparsing [required: Any, installed: 2.4.2]
      - six [required: Any, installed: 1.12.0]
    - pluggy [required: >=0.12,<1.0, installed: 0.13.0]
      - importlib-metadata [required: >=0.12, installed: 0.23]
        - zipp [required: >=0.5, installed: 0.6.0]
          - more-itertools [required: Any, installed: 8.0.2]
    - py [required: >=1.5.0, installed: 1.8.0]
    - wcwidth [required: Any, installed: 0.1.7]
pytest-timeout==1.3.3
  - pytest [required: >=3.6.0, installed: 5.3.2]
    - attrs [required: >=17.4.0, installed: 19.2.0]
    - importlib-metadata [required: >=0.12, installed: 0.23]
      - zipp [required: >=0.5, installed: 0.6.0]
        - more-itertools [required: Any, installed: 8.0.2]
    - more-itertools [required: >=4.0.0, installed: 8.0.2]
    - packaging [required: Any, installed: 16.8]
      - pyparsing [required: Any, installed: 2.4.2]
      - six [required: Any, installed: 1.12.0]
    - pluggy [required: >=0.12,<1.0, installed: 0.13.0]
      - importlib-metadata [required: >=0.12, installed: 0.23]
        - zipp [required: >=0.5, installed: 0.6.0]
          - more-itertools [required: Any, installed: 8.0.2]
    - py [required: >=1.5.0, installed: 1.8.0]
    - wcwidth [required: Any, installed: 0.1.7]
thoth-common==0.9.22
  - argo-workflows [required: Any, installed: 2.1.2]
    - kubernetes [required: >=10.0, installed: 10.0.1]
      - certifi [required: >=14.05.14, installed: 2019.9.11]
      - google-auth [required: >=1.0.1, installed: 1.6.3]
        - cachetools [required: >=2.0.0, installed: 3.1.1]
        - pyasn1-modules [required: >=0.2.1, installed: 0.2.7]
          - pyasn1 [required: >=0.4.6,<0.5.0, installed: 0.4.7]
        - rsa [required: >=3.1.4, installed: 4.0]
          - pyasn1 [required: >=0.1.3, installed: 0.4.7]
        - six [required: >=1.9.0, installed: 1.12.0]
      - python-dateutil [required: >=2.5.3, installed: 2.8.0]
        - six [required: >=1.5, installed: 1.12.0]
      - pyyaml [required: >=3.12, installed: 3.13]
      - requests [required: Any, installed: 2.22.0]
        - certifi [required: >=2017.4.17, installed: 2019.9.11]
        - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
        - idna [required: >=2.5,<2.9, installed: 2.8]
        - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.6]
      - requests-oauthlib [required: Any, installed: 1.2.0]
        - oauthlib [required: >=3.0.0, installed: 3.1.0]
        - requests [required: >=2.0.0, installed: 2.22.0]
          - certifi [required: >=2017.4.17, installed: 2019.9.11]
          - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
          - idna [required: >=2.5,<2.9, installed: 2.8]
          - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.6]
      - setuptools [required: >=21.0.0, installed: 42.0.2]
      - six [required: >=1.9.0, installed: 1.12.0]
      - urllib3 [required: >=1.24.2, installed: 1.25.6]
      - websocket-client [required: >=0.32.0,!=0.42.*,!=0.41.*,!=0.40.0, installed: 0.56.0]
        - six [required: Any, installed: 1.12.0]
    - mock [required: Any, installed: 3.0.5]
      - six [required: Any, installed: 1.12.0]
  - attrdict [required: Any, installed: 2.0.1]
    - six [required: Any, installed: 1.12.0]
  - attrs [required: Any, installed: 19.2.0]
  - daiquiri [required: Any, installed: 1.6.0]
  - openshift [required: Any, installed: 0.8.0]
    - dictdiffer [required: Any, installed: 0.8.0]
    - jinja2 [required: Any, installed: 2.10.3]
      - MarkupSafe [required: >=0.23, installed: 1.1.1]
    - kubernetes [required: >=8.0.0,<9.0.0, installed: 10.0.1]
      - certifi [required: >=14.05.14, installed: 2019.9.11]
      - google-auth [required: >=1.0.1, installed: 1.6.3]
        - cachetools [required: >=2.0.0, installed: 3.1.1]
        - pyasn1-modules [required: >=0.2.1, installed: 0.2.7]
          - pyasn1 [required: >=0.4.6,<0.5.0, installed: 0.4.7]
        - rsa [required: >=3.1.4, installed: 4.0]
          - pyasn1 [required: >=0.1.3, installed: 0.4.7]
        - six [required: >=1.9.0, installed: 1.12.0]
      - python-dateutil [required: >=2.5.3, installed: 2.8.0]
        - six [required: >=1.5, installed: 1.12.0]
      - pyyaml [required: >=3.12, installed: 3.13]
      - requests [required: Any, installed: 2.22.0]
        - certifi [required: >=2017.4.17, installed: 2019.9.11]
        - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
        - idna [required: >=2.5,<2.9, installed: 2.8]
        - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.6]
      - requests-oauthlib [required: Any, installed: 1.2.0]
        - oauthlib [required: >=3.0.0, installed: 3.1.0]
        - requests [required: >=2.0.0, installed: 2.22.0]
          - certifi [required: >=2017.4.17, installed: 2019.9.11]
          - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
          - idna [required: >=2.5,<2.9, installed: 2.8]
          - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.6]
      - setuptools [required: >=21.0.0, installed: 42.0.2]
      - six [required: >=1.9.0, installed: 1.12.0]
      - urllib3 [required: >=1.24.2, installed: 1.25.6]
      - websocket-client [required: >=0.32.0,!=0.42.*,!=0.41.*,!=0.40.0, installed: 0.56.0]
        - six [required: Any, installed: 1.12.0]
    - python-string-utils [required: Any, installed: 0.6.0]
    - ruamel.yaml [required: >=0.15, installed: 0.16.5]
      - ruamel.yaml.clib [required: >=0.1.2, installed: 0.2.0]
    - six [required: Any, installed: 1.12.0]
  - pyyaml [required: Any, installed: 3.13]
  - requests [required: Any, installed: 2.22.0]
    - certifi [required: >=2017.4.17, installed: 2019.9.11]
    - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
    - idna [required: >=2.5,<2.9, installed: 2.8]
    - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.6]
  - rfc5424-logging-handler [required: Any, installed: 1.4.3]
    - pytz [required: Any, installed: 2019.3]
    - tzlocal [required: Any, installed: 2.0.0]
      - pytz [required: Any, installed: 2019.3]
  - sentry-sdk [required: Any, installed: 0.12.3]
    - certifi [required: Any, installed: 2019.9.11]
    - urllib3 [required: >=1.9, installed: 1.25.6]

Notes

For more information, see Pipfile and Pipfile.lock.

Once this issue is resolved, the issue will be automatically closed by bot.

Libraries must not lock dependencies

Describe the bug

As thoth-messaging is a library, it should not lock dependencies in setup.py's install_requirements (that reads in requirements.txt). install_requirements should state only direct dependencies (with their version specification, as in case of Pipfile) and components that use this library should resolve their versions based on requirements coming in from other libraries.

-i https://pypi.python.org/simple
aiocontextvars==0.2.2 ; python_version < '3.7'
aiohttp-cors==0.7.0
aiohttp==3.6.2
argo-workflows==2.1.4
async-timeout==3.0.1
attrdict==2.0.1
attrs==19.3.0
cachetools==4.0.0
certifi==2019.11.28

This way we can easily end up with unresolvable stack.

Failed to update dependencies to their latest version

Automatic dependency update failed for the current master with SHA 0e1e5c4.

The automatic dependency management cannot continue. Please fix errors reported bellow.

Command
  $ pipenv update --dev
Standard output
Running $ pipenv lock then $ pipenv sync.
Installing dependencies from Pipfile.lock (090e68)…

Standard error
Creating a virtualenv for this project…
Pipfile: /tmp/tmp19dpgvkk/Pipfile
Using /home/user/.local/share/virtualenvs/user-5PivF_Od/bin/python (3.6.8) to create virtualenv…
Already using interpreter /home/user/.local/share/virtualenvs/user-5PivF_Od/bin/python
Using real prefix '/usr'
  No LICENSE.txt / LICENSE found in source
New python executable in /tmp/tmp19dpgvkk/.venv/bin/python
Installing setuptools, pip, wheel...
done.
Running virtualenv with interpreter /home/user/.local/share/virtualenvs/user-5PivF_Od/bin/python

Virtualenv location: /tmp/tmp19dpgvkk/.venv
Locking [dev-packages] dependencies…
Locking [packages] dependencies…
Updated Pipfile.lock (090e68)!

Environment details

Kebechet version: 1.0.0
Python version: 3.6.8
Platform: Linux-3.10.0-957.21.2.el7.x86_64-x86_64-with-redhat-8.1-Ootpa
pipenv version: pipenv, version 2018.11.26


Dependency graph
black==19.10b0
  - appdirs [required: Any, installed: 1.4.3]
  - attrs [required: >=18.1.0, installed: 19.3.0]
  - click [required: >=6.5, installed: 6.6]
  - pathspec [required: >=0.6,<1, installed: 0.7.0]
  - regex [required: Any, installed: 2020.1.8]
  - toml [required: >=0.9.4, installed: 0.10.0]
  - typed-ast [required: >=1.4.0, installed: 1.4.1]
coala-bears==0.12.0.dev20171110210444
  - aenum [required: ~=2.0.8, installed: 2.0.10]
  - apertium-lint [required: ~=0.29, installed: 0.29]
  - autoflake [required: ~=0.7, installed: 0.7]
    - pyflakes [required: >=0.8.1, installed: 1.5.0]
  - autopep8 [required: ~=1.2, installed: 1.4.4]
    - pycodestyle [required: >=2.4.0, installed: 2.5.0]
  - bandit [required: ~=1.2, installed: 1.6.2]
    - GitPython [required: >=1.0.1, installed: 3.0.5]
      - gitdb2 [required: >=2.0.0, installed: 2.0.6]
        - smmap2 [required: >=2.0.0, installed: 2.0.5]
    - PyYAML [required: >=3.13, installed: 3.13]
    - six [required: >=1.10.0, installed: 1.14.0]
    - stevedore [required: >=1.20.0, installed: 1.31.0]
      - pbr [required: >=2.0.0,!=2.1.0, installed: 5.4.4]
      - six [required: >=1.10.0, installed: 1.14.0]
  - click [required: ==6.6, installed: 6.6]
  - cmakelint [required: ~=1.3, installed: 1.4.1]
  - coala [required: >=0.12.0.dev20170828055500, installed: 0.12.0.dev20180101025653]
    - appdirs [required: ~=1.4, installed: 1.4.3]
    - coala-utils [required: ~=0.6.2, installed: 0.6.7]
      - appdirs [required: ==1.4.*, installed: 1.4.3]
      - pyprint [required: ==0.2.*, installed: 0.2.6]
        - colorama [required: ~=0.3.7, installed: 0.3.9]
        - termcolor [required: ~=1.1.0, installed: 1.1.0]
    - colorlog [required: ~=2.7, installed: 2.10.0]
    - dependency-management [required: ~=0.4.0, installed: 0.4.0]
      - coala-utils [required: ~=0.6, installed: 0.6.7]
        - appdirs [required: ==1.4.*, installed: 1.4.3]
        - pyprint [required: ==0.2.*, installed: 0.2.6]
          - colorama [required: ~=0.3.7, installed: 0.3.9]
          - termcolor [required: ~=1.1.0, installed: 1.1.0]
      - sarge [required: ~=0.1.4, installed: 0.1.5.post0]
    - libclang-py3 [required: ~=3.4.0, installed: 3.4.0]
    - packaging [required: ~=16.8, installed: 16.8]
      - pyparsing [required: Any, installed: 2.4.6]
      - six [required: Any, installed: 1.14.0]
    - Pygments [required: ~=2.1, installed: 2.5.2]
    - PyPrint [required: ~=0.2.6, installed: 0.2.6]
      - colorama [required: ~=0.3.7, installed: 0.3.9]
      - termcolor [required: ~=1.1.0, installed: 1.1.0]
    - requests [required: ~=2.12, installed: 2.22.0]
      - certifi [required: >=2017.4.17, installed: 2019.11.28]
      - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
      - idna [required: >=2.5,<2.9, installed: 2.8]
      - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.7]
    - setuptools [required: >=19.0, installed: 45.0.0]
    - testfixtures [required: ~=4.14.3, installed: 4.14.3]
    - unidiff [required: ~=0.5.2, installed: 0.5.5]
  - cppclean [required: ~=0.12.0, installed: 0.12]
  - cpplint [required: ~=1.3, installed: 1.4.5]
  - dennis [required: ~=0.8, installed: 0.9]
    - click [required: >=6, installed: 6.6]
    - polib [required: >=1.0.8, installed: 1.1.0]
  - docutils-ast-writer [required: ~=0.1.2, installed: 0.1.2]
    - docutils [required: >=0.12, installed: 0.16]
  - eradicate [required: ~=0.1.6, installed: 0.1.6]
  - guess-language-spirit [required: ~=0.5.2, installed: 0.5.3]
  - html-linter [required: ~=0.3.0, installed: 0.3.0]
    - docopt [required: >=0.6.1, installed: 0.6.2]
    - template-remover [required: Any, installed: 0.1.9]
      - docopt [required: >=0.6.1, installed: 0.6.2]
  - HTTPolice [required: ~=0.5.2, installed: 0.5.2]
    - bitstring [required: >=3.1.4, installed: 3.1.6]
    - brotlipy [required: >=0.5.1, installed: 0.7.0]
      - cffi [required: >=1.0.0, installed: 1.13.2]
        - pycparser [required: Any, installed: 2.19]
    - defusedxml [required: >=0.5.0, installed: 0.6.0]
    - dominate [required: >=2.2.0, installed: 2.4.0]
    - lxml [required: >=3.6.0, installed: 4.4.2]
    - singledispatch [required: >=3.4.0.3, installed: 3.4.0.3]
      - six [required: Any, installed: 1.14.0]
    - six [required: >=1.10.0, installed: 1.14.0]
  - isort [required: ~=4.2, installed: 4.3.21]
  - memento-client [required: ~=0.6.1, installed: 0.6.1]
    - requests [required: >=2.7.0, installed: 2.22.0]
      - certifi [required: >=2017.4.17, installed: 2019.11.28]
      - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
      - idna [required: >=2.5,<2.9, installed: 2.8]
      - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.7]
  - munkres3 [required: ~=1.0, installed: 1.0.5.5]
  - mypy-lang [required: ~=0.4.6, installed: 0.4.6]
  - nbformat [required: ~=4.1, installed: 4.4.0]
    - ipython-genutils [required: Any, installed: 0.2.0]
    - jsonschema [required: >=2.4,!=2.5.0, installed: 3.2.0]
      - attrs [required: >=17.4.0, installed: 19.3.0]
      - importlib-metadata [required: Any, installed: 1.4.0]
        - zipp [required: >=0.5, installed: 1.0.0]
          - more-itertools [required: Any, installed: 8.1.0]
      - pyrsistent [required: >=0.14.0, installed: 0.15.7]
        - six [required: Any, installed: 1.14.0]
      - setuptools [required: Any, installed: 45.0.0]
      - six [required: >=1.11.0, installed: 1.14.0]
    - jupyter-core [required: Any, installed: 4.6.1]
      - traitlets [required: Any, installed: 4.3.3]
        - decorator [required: Any, installed: 4.4.1]
        - ipython-genutils [required: Any, installed: 0.2.0]
        - six [required: Any, installed: 1.14.0]
    - traitlets [required: >=4.1, installed: 4.3.3]
      - decorator [required: Any, installed: 4.4.1]
      - ipython-genutils [required: Any, installed: 0.2.0]
      - six [required: Any, installed: 1.14.0]
  - nltk [required: ~=3.2, installed: 3.4.5]
    - six [required: Any, installed: 1.14.0]
  - proselint [required: ~=0.7.0, installed: 0.7.0]
    - click [required: Any, installed: 6.6]
    - future [required: Any, installed: 0.18.2]
    - six [required: Any, installed: 1.14.0]
  - pycodestyle [required: ~=2.2, installed: 2.5.0]
  - pydocstyle [required: ~=2.0, installed: 2.1.1]
    - six [required: Any, installed: 1.14.0]
    - snowballstemmer [required: Any, installed: 2.0.0]
  - pyflakes [required: ~=1.5.0, installed: 1.5.0]
  - pylint [required: ~=1.6, installed: 1.9.5]
    - astroid [required: >=1.6,<2.0, installed: 1.6.6]
      - lazy-object-proxy [required: Any, installed: 1.4.3]
      - six [required: Any, installed: 1.14.0]
      - wrapt [required: Any, installed: 1.11.2]
    - isort [required: >=4.2.5, installed: 4.3.21]
    - mccabe [required: Any, installed: 0.6.1]
    - six [required: Any, installed: 1.14.0]
  - pyroma [required: ~=2.2.0, installed: 2.2]
    - docutils [required: Any, installed: 0.16]
    - setuptools [required: Any, installed: 45.0.0]
  - pyyaml [required: ~=3.12, installed: 3.13]
  - radon [required: ==1.4.0, installed: 1.4.0]
    - colorama [required: >=0.3,<0.4, installed: 0.3.9]
    - mando [required: >=0.3,<0.4, installed: 0.3.3]
  - restructuredtext-lint [required: ~=1.0.0, installed: 1.0.1]
    - docutils [required: >=0.11,<1.0, installed: 0.16]
  - rstcheck [required: ~=3.1, installed: 3.3.1]
    - docutils [required: >=0.7, installed: 0.16]
  - safety [required: ~=0.5.1, installed: 0.5.1]
    - Click [required: >=6.0, installed: 6.6]
    - packaging [required: Any, installed: 16.8]
      - pyparsing [required: Any, installed: 2.4.6]
      - six [required: Any, installed: 1.14.0]
    - requests [required: Any, installed: 2.22.0]
      - certifi [required: >=2017.4.17, installed: 2019.11.28]
      - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
      - idna [required: >=2.5,<2.9, installed: 2.8]
      - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.7]
  - scspell3k [required: ~=2.0, installed: 2.2]
  - vim-vint [required: ~=0.3.12, installed: 0.3.21]
    - ansicolor [required: >=0.2.4, installed: 0.2.6]
    - chardet [required: >=2.3.0, installed: 3.0.4]
    - PyYAML [required: >=3.11, installed: 3.13]
  - vulture [required: ~=0.25.0, installed: 0.25]
  - yamllint [required: ~=1.6.1, installed: 1.6.1]
    - pyyaml [required: Any, installed: 3.13]
  - yapf [required: ~=0.16.0, installed: 0.16.3]
faust==1.10.0
  - aiohttp [required: >=3.5.2,<4.0, installed: 3.6.2]
    - async-timeout [required: >=3.0,<4.0, installed: 3.0.1]
    - attrs [required: >=17.3.0, installed: 19.3.0]
    - chardet [required: >=2.0,<4.0, installed: 3.0.4]
    - idna-ssl [required: >=1.0, installed: 1.1.0]
      - idna [required: >=2.0, installed: 2.8]
    - multidict [required: >=4.5,<5.0, installed: 4.7.4]
    - typing-extensions [required: >=3.6.5, installed: 3.7.4.1]
    - yarl [required: >=1.0,<2.0, installed: 1.4.2]
      - idna [required: >=2.0, installed: 2.8]
      - multidict [required: >=4.0, installed: 4.7.4]
  - aiohttp-cors [required: >=0.7,<2.0, installed: 0.7.0]
    - aiohttp [required: >=1.1, installed: 3.6.2]
      - async-timeout [required: >=3.0,<4.0, installed: 3.0.1]
      - attrs [required: >=17.3.0, installed: 19.3.0]
      - chardet [required: >=2.0,<4.0, installed: 3.0.4]
      - idna-ssl [required: >=1.0, installed: 1.1.0]
        - idna [required: >=2.0, installed: 2.8]
      - multidict [required: >=4.5,<5.0, installed: 4.7.4]
      - typing-extensions [required: >=3.6.5, installed: 3.7.4.1]
      - yarl [required: >=1.0,<2.0, installed: 1.4.2]
        - idna [required: >=2.0, installed: 2.8]
        - multidict [required: >=4.0, installed: 4.7.4]
  - click [required: >=6.7,<8.0, installed: 6.6]
  - colorclass [required: >=2.2,<3.0, installed: 2.2.0]
  - croniter [required: >=0.3.16, installed: 0.3.31]
    - python-dateutil [required: Any, installed: 2.8.1]
      - six [required: >=1.5, installed: 1.14.0]
  - mode [required: >=4.1.9,<4.2, installed: 4.1.9]
    - aiocontextvars [required: >=0.2, installed: 0.2.2]
      - contextvars [required: ==2.4, installed: 2.4]
        - immutables [required: >=0.9, installed: 0.11]
    - colorlog [required: >=2.9.0, installed: 2.10.0]
    - mypy-extensions [required: Any, installed: 0.4.3]
    - typing-extensions [required: Any, installed: 3.7.4.1]
  - mypy-extensions [required: Any, installed: 0.4.3]
  - opentracing [required: >=1.3.0,<2.0.0, installed: 1.3.0]
  - robinhood-aiokafka [required: >=1.1.3,<1.2, installed: 1.1.3]
    - kafka-python [required: >=1.4.6,<1.5, installed: 1.4.7]
  - terminaltables [required: >=3.1,<4.0, installed: 3.1.0]
  - venusian [required: >=1.1,<2.0, installed: 1.2.0]
  - yarl [required: >=1.0,<2.0, installed: 1.4.2]
    - idna [required: >=2.0, installed: 2.8]
    - multidict [required: >=4.0, installed: 4.7.4]
pytest-cov==2.8.1
  - coverage [required: >=4.4, installed: 5.0.3]
  - pytest [required: >=3.6, installed: 5.3.3]
    - attrs [required: >=17.4.0, installed: 19.3.0]
    - importlib-metadata [required: >=0.12, installed: 1.4.0]
      - zipp [required: >=0.5, installed: 1.0.0]
        - more-itertools [required: Any, installed: 8.1.0]
    - more-itertools [required: >=4.0.0, installed: 8.1.0]
    - packaging [required: Any, installed: 16.8]
      - pyparsing [required: Any, installed: 2.4.6]
      - six [required: Any, installed: 1.14.0]
    - pluggy [required: >=0.12,<1.0, installed: 0.13.1]
      - importlib-metadata [required: >=0.12, installed: 1.4.0]
        - zipp [required: >=0.5, installed: 1.0.0]
          - more-itertools [required: Any, installed: 8.1.0]
    - py [required: >=1.5.0, installed: 1.8.1]
    - wcwidth [required: Any, installed: 0.1.8]
pytest-timeout==1.3.4
  - pytest [required: >=3.6.0, installed: 5.3.3]
    - attrs [required: >=17.4.0, installed: 19.3.0]
    - importlib-metadata [required: >=0.12, installed: 1.4.0]
      - zipp [required: >=0.5, installed: 1.0.0]
        - more-itertools [required: Any, installed: 8.1.0]
    - more-itertools [required: >=4.0.0, installed: 8.1.0]
    - packaging [required: Any, installed: 16.8]
      - pyparsing [required: Any, installed: 2.4.6]
      - six [required: Any, installed: 1.14.0]
    - pluggy [required: >=0.12,<1.0, installed: 0.13.1]
      - importlib-metadata [required: >=0.12, installed: 1.4.0]
        - zipp [required: >=0.5, installed: 1.0.0]
          - more-itertools [required: Any, installed: 8.1.0]
    - py [required: >=1.5.0, installed: 1.8.1]
    - wcwidth [required: Any, installed: 0.1.8]
thoth-common==0.9.28
  - argo-workflows [required: Any, installed: 2.1.4]
    - kubernetes [required: ~=10.0, installed: 10.0.1]
      - certifi [required: >=14.05.14, installed: 2019.11.28]
      - google-auth [required: >=1.0.1, installed: 1.10.1]
        - cachetools [required: >=2.0.0,<5.0, installed: 4.0.0]
        - pyasn1-modules [required: >=0.2.1, installed: 0.2.8]
          - pyasn1 [required: >=0.4.6,<0.5.0, installed: 0.4.8]
        - rsa [required: >=3.1.4,<4.1, installed: 4.0]
          - pyasn1 [required: >=0.1.3, installed: 0.4.8]
        - setuptools [required: >=40.3.0, installed: 45.0.0]
        - six [required: >=1.9.0, installed: 1.14.0]
      - python-dateutil [required: >=2.5.3, installed: 2.8.1]
        - six [required: >=1.5, installed: 1.14.0]
      - pyyaml [required: >=3.12, installed: 3.13]
      - requests [required: Any, installed: 2.22.0]
        - certifi [required: >=2017.4.17, installed: 2019.11.28]
        - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
        - idna [required: >=2.5,<2.9, installed: 2.8]
        - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.7]
      - requests-oauthlib [required: Any, installed: 1.3.0]
        - oauthlib [required: >=3.0.0, installed: 3.1.0]
        - requests [required: >=2.0.0, installed: 2.22.0]
          - certifi [required: >=2017.4.17, installed: 2019.11.28]
          - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
          - idna [required: >=2.5,<2.9, installed: 2.8]
          - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.7]
      - setuptools [required: >=21.0.0, installed: 45.0.0]
      - six [required: >=1.9.0, installed: 1.14.0]
      - urllib3 [required: >=1.24.2, installed: 1.25.7]
      - websocket-client [required: >=0.32.0,!=0.42.*,!=0.41.*,!=0.40.0, installed: 0.57.0]
        - six [required: Any, installed: 1.14.0]
    - mock [required: Any, installed: 3.0.5]
      - six [required: Any, installed: 1.14.0]
  - attrdict [required: Any, installed: 2.0.1]
    - six [required: Any, installed: 1.14.0]
  - attrs [required: Any, installed: 19.3.0]
  - daiquiri [required: Any, installed: 2.0.0]
    - python-json-logger [required: Any, installed: 0.1.11]
  - openshift [required: Any, installed: 0.10.1]
    - dictdiffer [required: Any, installed: 0.8.1]
    - jinja2 [required: Any, installed: 2.10.3]
      - MarkupSafe [required: >=0.23, installed: 1.1.1]
    - kubernetes [required: ~=10.0.1, installed: 10.0.1]
      - certifi [required: >=14.05.14, installed: 2019.11.28]
      - google-auth [required: >=1.0.1, installed: 1.10.1]
        - cachetools [required: >=2.0.0,<5.0, installed: 4.0.0]
        - pyasn1-modules [required: >=0.2.1, installed: 0.2.8]
          - pyasn1 [required: >=0.4.6,<0.5.0, installed: 0.4.8]
        - rsa [required: >=3.1.4,<4.1, installed: 4.0]
          - pyasn1 [required: >=0.1.3, installed: 0.4.8]
        - setuptools [required: >=40.3.0, installed: 45.0.0]
        - six [required: >=1.9.0, installed: 1.14.0]
      - python-dateutil [required: >=2.5.3, installed: 2.8.1]
        - six [required: >=1.5, installed: 1.14.0]
      - pyyaml [required: >=3.12, installed: 3.13]
      - requests [required: Any, installed: 2.22.0]
        - certifi [required: >=2017.4.17, installed: 2019.11.28]
        - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
        - idna [required: >=2.5,<2.9, installed: 2.8]
        - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.7]
      - requests-oauthlib [required: Any, installed: 1.3.0]
        - oauthlib [required: >=3.0.0, installed: 3.1.0]
        - requests [required: >=2.0.0, installed: 2.22.0]
          - certifi [required: >=2017.4.17, installed: 2019.11.28]
          - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
          - idna [required: >=2.5,<2.9, installed: 2.8]
          - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.7]
      - setuptools [required: >=21.0.0, installed: 45.0.0]
      - six [required: >=1.9.0, installed: 1.14.0]
      - urllib3 [required: >=1.24.2, installed: 1.25.7]
      - websocket-client [required: >=0.32.0,!=0.42.*,!=0.41.*,!=0.40.0, installed: 0.57.0]
        - six [required: Any, installed: 1.14.0]
    - python-string-utils [required: Any, installed: 0.6.0]
    - ruamel.yaml [required: >=0.15, installed: 0.16.5]
      - ruamel.yaml.clib [required: >=0.1.2, installed: 0.2.0]
    - six [required: Any, installed: 1.14.0]
  - pyyaml [required: Any, installed: 3.13]
  - requests [required: Any, installed: 2.22.0]
    - certifi [required: >=2017.4.17, installed: 2019.11.28]
    - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
    - idna [required: >=2.5,<2.9, installed: 2.8]
    - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.7]
  - rfc5424-logging-handler [required: Any, installed: 1.4.3]
    - pytz [required: Any, installed: 2019.3]
    - tzlocal [required: Any, installed: 2.0.0]
      - pytz [required: Any, installed: 2019.3]
  - sentry-sdk [required: Any, installed: 0.14.0]
    - certifi [required: Any, installed: 2019.11.28]
    - urllib3 [required: >=1.10.0, installed: 1.25.7]

Notes

For more information, see Pipfile and Pipfile.lock.

Once this issue is resolved, the issue will be automatically closed by bot.

Failed to update dependencies to their latest version

Automatic dependency update failed for the current master with SHA 3dbcc71.

The automatic dependency management cannot continue. Please fix errors reported bellow.

Command
  $ pipenv update --dev
Standard output
Running $ pipenv lock then $ pipenv sync.

Standard error
Creating a virtualenv for this project…
Pipfile: /tmp/tmp281zapgz/Pipfile
Using /home/user/.local/share/virtualenvs/user-5PivF_Od/bin/python (3.6.8) to create virtualenv…
Already using interpreter /home/user/.local/share/virtualenvs/user-5PivF_Od/bin/python
Using real prefix '/usr'
  No LICENSE.txt / LICENSE found in source
New python executable in /tmp/tmp281zapgz/.venv/bin/python
Installing setuptools, pip, wheel...
done.
Running virtualenv with interpreter /home/user/.local/share/virtualenvs/user-5PivF_Od/bin/python

Virtualenv location: /tmp/tmp281zapgz/.venv
Locking [dev-packages] dependencies…

FAIL
Traceback (most recent call last):
  File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/resolver.py", line 126, in <module>
    main()
  File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/resolver.py", line 119, in main
    parsed.requirements_dir, parsed.packages)
  File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/resolver.py", line 85, in _main
    requirements_dir=requirements_dir,
  File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/resolver.py", line 69, in resolve
    req_dir=requirements_dir
  File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/utils.py", line 726, in resolve_deps
    req_dir=req_dir,
  File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/utils.py", line 480, in actually_resolve_deps
    resolved_tree = resolver.resolve()
  File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/utils.py", line 385, in resolve
    results = self.resolver.resolve(max_rounds=environments.PIPENV_MAX_ROUNDS)
  File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/patched/piptools/resolver.py", line 102, in resolve
    has_changed, best_matches = self._resolve_one_round()
  File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/patched/piptools/resolver.py", line 206, in _resolve_one_round
    for dep in self._iter_dependencies(best_match):
  File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/patched/piptools/resolver.py", line 301, in _iter_dependencies
    dependencies = self.repository.get_dependencies(ireq)
  File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/patched/piptools/repositories/pypi.py", line 234, in get_dependencies
    legacy_results = self.get_legacy_dependencies(ireq)
  File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/patched/piptools/repositories/pypi.py", line 419, in get_legacy_dependencies
    os.makedirs(download_dir)
  File "/tmp/tmp281zapgz/.venv/lib64/python3.6/os.py", line 220, in makedirs
    mkdir(name, mode)
PermissionError: [Errno 13] Permission denied: '/home/user/.cache/pipenv/pkgs'
File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/resolver.py", line 126, in <module>
    main()
  File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/resolver.py", line 119, in main
    parsed.requirements_dir, parsed.packages)
  File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/resolver.py", line 85, in _main
    requirements_dir=requirements_dir,
  File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/resolver.py", line 69, in resolve
    req_dir=requirements_dir
  File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/utils.py", line 726, in resolve_deps
    req_dir=req_dir,
  File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/utils.py", line 480, in actually_resolve_deps
    resolved_tree = resolver.resolve()
  File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/utils.py", line 385, in resolve
    results = self.resolver.resolve(max_rounds=environments.PIPENV_MAX_ROUNDS)
  File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/patched/piptools/resolver.py", line 102, in resolve
    has_changed, best_matches = self._resolve_one_round()
  File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/patched/piptools/resolver.py", line 206, in _resolve_one_round
    for dep in self._iter_dependencies(best_match):
  File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/patched/piptools/resolver.py", line 301, in _iter_dependencies
    dependencies = self.repository.get_dependencies(ireq)
  File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/patched/piptools/repositories/pypi.py", line 234, in get_dependencies
    legacy_results = self.get_legacy_dependencies(ireq)
  File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/patched/piptools/repositories/pypi.py", line 419, in get_legacy_dependencies
    os.makedirs(download_dir)
  File "/tmp/tmp281zapgz/.venv/lib64/python3.6/os.py", line 220, in makedirs
    mkdir(name, mode)
PermissionError: [Errno 13] Permission denied: '/home/user/.cache/pipenv/pkgs'

['Traceback (most recent call last):\n', '  File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/utils.py", line 501, in create_spinner\n    yield sp\n', '  File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/utils.py", line 649, in venv_resolve_deps\n    c = resolve(cmd, sp)\n', '  File "/home/user/.local/share/virtualenvs/user-5PivF_Od/lib/python3.6/site-packages/pipenv/utils.py", line 539, in resolve\n    sys.exit(c.return_code)\n', 'SystemExit: 1\n']

Environment details

Kebechet version: 1.0.0
Python version: 3.6.8
Platform: Linux-3.10.0-957.21.2.el7.x86_64-x86_64-with-redhat-8.0-Ootpa
pipenv version: pipenv, version 2018.11.26


Dependency graph
black==19.3b0
  - appdirs [required: Any, installed: 1.4.3]
  - attrs [required: >=18.1.0, installed: 19.3.0]
  - click [required: >=6.5, installed: 7.0]
  - toml [required: >=0.9.4, installed: 0.10.0]
coala-bears==0.11.1
  - autoflake [required: ~=0.6.6, installed: 0.6.6]
    - pyflakes [required: >=0.8.1, installed: 1.4.0]
  - autopep8 [required: ~=1.2, installed: 1.4.4]
    - pycodestyle [required: >=2.4.0, installed: 2.5.0]
  - bandit [required: ~=1.2, installed: 1.6.2]
    - GitPython [required: >=1.0.1, installed: 3.0.3]
      - gitdb2 [required: >=2.0.0, installed: 2.0.6]
        - smmap2 [required: >=2.0.0, installed: 2.0.5]
    - PyYAML [required: >=3.13, installed: 5.1.2]
    - six [required: >=1.10.0, installed: 1.12.0]
    - stevedore [required: >=1.20.0, installed: 1.31.0]
      - pbr [required: >=2.0.0,!=2.1.0, installed: 5.4.3]
      - six [required: >=1.10.0, installed: 1.12.0]
  - click [required: ==6.6, installed: 7.0]
  - cmakelint [required: ~=1.3, installed: 1.4.1]
  - coala [required: ~=0.11.0, installed: 0.11.0]
    - appdirs [required: ~=1.4, installed: 1.4.3]
    - coala-utils [required: ~=0.6.2, installed: 0.6.7]
      - appdirs [required: ==1.4.*, installed: 1.4.3]
      - pyprint [required: ==0.2.*, installed: 0.2.6]
        - colorama [required: ~=0.3.7, installed: 0.3.9]
        - termcolor [required: ~=1.1.0, installed: 1.1.0]
    - colorlog [required: ~=2.7, installed: 4.0.2]
    - dependency-management [required: ~=0.4.0, installed: 0.4.0]
      - coala-utils [required: ~=0.6, installed: 0.6.7]
        - appdirs [required: ==1.4.*, installed: 1.4.3]
        - pyprint [required: ==0.2.*, installed: 0.2.6]
          - colorama [required: ~=0.3.7, installed: 0.3.9]
          - termcolor [required: ~=1.1.0, installed: 1.1.0]
      - sarge [required: ~=0.1.4, installed: 0.1.5.post0]
    - libclang-py3 [required: ~=3.4.0, installed: 3.4.0]
    - Pygments [required: ~=2.1, installed: 2.4.2]
    - PyPrint [required: ~=0.2.6, installed: 0.2.6]
      - colorama [required: ~=0.3.7, installed: 0.3.9]
      - termcolor [required: ~=1.1.0, installed: 1.1.0]
    - requests [required: ~=2.12, installed: 2.22.0]
      - certifi [required: >=2017.4.17, installed: 2019.9.11]
      - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
      - idna [required: >=2.5,<2.9, installed: 2.8]
      - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.6]
    - setuptools [required: >=17.0, installed: 41.4.0]
    - unidiff [required: ~=0.5.2, installed: 0.5.5]
  - cppclean [required: ~=0.12.0, installed: 0.12]
  - cpplint [required: ~=1.3, installed: 1.4.4]
  - dennis [required: ~=0.8, installed: 0.9]
    - click [required: >=6, installed: 7.0]
    - polib [required: >=1.0.8, installed: 1.1.0]
  - eradicate [required: ~=0.1.6, installed: 0.1.6]
  - guess-language-spirit [required: ~=0.5.2, installed: 0.5.3]
  - html-linter [required: ~=0.3.0, installed: 0.3.0]
    - docopt [required: >=0.6.1, installed: 0.6.2]
    - template-remover [required: Any, installed: 0.1.9]
      - docopt [required: >=0.6.1, installed: 0.6.2]
  - isort [required: ~=4.2, installed: 4.3.21]
  - munkres3 [required: ~=1.0, installed: 1.0.5.5]
  - mypy-lang [required: ~=0.4.6, installed: 0.4.6]
  - nbformat [required: ~=4.1, installed: 4.4.0]
    - ipython-genutils [required: Any, installed: 0.2.0]
    - jsonschema [required: >=2.4,!=2.5.0, installed: 3.1.1]
      - attrs [required: >=17.4.0, installed: 19.3.0]
      - importlib-metadata [required: Any, installed: 0.23]
        - zipp [required: >=0.5, installed: 0.6.0]
          - more-itertools [required: Any, installed: 7.2.0]
      - pyrsistent [required: >=0.14.0, installed: 0.15.4]
        - six [required: Any, installed: 1.12.0]
      - setuptools [required: Any, installed: 41.4.0]
      - six [required: >=1.11.0, installed: 1.12.0]
    - jupyter-core [required: Any, installed: 4.6.0]
      - traitlets [required: Any, installed: 4.3.3]
        - decorator [required: Any, installed: 4.4.0]
        - ipython-genutils [required: Any, installed: 0.2.0]
        - six [required: Any, installed: 1.12.0]
    - traitlets [required: >=4.1, installed: 4.3.3]
      - decorator [required: Any, installed: 4.4.0]
      - ipython-genutils [required: Any, installed: 0.2.0]
      - six [required: Any, installed: 1.12.0]
  - nltk [required: ~=3.2, installed: 3.4.5]
    - six [required: Any, installed: 1.12.0]
  - proselint [required: ~=0.7.0, installed: 0.7.0]
    - click [required: Any, installed: 7.0]
    - future [required: Any, installed: 0.18.1]
    - six [required: Any, installed: 1.12.0]
  - pycodestyle [required: ~=2.2, installed: 2.5.0]
  - pydocstyle [required: ~=1.1, installed: 1.1.1]
  - pyflakes [required: ~=1.4.0, installed: 1.4.0]
  - pylint [required: ~=1.6, installed: 2.4.3]
    - astroid [required: >=2.3.0,<2.4, installed: 2.3.2]
      - lazy-object-proxy [required: ==1.4.*, installed: 1.4.2]
      - six [required: ==1.12, installed: 1.12.0]
      - typed-ast [required: >=1.4.0,<1.5, installed: 1.4.0]
      - wrapt [required: ==1.11.*, installed: 1.11.2]
    - isort [required: >=4.2.5,<5, installed: 4.3.21]
    - mccabe [required: >=0.6,<0.7, installed: 0.6.1]
  - pyroma [required: ~=2.2.0, installed: 2.2]
    - docutils [required: Any, installed: 0.15.2]
    - setuptools [required: Any, installed: 41.4.0]
  - pyyaml [required: ~=3.12, installed: 5.1.2]
  - radon [required: ==1.4.0, installed: 1.4.0]
    - colorama [required: >=0.3,<0.4, installed: 0.3.9]
    - mando [required: >=0.3,<0.4, installed: 0.3.3]
  - restructuredtext-lint [required: ~=1.0.0, installed: 1.0.1]
    - docutils [required: >=0.11,<1.0, installed: 0.15.2]
  - rstcheck [required: ~=2.2, installed: 2.2]
    - docutils [required: Any, installed: 0.15.2]
    - sphinx [required: >=1.3,<1.5, installed: 1.4.9]
      - alabaster [required: >=0.7,<0.8, installed: 0.7.12]
      - babel [required: >=1.3,!=2.0, installed: 2.7.0]
        - pytz [required: >=2015.7, installed: 2019.3]
      - docutils [required: >=0.11, installed: 0.15.2]
      - imagesize [required: Any, installed: 1.1.0]
      - Jinja2 [required: >=2.3, installed: 2.10.3]
        - MarkupSafe [required: >=0.23, installed: 1.1.1]
      - Pygments [required: >=2.0, installed: 2.4.2]
      - six [required: >=1.5, installed: 1.12.0]
      - snowballstemmer [required: >=1.1, installed: 2.0.0]
  - safety [required: ~=0.5.1, installed: 0.5.1]
    - Click [required: >=6.0, installed: 7.0]
    - packaging [required: Any, installed: 19.2]
      - pyparsing [required: >=2.0.2, installed: 2.4.2]
      - six [required: Any, installed: 1.12.0]
    - requests [required: Any, installed: 2.22.0]
      - certifi [required: >=2017.4.17, installed: 2019.9.11]
      - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
      - idna [required: >=2.5,<2.9, installed: 2.8]
      - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.6]
  - scspell3k [required: ~=2.0, installed: 2.2]
  - vulture [required: ~=0.10.0, installed: 0.10]
  - yamllint [required: ~=1.6.1, installed: 1.6.1]
    - pyyaml [required: Any, installed: 5.1.2]
  - yapf [required: ~=0.14.0, installed: 0.14.0]
faust==1.8.1
  - aiohttp [required: >=3.5.2,<4.0, installed: 3.6.2]
    - async-timeout [required: >=3.0,<4.0, installed: 3.0.1]
    - attrs [required: >=17.3.0, installed: 19.3.0]
    - chardet [required: >=2.0,<4.0, installed: 3.0.4]
    - idna-ssl [required: >=1.0, installed: 1.1.0]
      - idna [required: >=2.0, installed: 2.8]
    - multidict [required: >=4.5,<5.0, installed: 4.5.2]
    - typing-extensions [required: >=3.6.5, installed: 3.7.4]
    - yarl [required: >=1.0,<2.0, installed: 1.3.0]
      - idna [required: >=2.0, installed: 2.8]
      - multidict [required: >=4.0, installed: 4.5.2]
  - aiohttp-cors [required: >=0.7,<2.0, installed: 0.7.0]
    - aiohttp [required: >=1.1, installed: 3.6.2]
      - async-timeout [required: >=3.0,<4.0, installed: 3.0.1]
      - attrs [required: >=17.3.0, installed: 19.3.0]
      - chardet [required: >=2.0,<4.0, installed: 3.0.4]
      - idna-ssl [required: >=1.0, installed: 1.1.0]
        - idna [required: >=2.0, installed: 2.8]
      - multidict [required: >=4.5,<5.0, installed: 4.5.2]
      - typing-extensions [required: >=3.6.5, installed: 3.7.4]
      - yarl [required: >=1.0,<2.0, installed: 1.3.0]
        - idna [required: >=2.0, installed: 2.8]
        - multidict [required: >=4.0, installed: 4.5.2]
  - click [required: >=6.7,<8.0, installed: 7.0]
  - colorclass [required: >=2.2,<3.0, installed: 2.2.0]
  - croniter [required: >=0.3.16, installed: 0.3.30]
    - python-dateutil [required: Any, installed: 2.8.0]
      - six [required: >=1.5, installed: 1.12.0]
  - mode [required: >=4.1.2,<4.2, installed: 4.1.2]
    - aiocontextvars [required: >=0.2, installed: 0.2.2]
      - contextvars [required: ==2.4, installed: 2.4]
        - immutables [required: >=0.9, installed: 0.11]
    - colorlog [required: >=2.9.0, installed: 4.0.2]
    - mypy-extensions [required: Any, installed: 0.4.3]
  - mypy-extensions [required: Any, installed: 0.4.3]
  - opentracing [required: >=1.3.0,<2.0.0, installed: 1.3.0]
  - robinhood-aiokafka [required: >=1.0.3,<1.1, installed: 1.0.4]
    - kafka-python [required: >=1.4.4,<1.5, installed: 1.4.7]
  - terminaltables [required: >=3.1,<4.0, installed: 3.1.0]
  - venusian [required: >=1.1,<2.0, installed: 1.2.0]
  - yarl [required: >=1.0,<2.0, installed: 1.3.0]
    - idna [required: >=2.0, installed: 2.8]
    - multidict [required: >=4.0, installed: 4.5.2]
pytest-cov==2.8.1
  - coverage [required: >=4.4, installed: 4.5.4]
  - pytest [required: >=3.6, installed: 5.2.1]
    - atomicwrites [required: >=1.0, installed: 1.3.0]
    - attrs [required: >=17.4.0, installed: 19.3.0]
    - importlib-metadata [required: >=0.12, installed: 0.23]
      - zipp [required: >=0.5, installed: 0.6.0]
        - more-itertools [required: Any, installed: 7.2.0]
    - more-itertools [required: >=4.0.0, installed: 7.2.0]
    - packaging [required: Any, installed: 19.2]
      - pyparsing [required: >=2.0.2, installed: 2.4.2]
      - six [required: Any, installed: 1.12.0]
    - pluggy [required: >=0.12,<1.0, installed: 0.13.0]
      - importlib-metadata [required: >=0.12, installed: 0.23]
        - zipp [required: >=0.5, installed: 0.6.0]
          - more-itertools [required: Any, installed: 7.2.0]
    - py [required: >=1.5.0, installed: 1.8.0]
    - wcwidth [required: Any, installed: 0.1.7]
pytest-timeout==1.3.3
  - pytest [required: >=3.6.0, installed: 5.2.1]
    - atomicwrites [required: >=1.0, installed: 1.3.0]
    - attrs [required: >=17.4.0, installed: 19.3.0]
    - importlib-metadata [required: >=0.12, installed: 0.23]
      - zipp [required: >=0.5, installed: 0.6.0]
        - more-itertools [required: Any, installed: 7.2.0]
    - more-itertools [required: >=4.0.0, installed: 7.2.0]
    - packaging [required: Any, installed: 19.2]
      - pyparsing [required: >=2.0.2, installed: 2.4.2]
      - six [required: Any, installed: 1.12.0]
    - pluggy [required: >=0.12,<1.0, installed: 0.13.0]
      - importlib-metadata [required: >=0.12, installed: 0.23]
        - zipp [required: >=0.5, installed: 0.6.0]
          - more-itertools [required: Any, installed: 7.2.0]
    - py [required: >=1.5.0, installed: 1.8.0]
    - wcwidth [required: Any, installed: 0.1.7]
thoth-common==0.9.14
  - attrs [required: Any, installed: 19.3.0]
  - daiquiri [required: Any, installed: 1.6.0]
  - openshift [required: ==0.8.0, installed: 0.8.0]
    - dictdiffer [required: Any, installed: 0.8.0]
    - jinja2 [required: Any, installed: 2.10.3]
      - MarkupSafe [required: >=0.23, installed: 1.1.1]
    - kubernetes [required: >=8.0.0,<9.0.0, installed: 8.0.2]
      - adal [required: >=1.0.2, installed: 1.2.2]
        - cryptography [required: >=1.1.0, installed: 2.8]
          - cffi [required: >=1.8,!=1.11.3, installed: 1.13.0]
            - pycparser [required: Any, installed: 2.19]
          - six [required: >=1.4.1, installed: 1.12.0]
        - PyJWT [required: >=1.0.0, installed: 1.7.1]
        - python-dateutil [required: >=2.1.0, installed: 2.8.0]
          - six [required: >=1.5, installed: 1.12.0]
        - requests [required: >=2.0.0, installed: 2.22.0]
          - certifi [required: >=2017.4.17, installed: 2019.9.11]
          - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
          - idna [required: >=2.5,<2.9, installed: 2.8]
          - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.6]
      - certifi [required: >=14.05.14, installed: 2019.9.11]
      - google-auth [required: >=1.0.1, installed: 1.6.3]
        - cachetools [required: >=2.0.0, installed: 3.1.1]
        - pyasn1-modules [required: >=0.2.1, installed: 0.2.7]
          - pyasn1 [required: >=0.4.6,<0.5.0, installed: 0.4.7]
        - rsa [required: >=3.1.4, installed: 4.0]
          - pyasn1 [required: >=0.1.3, installed: 0.4.7]
        - six [required: >=1.9.0, installed: 1.12.0]
      - python-dateutil [required: >=2.5.3, installed: 2.8.0]
        - six [required: >=1.5, installed: 1.12.0]
      - pyyaml [required: >=3.12, installed: 5.1.2]
      - requests [required: Any, installed: 2.22.0]
        - certifi [required: >=2017.4.17, installed: 2019.9.11]
        - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
        - idna [required: >=2.5,<2.9, installed: 2.8]
        - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.6]
      - requests-oauthlib [required: Any, installed: 1.2.0]
        - oauthlib [required: >=3.0.0, installed: 3.1.0]
        - requests [required: >=2.0.0, installed: 2.22.0]
          - certifi [required: >=2017.4.17, installed: 2019.9.11]
          - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
          - idna [required: >=2.5,<2.9, installed: 2.8]
          - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.6]
      - setuptools [required: >=21.0.0, installed: 41.4.0]
      - six [required: >=1.9.0, installed: 1.12.0]
      - urllib3 [required: >=1.24.2, installed: 1.25.6]
      - websocket-client [required: >=0.32.0,!=0.42.*,!=0.41.*,!=0.40.0, installed: 0.56.0]
        - six [required: Any, installed: 1.12.0]
    - python-string-utils [required: Any, installed: 0.6.0]
    - ruamel.yaml [required: >=0.15, installed: 0.16.5]
      - ruamel.yaml.clib [required: >=0.1.2, installed: 0.2.0]
    - six [required: Any, installed: 1.12.0]
  - pyyaml [required: Any, installed: 5.1.2]
  - requests [required: Any, installed: 2.22.0]
    - certifi [required: >=2017.4.17, installed: 2019.9.11]
    - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
    - idna [required: >=2.5,<2.9, installed: 2.8]
    - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.6]
  - rfc5424-logging-handler [required: Any, installed: 1.4.3]
    - pytz [required: Any, installed: 2019.3]
    - tzlocal [required: Any, installed: 2.0.0]
      - pytz [required: Any, installed: 2019.3]
  - sentry-sdk [required: Any, installed: 0.13.0]
    - certifi [required: Any, installed: 2019.9.11]
    - urllib3 [required: >=1.9, installed: 1.25.6]

Notes

For more information, see Pipfile and Pipfile.lock.

Once this issue is resolved, the issue will be automatically closed by bot.

Failed to update dependencies to their latest version

Automatic dependency update failed for the current master with SHA 7a6d885.

The automatic dependency management cannot continue. Please fix errors reported bellow.

Command
  $ pipenv update --dev
Standard output
Running $ pipenv lock then $ pipenv sync.
Installing dependencies from Pipfile.lock (090e68)…
Installing initially failed dependencies…

Standard error
Creating a virtualenv for this project…
Pipfile: /tmp/tmpsf880d3_/Pipfile
Using /usr/bin/python3 (3.6.8) to create virtualenv…
Already using interpreter /usr/bin/python3
Using base prefix '/usr'
  No LICENSE.txt / LICENSE found in source
New python executable in /tmp/tmpsf880d3_/.venv/bin/python3
Also creating executable in /tmp/tmpsf880d3_/.venv/bin/python
Installing setuptools, pip, wheel...
done.

Virtualenv location: /tmp/tmpsf880d3_/.venv
Locking [dev-packages] dependencies…
Locking [packages] dependencies…
Updated Pipfile.lock (090e68)!
An error occurred while installing immutables==0.11 --hash=sha256:0aa055c745510238cbad2f1f709a37a1c9e30a38594de3b385e9876c48a25633 --hash=sha256:0f07c58122e1ce70a7165e68e18e795ac5fe94d7fee3e045ffcf6432602026df --hash=sha256:1c2e729aab250be0de0c13fa833241a778b51390ee2650e0457d1e45b318c441 --hash=sha256:2c536ff2bafeeff9a7865ea10a17a50f90b80b585e31396c349e8f57b0075bd4 --hash=sha256:2de2ec8dde1ca154f811776a8cbbeaea515c3b226c26036eab6484530eea28e0 --hash=sha256:422c7d4c75c88057c625e32992248329507bca180b48cfb702b4ef608f581b50 --hash=sha256:518f20945c1f600b618fb691922c2ab43b193f04dd2d4d2823220d0202014670 --hash=sha256:545186faab9237c102b8bcffd36d71f0b382174c93c501e061de239753cff694 --hash=sha256:6b6d8d035e5888baad3db61dfb167476838a63afccecd927c365f228bb55754c --hash=sha256:b268422a5802fbf934152b835329ac0d23b80b558eaee68034d45718edab4a11 --hash=sha256:b8fed714f1c84a3242c7184838f5e9889139a22bbdd701a182b7fdc237ca3cbb --hash=sha256:bce27277a2fe91509cca69181971ab509c2ee862e8b37b09f26b64f90e8fe8fb --hash=sha256:c7eb2d15c35c73bb168c002c6ea145b65f40131e10dede54b39db0b72849b280 --hash=sha256:d6850578a0dc6530ac19113cfe4ddc13903df635212d498f176fe601a8a5a4a3 --hash=sha256:e87bd941cb4dfa35f16e1ff4b2d99a2931452dcc9cfd788dc8fe513f3d38551e --hash=sha256:f5b93248552c9e7198558776da21c9157d3f70649905d7fdc083c2ab2fbc6088! Will try again.
[pipenv.exceptions.InstallError]:   File "/usr/local/lib/python3.6/site-packages/pipenv/core.py", line 2611, in do_sync
[pipenv.exceptions.InstallError]:       system=system,
[pipenv.exceptions.InstallError]:   File "/usr/local/lib/python3.6/site-packages/pipenv/core.py", line 1253, in do_init
[pipenv.exceptions.InstallError]:       pypi_mirror=pypi_mirror,
[pipenv.exceptions.InstallError]:   File "/usr/local/lib/python3.6/site-packages/pipenv/core.py", line 859, in do_install_dependencies
[pipenv.exceptions.InstallError]:       retry_list, procs, failed_deps_queue, requirements_dir, **install_kwargs
[pipenv.exceptions.InstallError]:   File "/usr/local/lib/python3.6/site-packages/pipenv/core.py", line 763, in batch_install
[pipenv.exceptions.InstallError]:       _cleanup_procs(procs, not blocking, failed_deps_queue, retry=retry)
[pipenv.exceptions.InstallError]:   File "/usr/local/lib/python3.6/site-packages/pipenv/core.py", line 681, in _cleanup_procs
[pipenv.exceptions.InstallError]:       raise exceptions.InstallError(c.dep.name, extra=err_lines)
[pipenv.exceptions.InstallError]: ['Looking in indexes: https://pypi.python.org/simple']
[pipenv.exceptions.InstallError]: ['ERROR: Could not find a version that satisfies the requirement immutables==0.11 (from -r /tmp/pipenv-_bcz8snu-requirements/pipenv-m5khramz-requirement.txt (line 1)) (from versions: 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 0.10)', 'ERROR: No matching distribution found for immutables==0.11 (from -r /tmp/pipenv-_bcz8snu-requirements/pipenv-m5khramz-requirement.txt (line 1))']
ERROR: ERROR: Package installation failed...

Environment details

Kebechet version: 1.0.0
Python version: 3.6.8
Platform: Linux-3.10.0-957.21.2.el7.x86_64-x86_64-with-fedora-28-Twenty_Eight
pipenv version: pipenv, version 2018.11.26


Dependency graph
black==19.3b0
  - appdirs [required: Any, installed: 1.4.3]
  - attrs [required: >=18.1.0, installed: 19.3.0]
  - click [required: >=6.5, installed: 6.6]
  - toml [required: >=0.9.4, installed: 0.10.0]
coala-bears==0.12.0.dev20171110210444
  - aenum [required: ~=2.0.8, installed: 2.0.10]
  - apertium-lint [required: ~=0.29, installed: 0.29]
  - autoflake [required: ~=0.7, installed: 0.7]
    - pyflakes [required: >=0.8.1, installed: 1.5.0]
  - autopep8 [required: ~=1.2, installed: 1.4.4]
    - pycodestyle [required: >=2.4.0, installed: 2.5.0]
  - bandit [required: ~=1.2, installed: 1.6.2]
    - GitPython [required: >=1.0.1, installed: 3.0.3]
      - gitdb2 [required: >=2.0.0, installed: 2.0.6]
        - smmap2 [required: >=2.0.0, installed: 2.0.5]
    - PyYAML [required: >=3.13, installed: 3.13]
    - six [required: >=1.10.0, installed: 1.12.0]
    - stevedore [required: >=1.20.0, installed: 1.31.0]
      - pbr [required: >=2.0.0,!=2.1.0, installed: 5.4.3]
      - six [required: >=1.10.0, installed: 1.12.0]
  - click [required: ==6.6, installed: 6.6]
  - cmakelint [required: ~=1.3, installed: 1.4.1]
  - coala [required: >=0.12.0.dev20170828055500, installed: 0.12.0.dev20180101025653]
    - appdirs [required: ~=1.4, installed: 1.4.3]
    - coala-utils [required: ~=0.6.2, installed: 0.6.7]
      - appdirs [required: ==1.4.*, installed: 1.4.3]
      - pyprint [required: ==0.2.*, installed: 0.2.6]
        - colorama [required: ~=0.3.7, installed: 0.3.9]
        - termcolor [required: ~=1.1.0, installed: 1.1.0]
    - colorlog [required: ~=2.7, installed: 2.10.0]
    - dependency-management [required: ~=0.4.0, installed: 0.4.0]
      - coala-utils [required: ~=0.6, installed: 0.6.7]
        - appdirs [required: ==1.4.*, installed: 1.4.3]
        - pyprint [required: ==0.2.*, installed: 0.2.6]
          - colorama [required: ~=0.3.7, installed: 0.3.9]
          - termcolor [required: ~=1.1.0, installed: 1.1.0]
      - sarge [required: ~=0.1.4, installed: 0.1.5.post0]
    - libclang-py3 [required: ~=3.4.0, installed: 3.4.0]
    - packaging [required: ~=16.8, installed: 16.8]
      - pyparsing [required: Any, installed: 2.4.2]
      - six [required: Any, installed: 1.12.0]
    - Pygments [required: ~=2.1, installed: 2.4.2]
    - PyPrint [required: ~=0.2.6, installed: 0.2.6]
      - colorama [required: ~=0.3.7, installed: 0.3.9]
      - termcolor [required: ~=1.1.0, installed: 1.1.0]
    - requests [required: ~=2.12, installed: 2.22.0]
      - certifi [required: >=2017.4.17, installed: 2019.9.11]
      - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
      - idna [required: >=2.5,<2.9, installed: 2.8]
      - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.6]
    - setuptools [required: >=19.0, installed: 41.4.0]
    - testfixtures [required: ~=4.14.3, installed: 4.14.3]
    - unidiff [required: ~=0.5.2, installed: 0.5.5]
  - cppclean [required: ~=0.12.0, installed: 0.12]
  - cpplint [required: ~=1.3, installed: 1.4.4]
  - dennis [required: ~=0.8, installed: 0.9]
    - click [required: >=6, installed: 6.6]
    - polib [required: >=1.0.8, installed: 1.1.0]
  - docutils-ast-writer [required: ~=0.1.2, installed: 0.1.2]
    - docutils [required: >=0.12, installed: 0.15.2]
  - eradicate [required: ~=0.1.6, installed: 0.1.6]
  - guess-language-spirit [required: ~=0.5.2, installed: 0.5.3]
  - html-linter [required: ~=0.3.0, installed: 0.3.0]
    - docopt [required: >=0.6.1, installed: 0.6.2]
    - template-remover [required: Any, installed: 0.1.9]
      - docopt [required: >=0.6.1, installed: 0.6.2]
  - HTTPolice [required: ~=0.5.2, installed: 0.5.2]
    - bitstring [required: >=3.1.4, installed: 3.1.6]
    - brotlipy [required: >=0.5.1, installed: 0.7.0]
      - cffi [required: >=1.0.0, installed: 1.13.0]
        - pycparser [required: Any, installed: 2.19]
    - defusedxml [required: >=0.5.0, installed: 0.6.0]
    - dominate [required: >=2.2.0, installed: 2.4.0]
    - lxml [required: >=3.6.0, installed: 4.4.1]
    - singledispatch [required: >=3.4.0.3, installed: 3.4.0.3]
      - six [required: Any, installed: 1.12.0]
    - six [required: >=1.10.0, installed: 1.12.0]
  - isort [required: ~=4.2, installed: 4.3.21]
  - memento-client [required: ~=0.6.1, installed: 0.6.1]
    - requests [required: >=2.7.0, installed: 2.22.0]
      - certifi [required: >=2017.4.17, installed: 2019.9.11]
      - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
      - idna [required: >=2.5,<2.9, installed: 2.8]
      - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.6]
  - munkres3 [required: ~=1.0, installed: 1.0.5.5]
  - mypy-lang [required: ~=0.4.6, installed: 0.4.6]
  - nbformat [required: ~=4.1, installed: 4.4.0]
    - ipython-genutils [required: Any, installed: 0.2.0]
    - jsonschema [required: >=2.4,!=2.5.0, installed: 3.1.1]
      - attrs [required: >=17.4.0, installed: 19.3.0]
      - importlib-metadata [required: Any, installed: 0.23]
        - zipp [required: >=0.5, installed: 0.6.0]
          - more-itertools [required: Any, installed: 7.2.0]
      - pyrsistent [required: >=0.14.0, installed: 0.15.4]
        - six [required: Any, installed: 1.12.0]
      - setuptools [required: Any, installed: 41.4.0]
      - six [required: >=1.11.0, installed: 1.12.0]
    - jupyter-core [required: Any, installed: 4.6.0]
      - traitlets [required: Any, installed: 4.3.3]
        - decorator [required: Any, installed: 4.4.0]
        - ipython-genutils [required: Any, installed: 0.2.0]
        - six [required: Any, installed: 1.12.0]
    - traitlets [required: >=4.1, installed: 4.3.3]
      - decorator [required: Any, installed: 4.4.0]
      - ipython-genutils [required: Any, installed: 0.2.0]
      - six [required: Any, installed: 1.12.0]
  - nltk [required: ~=3.2, installed: 3.4.5]
    - six [required: Any, installed: 1.12.0]
  - proselint [required: ~=0.7.0, installed: 0.7.0]
    - click [required: Any, installed: 6.6]
    - future [required: Any, installed: 0.18.0]
    - six [required: Any, installed: 1.12.0]
  - pycodestyle [required: ~=2.2, installed: 2.5.0]
  - pydocstyle [required: ~=2.0, installed: 2.1.1]
    - six [required: Any, installed: 1.12.0]
    - snowballstemmer [required: Any, installed: 2.0.0]
  - pyflakes [required: ~=1.5.0, installed: 1.5.0]
  - pylint [required: ~=1.6, installed: 1.9.5]
    - astroid [required: >=1.6,<2.0, installed: 1.6.6]
      - lazy-object-proxy [required: Any, installed: 1.4.2]
      - six [required: Any, installed: 1.12.0]
      - wrapt [required: Any, installed: 1.11.2]
    - isort [required: >=4.2.5, installed: 4.3.21]
    - mccabe [required: Any, installed: 0.6.1]
    - six [required: Any, installed: 1.12.0]
  - pyroma [required: ~=2.2.0, installed: 2.2]
    - docutils [required: Any, installed: 0.15.2]
    - setuptools [required: Any, installed: 41.4.0]
  - pyyaml [required: ~=3.12, installed: 3.13]
  - radon [required: ==1.4.0, installed: 1.4.0]
    - colorama [required: >=0.3,<0.4, installed: 0.3.9]
    - mando [required: >=0.3,<0.4, installed: 0.3.3]
  - restructuredtext-lint [required: ~=1.0.0, installed: 1.0.1]
    - docutils [required: >=0.11,<1.0, installed: 0.15.2]
  - rstcheck [required: ~=3.1, installed: 3.3.1]
    - docutils [required: >=0.7, installed: 0.15.2]
  - safety [required: ~=0.5.1, installed: 0.5.1]
    - Click [required: >=6.0, installed: 6.6]
    - packaging [required: Any, installed: 16.8]
      - pyparsing [required: Any, installed: 2.4.2]
      - six [required: Any, installed: 1.12.0]
    - requests [required: Any, installed: 2.22.0]
      - certifi [required: >=2017.4.17, installed: 2019.9.11]
      - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
      - idna [required: >=2.5,<2.9, installed: 2.8]
      - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.6]
  - scspell3k [required: ~=2.0, installed: 2.2]
  - vim-vint [required: ~=0.3.12, installed: 0.3.21]
    - ansicolor [required: >=0.2.4, installed: 0.2.6]
    - chardet [required: >=2.3.0, installed: 3.0.4]
    - PyYAML [required: >=3.11, installed: 3.13]
  - vulture [required: ~=0.25.0, installed: 0.25]
  - yamllint [required: ~=1.6.1, installed: 1.6.1]
    - pyyaml [required: Any, installed: 3.13]
  - yapf [required: ~=0.16.0, installed: 0.16.3]
faust==1.8.0
  - aiohttp [required: >=3.5.2,<4.0, installed: 3.6.2]
    - async-timeout [required: >=3.0,<4.0, installed: 3.0.1]
    - attrs [required: >=17.3.0, installed: 19.3.0]
    - chardet [required: >=2.0,<4.0, installed: 3.0.4]
    - idna-ssl [required: >=1.0, installed: 1.1.0]
      - idna [required: >=2.0, installed: 2.8]
    - multidict [required: >=4.5,<5.0, installed: 4.5.2]
    - typing-extensions [required: >=3.6.5, installed: 3.7.4]
    - yarl [required: >=1.0,<2.0, installed: 1.4.0a11]
      - idna [required: >=2.0, installed: 2.8]
      - multidict [required: >=4.0, installed: 4.5.2]
  - aiohttp-cors [required: >=0.7,<2.0, installed: 0.7.0]
    - aiohttp [required: >=1.1, installed: 3.6.2]
      - async-timeout [required: >=3.0,<4.0, installed: 3.0.1]
      - attrs [required: >=17.3.0, installed: 19.3.0]
      - chardet [required: >=2.0,<4.0, installed: 3.0.4]
      - idna-ssl [required: >=1.0, installed: 1.1.0]
        - idna [required: >=2.0, installed: 2.8]
      - multidict [required: >=4.5,<5.0, installed: 4.5.2]
      - typing-extensions [required: >=3.6.5, installed: 3.7.4]
      - yarl [required: >=1.0,<2.0, installed: 1.4.0a11]
        - idna [required: >=2.0, installed: 2.8]
        - multidict [required: >=4.0, installed: 4.5.2]
  - click [required: >=6.7,<8.0, installed: 6.6]
  - colorclass [required: >=2.2,<3.0, installed: 2.2.0]
  - croniter [required: >=0.3.16, installed: 0.3.30]
    - python-dateutil [required: Any, installed: 2.8.0]
      - six [required: >=1.5, installed: 1.12.0]
  - mode [required: >=4.1.0,<4.2, installed: 4.1.2]
    - aiocontextvars [required: >=0.2, installed: 0.2.2]
      - contextvars [required: ==2.4, installed: 2.4]
        - immutables [required: >=0.9, installed: 0.11]
    - colorlog [required: >=2.9.0, installed: 2.10.0]
    - mypy-extensions [required: Any, installed: 0.4.2]
  - mypy-extensions [required: Any, installed: 0.4.2]
  - opentracing [required: >=1.3.0,<2.0.0, installed: 1.3.0]
  - robinhood-aiokafka [required: >=1.0.3,<1.1, installed: 1.0.4]
    - kafka-python [required: >=1.4.4,<1.5, installed: 1.4.7]
  - terminaltables [required: >=3.1,<4.0, installed: 3.1.0]
  - venusian [required: >=1.1,<2.0, installed: 1.2.0]
  - yarl [required: >=1.0,<2.0, installed: 1.4.0a11]
    - idna [required: >=2.0, installed: 2.8]
    - multidict [required: >=4.0, installed: 4.5.2]
pytest-cov==2.8.1
  - coverage [required: >=4.4, installed: 5.0a8]
  - pytest [required: >=3.6, installed: 5.2.1]
    - atomicwrites [required: >=1.0, installed: 1.3.0]
    - attrs [required: >=17.4.0, installed: 19.3.0]
    - importlib-metadata [required: >=0.12, installed: 0.23]
      - zipp [required: >=0.5, installed: 0.6.0]
        - more-itertools [required: Any, installed: 7.2.0]
    - more-itertools [required: >=4.0.0, installed: 7.2.0]
    - packaging [required: Any, installed: 16.8]
      - pyparsing [required: Any, installed: 2.4.2]
      - six [required: Any, installed: 1.12.0]
    - pluggy [required: >=0.12,<1.0, installed: 0.13.0]
      - importlib-metadata [required: >=0.12, installed: 0.23]
        - zipp [required: >=0.5, installed: 0.6.0]
          - more-itertools [required: Any, installed: 7.2.0]
    - py [required: >=1.5.0, installed: 1.8.0]
    - wcwidth [required: Any, installed: 0.1.7]
pytest-timeout==1.3.3
  - pytest [required: >=3.6.0, installed: 5.2.1]
    - atomicwrites [required: >=1.0, installed: 1.3.0]
    - attrs [required: >=17.4.0, installed: 19.3.0]
    - importlib-metadata [required: >=0.12, installed: 0.23]
      - zipp [required: >=0.5, installed: 0.6.0]
        - more-itertools [required: Any, installed: 7.2.0]
    - more-itertools [required: >=4.0.0, installed: 7.2.0]
    - packaging [required: Any, installed: 16.8]
      - pyparsing [required: Any, installed: 2.4.2]
      - six [required: Any, installed: 1.12.0]
    - pluggy [required: >=0.12,<1.0, installed: 0.13.0]
      - importlib-metadata [required: >=0.12, installed: 0.23]
        - zipp [required: >=0.5, installed: 0.6.0]
          - more-itertools [required: Any, installed: 7.2.0]
    - py [required: >=1.5.0, installed: 1.8.0]
    - wcwidth [required: Any, installed: 0.1.7]
thoth-common==0.9.14
  - attrs [required: Any, installed: 19.3.0]
  - daiquiri [required: Any, installed: 1.6.0]
  - openshift [required: ==0.8.0, installed: 0.8.0]
    - dictdiffer [required: Any, installed: 0.8.0]
    - jinja2 [required: Any, installed: 2.10.3]
      - MarkupSafe [required: >=0.23, installed: 1.1.1]
    - kubernetes [required: >=8.0.0,<9.0.0, installed: 8.0.2]
      - adal [required: >=1.0.2, installed: 1.2.2]
        - cryptography [required: >=1.1.0, installed: 2.7]
          - asn1crypto [required: >=0.21.0, installed: 1.2.0]
          - cffi [required: >=1.8,!=1.11.3, installed: 1.13.0]
            - pycparser [required: Any, installed: 2.19]
          - six [required: >=1.4.1, installed: 1.12.0]
        - PyJWT [required: >=1.0.0, installed: 1.7.1]
        - python-dateutil [required: >=2.1.0, installed: 2.8.0]
          - six [required: >=1.5, installed: 1.12.0]
        - requests [required: >=2.0.0, installed: 2.22.0]
          - certifi [required: >=2017.4.17, installed: 2019.9.11]
          - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
          - idna [required: >=2.5,<2.9, installed: 2.8]
          - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.6]
      - certifi [required: >=14.05.14, installed: 2019.9.11]
      - google-auth [required: >=1.0.1, installed: 1.6.3]
        - cachetools [required: >=2.0.0, installed: 3.1.1]
        - pyasn1-modules [required: >=0.2.1, installed: 0.2.7]
          - pyasn1 [required: >=0.4.6,<0.5.0, installed: 0.4.7]
        - rsa [required: >=3.1.4, installed: 4.0]
          - pyasn1 [required: >=0.1.3, installed: 0.4.7]
        - six [required: >=1.9.0, installed: 1.12.0]
      - python-dateutil [required: >=2.5.3, installed: 2.8.0]
        - six [required: >=1.5, installed: 1.12.0]
      - pyyaml [required: >=3.12, installed: 3.13]
      - requests [required: Any, installed: 2.22.0]
        - certifi [required: >=2017.4.17, installed: 2019.9.11]
        - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
        - idna [required: >=2.5,<2.9, installed: 2.8]
        - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.6]
      - requests-oauthlib [required: Any, installed: 1.2.0]
        - oauthlib [required: >=3.0.0, installed: 3.1.0]
        - requests [required: >=2.0.0, installed: 2.22.0]
          - certifi [required: >=2017.4.17, installed: 2019.9.11]
          - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
          - idna [required: >=2.5,<2.9, installed: 2.8]
          - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.6]
      - setuptools [required: >=21.0.0, installed: 41.4.0]
      - six [required: >=1.9.0, installed: 1.12.0]
      - urllib3 [required: >=1.24.2, installed: 1.25.6]
      - websocket-client [required: >=0.32.0,!=0.42.*,!=0.41.*,!=0.40.0, installed: 0.56.0]
        - six [required: Any, installed: 1.12.0]
    - python-string-utils [required: Any, installed: 0.6.0]
    - ruamel.yaml [required: >=0.15, installed: 0.16.5]
      - ruamel.yaml.clib [required: >=0.1.2, installed: 0.2.0]
    - six [required: Any, installed: 1.12.0]
  - pyyaml [required: Any, installed: 3.13]
  - requests [required: Any, installed: 2.22.0]
    - certifi [required: >=2017.4.17, installed: 2019.9.11]
    - chardet [required: >=3.0.2,<3.1.0, installed: 3.0.4]
    - idna [required: >=2.5,<2.9, installed: 2.8]
    - urllib3 [required: >=1.21.1,<1.26,!=1.25.1,!=1.25.0, installed: 1.25.6]
  - rfc5424-logging-handler [required: Any, installed: 1.4.3]
    - pytz [required: Any, installed: 2019.3]
    - tzlocal [required: Any, installed: 2.0.0]
      - pytz [required: Any, installed: 2019.3]
  - sentry-sdk [required: Any, installed: 0.12.3]
    - certifi [required: Any, installed: 2019.9.11]
    - urllib3 [required: >=1.9, installed: 1.25.6]
typed-ast==1.4.0

Notes

For more information, see Pipfile and Pipfile.lock.

Once this issue is resolved, the issue will be automatically closed by bot.

Adding persistant memory to our Faust App (RocksDB) [? add points]

Using the memory:// store is OK when developing your project and testing things out, but for large tables, it can take hours to recover after a restart, so you should never use it in production.
RocksDB recovers tables in seconds or less, is embedded and don’t require a server or additional infrastructure. It also stores table data on the file system in such a way that tables can exceed the size of available memory.

With everything being moved to Kafka it becomes important make sure we don't lose messages. As @KPostOffice suggested we could add a PVC that prevents us from losing messages in case the pod goes down,

Ref - https://faust.readthedocs.io/en/latest/userguide/application.html#id2

Add component_name and service_version to each message

Is your feature request related to a problem? Please describe.
Different components in Thoth send same message, we need to have a way to

Describe the solution you'd like
Add parameters to each message.

Describe alternatives you've considered

Additional context
@fridex

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.