Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pipupgrade.exception.PopenError: Command '/usr/bin/pip2 list --outdated --format json' returned non-zero exit status 2 #106

Open
sgreadly opened this issue Jun 13, 2021 · 0 comments
Assignees
Labels
bug Something isn't working

Comments

@sgreadly
Copy link

What's the bug all about?

It looks like the pipupgrade script fails if your pip2 is outdated (even if you use pip3 but it seems to still want to check pip2). It would be better - easier for us and less escalations for you - if it would give an easier indication of that and what needs to be done, instead of the error message observed.

i.e., detect your pip2 is old and needs to upgrade to the minimum requirement for your script to run successfully.

This is on a clean install of Raspberry Pi OS 64-bit on RPi 4.

pi@hop4:~ $ uname -a
Linux hop4 5.10.17-v8+ #1421 SMP PREEMPT Thu May 27 14:01:37 BST 2021 aarch64 GNU/Linux

What command led to this issue?

$ pipupgrade --check
and
$ pipupgrade --check --verbose

Logs

"pi@hop4:~ $ pipupgrade --check
Checking...

multiprocessing.pool.RemoteTraceback:
"""
Traceback (most recent call last):
  File "/usr/lib/python3.7/multiprocessing/pool.py", line 121, in worker
    result = (True, func(*args, **kwds))
  File "/home/pi/.local/lib/python3.7/site-packages/pipupgrade/commands/helper.py", line 321, in get_registry_from_pip
    format = "json", pip_exec = pip_path, output = True)
  File "/home/pi/.local/lib/python3.7/site-packages/pipupgrade/_pip.py", line 75, in call
    output = popen(*params, output = output, raise_err = raise_err)
  File "/home/pi/.local/lib/python3.7/site-packages/pipupgrade/util/system.py", line 92, in popen
    raise PopenError(code, command)
pipupgrade.exception.PopenError: Command '/usr/bin/pip2 list --outdated --format json' returned non-zero exit status 2.
"""

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/home/pi/.local/lib/python3.7/site-packages/pipupgrade/commands/__init__.py", line 78, in command
    return _command(**ARGUMENTS)
  File "/home/pi/.local/lib/python3.7/site-packages/pipupgrade/commands/__init__.py", line 233, in _command
    pip_path
  File "/usr/lib/python3.7/multiprocessing/pool.py", line 748, in next
    raise value
pipupgrade.exception.PopenError: Command '/usr/bin/pip2 list --outdated --format json' returned non-zero exit status 2.

An error occured while performing the above command. This could be an issue with
"pipupgrade". Kindly post an issue at https://github.com/achillesrasquinha/pipupgrade/issues"

And verbose:

"pi@hop4:~ $ pipupgrade --check --verbose
2021-06-14 09:54:35,520 | INFO | Environment: {'version': '1.9.0', 'python_version': '3.7.3', 'os': 'Linux-5.10.17-v8+-aarch64-with-debian-10.9', 'config': {'path': {'BASE': '/home/pi/.local/lib/python3.7/site-packages/pipupgrade', 'DATA': '/home/pi/.local/lib/python3.7/site-packages/pipupgrade/data', 'CACHE': '/home/pi/.config/pipupgrade', 'JOBS': '/home/pi/.local/lib/python3.7/site-packages/pipupgrade/jobs'}}, 'settings': {'settings': {'version': '1.9.0', 'cache_timeout': '86400', 'jobs': '4'}}}
2021-06-14 09:54:35,520 | INFO | Arguments Passed: {'args': (), 'kwargs': {'ARGUMENTS': <class 'inspect._empty'>, 'packages': [], 'ignore': None, 'pip_path': None, 'yes': 0, 'check': True, 'upgrade_type': ['minor', 'patch'], 'latest': 0, 'format': 'table', 'all': 0, 'pip': 0, 'self': False, 'requirements': None, 'pipfile': None, 'interactive': 0, 'project': None, 'git_username': None, 'git_email': None, 'pull_request': False, 'github_access_token': None, 'github_reponame': None, 'github_username': None, 'target_branch': 'master', 'jobs': 4, 'user': 0, 'no_included_requirements': 0, 'no_cache': 0, 'output': None, 'ignore_error': 0, 'force': 0, 'no_color': 0, 'verbose': True}, 'a': <pipupgrade.to_params.<locals>.O object at 0x7f9fe63470>}
Checking...
2021-06-14 09:54:35,527 | INFO | `pip` executables found: ['/home/pi/.local/bin/pip', '/home/pi/.local/bin/pip3', '/usr/bin/pip2']
2021-06-14 09:54:35,527 | INFO | Using 4 jobs...
2021-06-14 09:54:35,559 | INFO | Fetching installed packages for /home/pi/.local/bin/pip...
2021-06-14 09:54:35,559 | INFO | Fetching installed packages for /home/pi/.local/bin/pip3...
2021-06-14 09:54:35,560 | INFO | Fetching installed packages for /usr/bin/pip2...
2021-06-14 09:54:35,561 | INFO | Executing command: /home/pi/.local/bin/pip list --outdated --format json
2021-06-14 09:54:35,561 | INFO | Executing command: /home/pi/.local/bin/pip3 list --outdated --format json
2021-06-14 09:54:35,561 | INFO | Executing command: /usr/bin/pip2 list --outdated --format json
2021-06-14 09:55:12,265 | INFO | 65 packages found for /home/pi/.local/bin/pip.
2021-06-14 09:55:12,309 | INFO | Initializing Package {'name': 'asn1crypto', 'version': '0.24.0', 'latest_version': '1.4.0', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,312 | INFO | Initializing Package {'name': 'astroid', 'version': '2.1.0', 'latest_version': '2.5.8', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,316 | INFO | Initializing Package {'name': 'asttokens', 'version': '1.1.13', 'latest_version': '2.0.5', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,319 | INFO | Initializing Package {'name': 'automationhat', 'version': '0.2.0', 'latest_version': '0.2.2', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,321 | INFO | Fetching package asn1crypto information from DB...
2021-06-14 09:55:12,322 | INFO | Fetching package astroid information from DB...
2021-06-14 09:55:12,323 | INFO | Fetching package asttokens information from DB...
2021-06-14 09:55:12,325 | INFO | Fetching package automationhat information from DB...
2021-06-14 09:55:12,344 | INFO | Using cached info for package <Package asn1crypto (0.24.0)>.
2021-06-14 09:55:12,346 | INFO | Initializing Package {'name': 'beautifulsoup4', 'version': '4.7.1', 'latest_version': '4.9.3', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,347 | INFO | Fetching package beautifulsoup4 information from DB...
2021-06-14 09:55:12,348 | INFO | Using cached info for package <Package beautifulsoup4 (4.7.1)>.
2021-06-14 09:55:12,349 | INFO | Initializing Package {'name': 'certifi', 'version': '2018.8.24', 'latest_version': '2021.5.30', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,350 | INFO | Fetching package certifi information from DB...
2021-06-14 09:55:12,351 | INFO | Using cached info for package <Package certifi (2018.8.24)>.
2021-06-14 09:55:12,352 | INFO | Initializing Package {'name': 'chardet', 'version': '3.0.4', 'latest_version': '4.0.0', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,353 | INFO | Fetching package chardet information from DB...
2021-06-14 09:55:12,354 | INFO | Using cached info for package <Package chardet (3.0.4)>.
2021-06-14 09:55:12,355 | INFO | Initializing Package {'name': 'Click', 'version': '7.0', 'latest_version': '8.0.1', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,355 | INFO | Fetching package Click information from DB...
2021-06-14 09:55:12,357 | INFO | Using cached info for package <Package Click (7.0)>.
2021-06-14 09:55:12,357 | INFO | Initializing Package {'name': 'colorama', 'version': '0.3.7', 'latest_version': '0.4.4', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,358 | INFO | Fetching package colorama information from DB...
2021-06-14 09:55:12,359 | INFO | Using cached info for package <Package colorama (0.3.7)>.
2021-06-14 09:55:12,360 | INFO | Initializing Package {'name': 'colorzero', 'version': '1.1', 'latest_version': '2.0', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,361 | INFO | Fetching package colorzero information from DB...
2021-06-14 09:55:12,362 | INFO | Using cached info for package <Package colorzero (1.1)>.
2021-06-14 09:55:12,363 | INFO | Initializing Package {'name': 'cryptography', 'version': '2.6.1', 'latest_version': '3.4.7', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,364 | INFO | Fetching package cryptography information from DB...
2021-06-14 09:55:12,365 | INFO | Using cached info for package <Package cryptography (2.6.1)>.
2021-06-14 09:55:12,366 | INFO | Initializing Package {'name': 'docutils', 'version': '0.14', 'latest_version': '0.17.1', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,367 | INFO | Fetching package docutils information from DB...
2021-06-14 09:55:12,368 | INFO | Using cached info for package <Package docutils (0.14)>.
2021-06-14 09:55:12,366 | INFO | Using cached info for package <Package automationhat (0.2.0)>.
2021-06-14 09:55:12,369 | INFO | Initializing Package {'name': 'envirophat', 'version': '1.0.0', 'latest_version': '1.0.1', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,370 | INFO | Fetching package envirophat information from DB...
2021-06-14 09:55:12,372 | INFO | Using cached info for package <Package envirophat (1.0.0)>.
2021-06-14 09:55:12,373 | INFO | Initializing Package {'name': 'html5lib', 'version': '1.0.1', 'latest_version': '1.1', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,372 | INFO | Initializing Package {'name': 'Flask', 'version': '1.0.2', 'latest_version': '2.0.1', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,374 | INFO | Fetching package html5lib information from DB...
2021-06-14 09:55:12,376 | INFO | Using cached info for package <Package asttokens (1.1.13)>.
2021-06-14 09:55:12,376 | INFO | Using cached info for package <Package html5lib (1.0.1)>.
2021-06-14 09:55:12,375 | INFO | Fetching package Flask information from DB...
2021-06-14 09:55:12,378 | INFO | Initializing Package {'name': 'idna', 'version': '2.6', 'latest_version': '3.2', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,379 | INFO | Fetching package idna information from DB...
2021-06-14 09:55:12,378 | INFO | Using cached info for package <Package astroid (2.1.0)>.
2021-06-14 09:55:12,379 | INFO | Using cached info for package <Package Flask (1.0.2)>.
2021-06-14 09:55:12,381 | INFO | Using cached info for package <Package idna (2.6)>.
2021-06-14 09:55:12,383 | INFO | Initializing Package {'name': 'isort', 'version': '4.3.4', 'latest_version': '5.8.0', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,384 | INFO | Fetching package isort information from DB...
2021-06-14 09:55:12,386 | INFO | Using cached info for package <Package isort (4.3.4)>.
2021-06-14 09:55:12,387 | INFO | Initializing Package {'name': 'jedi', 'version': '0.13.2', 'latest_version': '0.18.0', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,388 | INFO | Fetching package jedi information from DB...
2021-06-14 09:55:12,389 | INFO | Initializing Package {'name': 'keyring', 'version': '17.1.1', 'latest_version': '23.0.1', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,389 | INFO | Initializing Package {'name': 'Jinja2', 'version': '2.10', 'latest_version': '3.0.1', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,390 | INFO | Fetching package keyring information from DB...
2021-06-14 09:55:12,390 | INFO | Using cached info for package <Package jedi (0.13.2)>.
2021-06-14 09:55:12,391 | INFO | Fetching package Jinja2 information from DB...
2021-06-14 09:55:12,388 | INFO | Initializing Package {'name': 'itsdangerous', 'version': '0.24', 'latest_version': '2.0.1', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,392 | INFO | Using cached info for package <Package keyring (17.1.1)>.
2021-06-14 09:55:12,393 | INFO | Fetching package itsdangerous information from DB...
2021-06-14 09:55:12,394 | INFO | Initializing Package {'name': 'lazy-object-proxy', 'version': '1.3.1', 'latest_version': '1.6.0', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,395 | INFO | Fetching package lazy-object-proxy information from DB...
2021-06-14 09:55:12,393 | INFO | Initializing Package {'name': 'keyrings.alt', 'version': '3.1.1', 'latest_version': '4.0.2', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,397 | INFO | Fetching package keyrings.alt information from DB...
2021-06-14 09:55:12,396 | INFO | Using cached info for package <Package Jinja2 (2.10)>.
2021-06-14 09:55:12,399 | INFO | Using cached info for package <Package keyrings.alt (3.1.1)>.
2021-06-14 09:55:12,397 | INFO | Using cached info for package <Package lazy-object-proxy (1.3.1)>.
2021-06-14 09:55:12,399 | INFO | Using cached info for package <Package itsdangerous (0.24)>.
2021-06-14 09:55:12,401 | INFO | Initializing Package {'name': 'lxml', 'version': '4.3.2', 'latest_version': '4.6.3', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,404 | INFO | Fetching package lxml information from DB...
2021-06-14 09:55:12,403 | INFO | Initializing Package {'name': 'MarkupSafe', 'version': '1.1.0', 'latest_version': '2.0.1', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,403 | INFO | Initializing Package {'name': 'logilab-common', 'version': '1.4.2', 'latest_version': '1.8.1', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,406 | INFO | Fetching package MarkupSafe information from DB...
2021-06-14 09:55:12,406 | INFO | Fetching package logilab-common information from DB...
2021-06-14 09:55:12,408 | INFO | Initializing Package {'name': 'mypy', 'version': '0.670', 'latest_version': '0.902', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,410 | INFO | Using cached info for package <Package lxml (4.3.2)>.
2021-06-14 09:55:12,411 | INFO | Fetching package mypy information from DB...
2021-06-14 09:55:12,413 | INFO | Initializing Package {'name': 'mypy-extensions', 'version': '0.4.1', 'latest_version': '0.4.3', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,410 | INFO | Using cached info for package <Package logilab-common (1.4.2)>.
2021-06-14 09:55:12,408 | INFO | Using cached info for package <Package MarkupSafe (1.1.0)>.
2021-06-14 09:55:12,415 | INFO | Fetching package mypy-extensions information from DB...
2021-06-14 09:55:12,417 | INFO | Using cached info for package <Package mypy (0.670)>.
2021-06-14 09:55:12,417 | INFO | Using cached info for package <Package mypy-extensions (0.4.1)>.
2021-06-14 09:55:12,419 | INFO | Initializing Package {'name': 'oauthlib', 'version': '2.1.0', 'latest_version': '3.1.1', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,419 | INFO | Initializing Package {'name': 'numpy', 'version': '1.16.2', 'latest_version': '1.20.3', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,420 | INFO | Fetching package oauthlib information from DB...
2021-06-14 09:55:12,420 | INFO | Fetching package numpy information from DB...
2021-06-14 09:55:12,421 | INFO | Initializing Package {'name': 'parso', 'version': '0.3.1', 'latest_version': '0.8.2', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,422 | INFO | Fetching package parso information from DB...
2021-06-14 09:55:12,422 | INFO | Using cached info for package <Package oauthlib (2.1.0)>.
2021-06-14 09:55:12,423 | INFO | Using cached info for package <Package numpy (1.16.2)>.
2021-06-14 09:55:12,424 | INFO | Initializing Package {'name': 'pexpect', 'version': '4.6.0', 'latest_version': '4.8.0', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,425 | INFO | Fetching package pexpect information from DB...
2021-06-14 09:55:12,426 | INFO | Initializing Package {'name': 'pgzero', 'version': '1.2', 'latest_version': '1.2.1', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,426 | INFO | Initializing Package {'name': 'Pillow', 'version': '5.4.1', 'latest_version': '8.2.0', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,426 | INFO | Using cached info for package <Package parso (0.3.1)>.
2021-06-14 09:55:12,427 | INFO | Fetching package pgzero information from DB...
2021-06-14 09:55:12,431 | INFO | Initializing Package {'name': 'psutil', 'version': '5.5.1', 'latest_version': '5.8.0', 'latest_filetype': 'sdist'} of type <class 'dict'>...
2021-06-14 09:55:12,429 | INFO | Fetching package Pillow information from DB...
2021-06-14 09:55:12,433 | INFO | Using cached info for package <Package pgzero (1.2)>.
2021-06-14 09:55:12,433 | INFO | Fetching package psutil information from DB...
2021-06-14 09:55:12,429 | INFO | Using cached info for package <Package pexpect (4.6.0)>.
2021-06-14 09:55:12,435 | INFO | Initializing Package {'name': 'pycairo', 'version': '1.16.2', 'latest_version': '1.20.1', 'latest_filetype': 'sdist'} of type <class 'dict'>...
2021-06-14 09:55:12,436 | INFO | Using cached info for package <Package Pillow (5.4.1)>.
2021-06-14 09:55:12,436 | INFO | Fetching package pycairo information from DB...
2021-06-14 09:55:12,438 | INFO | Using cached info for package <Package psutil (5.5.1)>.
2021-06-14 09:55:12,440 | INFO | Using cached info for package <Package pycairo (1.16.2)>.
2021-06-14 09:55:12,440 | INFO | Initializing Package {'name': 'pygame', 'version': '1.9.4.post1', 'latest_version': '2.0.1', 'latest_filetype': 'sdist'} of type <class 'dict'>...
2021-06-14 09:55:12,441 | INFO | Fetching package pygame information from DB...
2021-06-14 09:55:12,437 | INFO | Initializing Package {'name': 'pycups', 'version': '1.9.73', 'latest_version': '2.0.1', 'latest_filetype': 'sdist'} of type <class 'dict'>...
2021-06-14 09:55:12,443 | INFO | Initializing Package {'name': 'Pygments', 'version': '2.3.1', 'latest_version': '2.9.0', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,439 | INFO | Initializing Package {'name': 'pycurl', 'version': '7.43.0.2', 'latest_version': '7.43.0.6', 'latest_filetype': 'sdist'} of type <class 'dict'>...
2021-06-14 09:55:12,444 | INFO | Fetching package pycups information from DB...
2021-06-14 09:55:12,444 | INFO | Fetching package Pygments information from DB...
2021-06-14 09:55:12,447 | INFO | Fetching package pycurl information from DB...
2021-06-14 09:55:12,445 | INFO | Using cached info for package <Package pygame (1.9.4.post1)>.
2021-06-14 09:55:12,447 | INFO | Using cached info for package <Package Pygments (2.3.1)>.
2021-06-14 09:55:12,449 | INFO | Initializing Package {'name': 'PyJWT', 'version': '1.7.0', 'latest_version': '2.1.0', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,450 | INFO | Fetching package PyJWT information from DB...
2021-06-14 09:55:12,451 | INFO | Initializing Package {'name': 'PyGObject', 'version': '3.30.4', 'latest_version': '3.40.1', 'latest_filetype': 'sdist'} of type <class 'dict'>...
2021-06-14 09:55:12,452 | INFO | Using cached info for package <Package PyJWT (1.7.0)>.
2021-06-14 09:55:12,450 | INFO | Using cached info for package <Package pycups (1.9.73)>.
2021-06-14 09:55:12,452 | INFO | Fetching package PyGObject information from DB...
2021-06-14 09:55:12,454 | INFO | Using cached info for package <Package pycurl (7.43.0.2)>.
2021-06-14 09:55:12,455 | INFO | Initializing Package {'name': 'pyOpenSSL', 'version': '19.0.0', 'latest_version': '20.0.1', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,453 | INFO | Initializing Package {'name': 'pylint', 'version': '2.2.2', 'latest_version': '2.8.3', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,456 | INFO | Fetching package pyOpenSSL information from DB...
2021-06-14 09:55:12,458 | INFO | Fetching package pylint information from DB...
2021-06-14 09:55:12,459 | INFO | Using cached info for package <Package pyOpenSSL (19.0.0)>.
2021-06-14 09:55:12,460 | INFO | Initializing Package {'name': 'pyserial', 'version': '3.4', 'latest_version': '3.5', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,463 | INFO | Fetching package pyserial information from DB...
2021-06-14 09:55:12,459 | INFO | Using cached info for package <Package PyGObject (3.30.4)>.
2021-06-14 09:55:12,462 | INFO | Initializing Package {'name': 'pysmbc', 'version': '1.0.15.6', 'latest_version': '1.0.23', 'latest_filetype': 'sdist'} of type <class 'dict'>...
2021-06-14 09:55:12,465 | INFO | Initializing Package {'name': 'pyxdg', 'version': '0.25', 'latest_version': '0.27', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,465 | INFO | Fetching package pysmbc information from DB...
2021-06-14 09:55:12,466 | INFO | Fetching package pyxdg information from DB...
2021-06-14 09:55:12,466 | INFO | Using cached info for package <Package pylint (2.2.2)>.
2021-06-14 09:55:12,467 | INFO | Using cached info for package <Package pysmbc (1.0.15.6)>.
2021-06-14 09:55:12,468 | INFO | Initializing Package {'name': 'reportlab', 'version': '3.5.13', 'latest_version': '3.5.67', 'latest_filetype': 'sdist'} of type <class 'dict'>...
2021-06-14 09:55:12,469 | INFO | Fetching package reportlab information from DB...
2021-06-14 09:55:12,467 | INFO | Using cached info for package <Package pyserial (3.4)>.
2021-06-14 09:55:12,472 | INFO | Initializing Package {'name': 'requests-oauthlib', 'version': '1.0.0', 'latest_version': '1.3.0', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,473 | INFO | Fetching package requests-oauthlib information from DB...
2021-06-14 09:55:12,474 | INFO | Using cached info for package <Package requests-oauthlib (1.0.0)>.
2021-06-14 09:55:12,470 | INFO | Using cached info for package <Package pyxdg (0.25)>.
2021-06-14 09:55:12,471 | INFO | Initializing Package {'name': 'requests', 'version': '2.21.0', 'latest_version': '2.25.1', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,476 | INFO | Fetching package requests information from DB...
2021-06-14 09:55:12,476 | INFO | Initializing Package {'name': 'roman', 'version': '2.0.0', 'latest_version': '3.3', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,476 | INFO | Fetching package roman information from DB...
2021-06-14 09:55:12,471 | INFO | Using cached info for package <Package reportlab (3.5.13)>.
2021-06-14 09:55:12,478 | INFO | Using cached info for package <Package requests (2.21.0)>.
2021-06-14 09:55:12,475 | INFO | Initializing Package {'name': 'responses', 'version': '0.9.0', 'latest_version': '0.13.3', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,481 | INFO | Fetching package responses information from DB...
2021-06-14 09:55:12,478 | INFO | Using cached info for package <Package roman (2.0.0)>.
2021-06-14 09:55:12,480 | INFO | Initializing Package {'name': 'scrollphathd', 'version': '1.2.1', 'latest_version': '1.3.0', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,483 | INFO | Fetching package scrollphathd information from DB...
2021-06-14 09:55:12,483 | INFO | Initializing Package {'name': 'SecretStorage', 'version': '2.3.1', 'latest_version': '3.3.1', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,486 | INFO | Fetching package SecretStorage information from DB...
2021-06-14 09:55:12,486 | INFO | Using cached info for package <Package scrollphathd (1.2.1)>.
2021-06-14 09:55:12,485 | INFO | Using cached info for package <Package responses (0.9.0)>.
2021-06-14 09:55:12,487 | INFO | Initializing Package {'name': 'simplejson', 'version': '3.16.0', 'latest_version': '3.17.2', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,489 | INFO | Fetching package simplejson information from DB...
2021-06-14 09:55:12,490 | INFO | Using cached info for package <Package SecretStorage (2.3.1)>.
2021-06-14 09:55:12,490 | INFO | Initializing Package {'name': 'soupsieve', 'version': '1.8', 'latest_version': '2.2.1', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,491 | INFO | Fetching package soupsieve information from DB...
2021-06-14 09:55:12,493 | INFO | Using cached info for package <Package soupsieve (1.8)>.
2021-06-14 09:55:12,492 | INFO | Using cached info for package <Package simplejson (3.16.0)>.
2021-06-14 09:55:12,492 | INFO | Initializing Package {'name': 'speedtest-cli', 'version': '2.0.2', 'latest_version': '2.1.3', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,492 | INFO | Initializing Package {'name': 'six', 'version': '1.12.0', 'latest_version': '1.16.0', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,495 | INFO | Fetching package six information from DB...
2021-06-14 09:55:12,496 | INFO | Fetching package speedtest-cli information from DB...
2021-06-14 09:55:12,497 | INFO | Using cached info for package <Package six (1.12.0)>.
2021-06-14 09:55:12,497 | INFO | Using cached info for package <Package speedtest-cli (2.0.2)>.
2021-06-14 09:55:12,495 | INFO | Initializing Package {'name': 'twython', 'version': '3.7.0', 'latest_version': '3.8.2', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,498 | INFO | Fetching package twython information from DB...
2021-06-14 09:55:12,499 | INFO | Initializing Package {'name': 'typed-ast', 'version': '1.3.1', 'latest_version': '1.4.3', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,494 | INFO | Initializing Package {'name': 'ssh-import-id', 'version': '5.7', 'latest_version': '5.11', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,501 | INFO | Fetching package typed-ast information from DB...
2021-06-14 09:55:12,501 | INFO | Initializing Package {'name': 'urllib3', 'version': '1.24.1', 'latest_version': '1.26.5', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,504 | INFO | Using cached info for package <Package twython (3.7.0)>.
2021-06-14 09:55:12,507 | INFO | Using cached info for package <Package typed-ast (1.3.1)>.
2021-06-14 09:55:12,505 | INFO | Fetching package ssh-import-id information from DB...
2021-06-14 09:55:12,507 | INFO | Fetching package urllib3 information from DB...
2021-06-14 09:55:12,510 | INFO | Initializing Package {'name': 'Werkzeug', 'version': '0.14.1', 'latest_version': '2.0.1', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,511 | INFO | Fetching package Werkzeug information from DB...
2021-06-14 09:55:12,513 | INFO | Using cached info for package <Package ssh-import-id (5.7)>.
2021-06-14 09:55:12,514 | INFO | Using cached info for package <Package urllib3 (1.24.1)>.
2021-06-14 09:55:12,516 | INFO | Initializing Package {'name': 'wheel', 'version': '0.32.3', 'latest_version': '0.36.2', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,514 | INFO | Using cached info for package <Package Werkzeug (0.14.1)>.
2021-06-14 09:55:12,516 | INFO | Fetching package wheel information from DB...
2021-06-14 09:55:12,517 | INFO | Using cached info for package <Package wheel (0.32.3)>.
2021-06-14 09:55:12,517 | INFO | Initializing Package {'name': 'wrapt', 'version': '1.10.11', 'latest_version': '1.12.1', 'latest_filetype': 'sdist'} of type <class 'dict'>...
2021-06-14 09:55:12,518 | INFO | Fetching package wrapt information from DB...
2021-06-14 09:55:12,520 | INFO | Using cached info for package <Package wrapt (1.10.11)>.
2021-06-14 09:55:12,622 | INFO | Packages within `pip` /home/pi/.local/bin/pip found: [<Package asn1crypto (0.24.0)>, <Package astroid (2.1.0)>, <Package asttokens (1.1.13)>, <Package automationhat (0.2.0)>, <Package beautifulsoup4 (4.7.1)>, <Package certifi (2018.8.24)>, <Package chardet (3.0.4)>, <Package Click (7.0)>, <Package colorama (0.3.7)>, <Package colorzero (1.1)>, <Package cryptography (2.6.1)>, <Package docutils (0.14)>, <Package envirophat (1.0.0)>, <Package Flask (1.0.2)>, <Package html5lib (1.0.1)>, <Package idna (2.6)>, <Package isort (4.3.4)>, <Package itsdangerous (0.24)>, <Package jedi (0.13.2)>, <Package Jinja2 (2.10)>, <Package keyring (17.1.1)>, <Package keyrings.alt (3.1.1)>, <Package lazy-object-proxy (1.3.1)>, <Package logilab-common (1.4.2)>, <Package lxml (4.3.2)>, <Package MarkupSafe (1.1.0)>, <Package mypy (0.670)>, <Package mypy-extensions (0.4.1)>, <Package numpy (1.16.2)>, <Package oauthlib (2.1.0)>, <Package parso (0.3.1)>, <Package pexpect (4.6.0)>, <Package pgzero (1.2)>, <Package Pillow (5.4.1)>, <Package psutil (5.5.1)>, <Package pycairo (1.16.2)>, <Package pycups (1.9.73)>, <Package pycurl (7.43.0.2)>, <Package pygame (1.9.4.post1)>, <Package Pygments (2.3.1)>, <Package PyGObject (3.30.4)>, <Package PyJWT (1.7.0)>, <Package pylint (2.2.2)>, <Package pyOpenSSL (19.0.0)>, <Package pyserial (3.4)>, <Package pysmbc (1.0.15.6)>, <Package pyxdg (0.25)>, <Package reportlab (3.5.13)>, <Package requests (2.21.0)>, <Package requests-oauthlib (1.0.0)>, <Package responses (0.9.0)>, <Package roman (2.0.0)>, <Package scrollphathd (1.2.1)>, <Package SecretStorage (2.3.1)>, <Package simplejson (3.16.0)>, <Package six (1.12.0)>, <Package soupsieve (1.8)>, <Package speedtest-cli (2.0.2)>, <Package ssh-import-id (5.7)>, <Package twython (3.7.0)>, <Package typed-ast (1.3.1)>, <Package urllib3 (1.24.1)>, <Package Werkzeug (0.14.1)>, <Package wheel (0.32.3)>, <Package wrapt (1.10.11)>]...
2021-06-14 09:55:12,789 | INFO | 65 packages found for /home/pi/.local/bin/pip3.
2021-06-14 09:55:12,817 | INFO | Initializing Package {'name': 'astroid', 'version': '2.1.0', 'latest_version': '2.5.8', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,818 | INFO | Fetching package astroid information from DB...
2021-06-14 09:55:12,817 | INFO | Initializing Package {'name': 'asttokens', 'version': '1.1.13', 'latest_version': '2.0.5', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,818 | INFO | Initializing Package {'name': 'automationhat', 'version': '0.2.0', 'latest_version': '0.2.2', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,816 | INFO | Initializing Package {'name': 'asn1crypto', 'version': '0.24.0', 'latest_version': '1.4.0', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,820 | INFO | Fetching package asn1crypto information from DB...
2021-06-14 09:55:12,826 | INFO | Fetching package automationhat information from DB...
2021-06-14 09:55:12,827 | INFO | Fetching package asttokens information from DB...
2021-06-14 09:55:12,836 | INFO | Using cached info for package <Package astroid (2.1.0)>.
2021-06-14 09:55:12,836 | INFO | Using cached info for package <Package asn1crypto (0.24.0)>.
2021-06-14 09:55:12,838 | INFO | Initializing Package {'name': 'beautifulsoup4', 'version': '4.7.1', 'latest_version': '4.9.3', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,839 | INFO | Fetching package beautifulsoup4 information from DB...
2021-06-14 09:55:12,839 | INFO | Initializing Package {'name': 'certifi', 'version': '2018.8.24', 'latest_version': '2021.5.30', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,840 | INFO | Fetching package certifi information from DB...
2021-06-14 09:55:12,841 | INFO | Using cached info for package <Package certifi (2018.8.24)>.
2021-06-14 09:55:12,841 | INFO | Using cached info for package <Package beautifulsoup4 (4.7.1)>.
2021-06-14 09:55:12,842 | INFO | Initializing Package {'name': 'chardet', 'version': '3.0.4', 'latest_version': '4.0.0', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,842 | INFO | Fetching package chardet information from DB...
2021-06-14 09:55:12,843 | INFO | Initializing Package {'name': 'Click', 'version': '7.0', 'latest_version': '8.0.1', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,843 | INFO | Using cached info for package <Package chardet (3.0.4)>.
2021-06-14 09:55:12,843 | INFO | Fetching package Click information from DB...
2021-06-14 09:55:12,844 | INFO | Initializing Package {'name': 'colorama', 'version': '0.3.7', 'latest_version': '0.4.4', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,844 | INFO | Fetching package colorama information from DB...
2021-06-14 09:55:12,845 | INFO | Using cached info for package <Package colorama (0.3.7)>.
2021-06-14 09:55:12,846 | INFO | Using cached info for package <Package Click (7.0)>.
2021-06-14 09:55:12,846 | INFO | Initializing Package {'name': 'colorzero', 'version': '1.1', 'latest_version': '2.0', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,846 | INFO | Using cached info for package <Package automationhat (0.2.0)>.
2021-06-14 09:55:12,846 | INFO | Fetching package colorzero information from DB...
2021-06-14 09:55:12,848 | INFO | Using cached info for package <Package colorzero (1.1)>.
2021-06-14 09:55:12,848 | INFO | Initializing Package {'name': 'envirophat', 'version': '1.0.0', 'latest_version': '1.0.1', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,848 | INFO | Initializing Package {'name': 'docutils', 'version': '0.14', 'latest_version': '0.17.1', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,848 | INFO | Initializing Package {'name': 'cryptography', 'version': '2.6.1', 'latest_version': '3.4.7', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,849 | INFO | Fetching package envirophat information from DB...
2021-06-14 09:55:12,849 | INFO | Fetching package cryptography information from DB...
2021-06-14 09:55:12,849 | INFO | Fetching package docutils information from DB...
2021-06-14 09:55:12,850 | INFO | Using cached info for package <Package envirophat (1.0.0)>.
2021-06-14 09:55:12,851 | INFO | Initializing Package {'name': 'Flask', 'version': '1.0.2', 'latest_version': '2.0.1', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,851 | INFO | Using cached info for package <Package docutils (0.14)>.
2021-06-14 09:55:12,850 | INFO | Using cached info for package <Package cryptography (2.6.1)>.
2021-06-14 09:55:12,851 | INFO | Fetching package Flask information from DB...
2021-06-14 09:55:12,852 | INFO | Initializing Package {'name': 'html5lib', 'version': '1.0.1', 'latest_version': '1.1', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,852 | INFO | Initializing Package {'name': 'idna', 'version': '2.6', 'latest_version': '3.2', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,853 | INFO | Fetching package html5lib information from DB...
2021-06-14 09:55:12,853 | INFO | Using cached info for package <Package Flask (1.0.2)>.
2021-06-14 09:55:12,853 | INFO | Fetching package idna information from DB...
2021-06-14 09:55:12,854 | INFO | Initializing Package {'name': 'isort', 'version': '4.3.4', 'latest_version': '5.8.0', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,854 | INFO | Fetching package isort information from DB...
2021-06-14 09:55:12,854 | INFO | Using cached info for package <Package html5lib (1.0.1)>.
2021-06-14 09:55:12,854 | INFO | Using cached info for package <Package idna (2.6)>.
2021-06-14 09:55:12,856 | INFO | Initializing Package {'name': 'itsdangerous', 'version': '0.24', 'latest_version': '2.0.1', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,856 | INFO | Using cached info for package <Package isort (4.3.4)>.
2021-06-14 09:55:12,856 | INFO | Fetching package itsdangerous information from DB...
2021-06-14 09:55:12,856 | INFO | Initializing Package {'name': 'jedi', 'version': '0.13.2', 'latest_version': '0.18.0', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,856 | INFO | Fetching package jedi information from DB...
2021-06-14 09:55:12,857 | INFO | Initializing Package {'name': 'Jinja2', 'version': '2.10', 'latest_version': '3.0.1', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,857 | INFO | Fetching package Jinja2 information from DB...
2021-06-14 09:55:12,857 | INFO | Using cached info for package <Package itsdangerous (0.24)>.
2021-06-14 09:55:12,858 | INFO | Using cached info for package <Package jedi (0.13.2)>.
2021-06-14 09:55:12,859 | INFO | Initializing Package {'name': 'keyring', 'version': '17.1.1', 'latest_version': '23.0.1', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,859 | INFO | Fetching package keyring information from DB...
2021-06-14 09:55:12,859 | INFO | Using cached info for package <Package Jinja2 (2.10)>.
2021-06-14 09:55:12,860 | INFO | Initializing Package {'name': 'keyrings.alt', 'version': '3.1.1', 'latest_version': '4.0.2', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,860 | INFO | Fetching package keyrings.alt information from DB...
2021-06-14 09:55:12,860 | INFO | Using cached info for package <Package keyring (17.1.1)>.
2021-06-14 09:55:12,861 | INFO | Initializing Package {'name': 'lazy-object-proxy', 'version': '1.3.1', 'latest_version': '1.6.0', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,861 | INFO | Fetching package lazy-object-proxy information from DB...
2021-06-14 09:55:12,862 | INFO | Initializing Package {'name': 'logilab-common', 'version': '1.4.2', 'latest_version': '1.8.1', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,862 | INFO | Fetching package logilab-common information from DB...
2021-06-14 09:55:12,862 | INFO | Using cached info for package <Package keyrings.alt (3.1.1)>.
2021-06-14 09:55:12,864 | INFO | Using cached info for package <Package logilab-common (1.4.2)>.
2021-06-14 09:55:12,863 | INFO | Using cached info for package <Package lazy-object-proxy (1.3.1)>.
2021-06-14 09:55:12,864 | INFO | Initializing Package {'name': 'lxml', 'version': '4.3.2', 'latest_version': '4.6.3', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,864 | INFO | Fetching package lxml information from DB...
2021-06-14 09:55:12,865 | INFO | Initializing Package {'name': 'MarkupSafe', 'version': '1.1.0', 'latest_version': '2.0.1', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,865 | INFO | Initializing Package {'name': 'mypy', 'version': '0.670', 'latest_version': '0.902', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,865 | INFO | Fetching package mypy information from DB...
2021-06-14 09:55:12,865 | INFO | Fetching package MarkupSafe information from DB...
2021-06-14 09:55:12,866 | INFO | Using cached info for package <Package MarkupSafe (1.1.0)>.
2021-06-14 09:55:12,866 | INFO | Using cached info for package <Package mypy (0.670)>.
2021-06-14 09:55:12,866 | INFO | Using cached info for package <Package lxml (4.3.2)>.
2021-06-14 09:55:12,867 | INFO | Using cached info for package <Package asttokens (1.1.13)>.
2021-06-14 09:55:12,868 | INFO | Initializing Package {'name': 'mypy-extensions', 'version': '0.4.1', 'latest_version': '0.4.3', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,868 | INFO | Initializing Package {'name': 'numpy', 'version': '1.16.2', 'latest_version': '1.20.3', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,868 | INFO | Initializing Package {'name': 'oauthlib', 'version': '2.1.0', 'latest_version': '3.1.1', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,868 | INFO | Fetching package numpy information from DB...
2021-06-14 09:55:12,868 | INFO | Fetching package mypy-extensions information from DB...
2021-06-14 09:55:12,869 | INFO | Fetching package oauthlib information from DB...
2021-06-14 09:55:12,870 | INFO | Using cached info for package <Package mypy-extensions (0.4.1)>.
2021-06-14 09:55:12,870 | INFO | Using cached info for package <Package numpy (1.16.2)>.
2021-06-14 09:55:12,871 | INFO | Initializing Package {'name': 'pexpect', 'version': '4.6.0', 'latest_version': '4.8.0', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,871 | INFO | Using cached info for package <Package oauthlib (2.1.0)>.
2021-06-14 09:55:12,871 | INFO | Initializing Package {'name': 'parso', 'version': '0.3.1', 'latest_version': '0.8.2', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,871 | INFO | Fetching package pexpect information from DB...
2021-06-14 09:55:12,872 | INFO | Fetching package parso information from DB...
2021-06-14 09:55:12,873 | INFO | Using cached info for package <Package pexpect (4.6.0)>.
2021-06-14 09:55:12,873 | INFO | Using cached info for package <Package parso (0.3.1)>.
2021-06-14 09:55:12,874 | INFO | Initializing Package {'name': 'pgzero', 'version': '1.2', 'latest_version': '1.2.1', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,874 | INFO | Initializing Package {'name': 'psutil', 'version': '5.5.1', 'latest_version': '5.8.0', 'latest_filetype': 'sdist'} of type <class 'dict'>...
2021-06-14 09:55:12,874 | INFO | Initializing Package {'name': 'pycairo', 'version': '1.16.2', 'latest_version': '1.20.1', 'latest_filetype': 'sdist'} of type <class 'dict'>...
2021-06-14 09:55:12,874 | INFO | Initializing Package {'name': 'Pillow', 'version': '5.4.1', 'latest_version': '8.2.0', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,876 | INFO | Fetching package psutil information from DB...
2021-06-14 09:55:12,876 | INFO | Fetching package pycairo information from DB...
2021-06-14 09:55:12,876 | INFO | Fetching package Pillow information from DB...
2021-06-14 09:55:12,876 | INFO | Fetching package pgzero information from DB...
2021-06-14 09:55:12,877 | INFO | Using cached info for package <Package psutil (5.5.1)>.
2021-06-14 09:55:12,877 | INFO | Using cached info for package <Package pycairo (1.16.2)>.
2021-06-14 09:55:12,877 | INFO | Using cached info for package <Package Pillow (5.4.1)>.
2021-06-14 09:55:12,879 | INFO | Using cached info for package <Package pgzero (1.2)>.
2021-06-14 09:55:12,878 | INFO | Initializing Package {'name': 'pycups', 'version': '1.9.73', 'latest_version': '2.0.1', 'latest_filetype': 'sdist'} of type <class 'dict'>...
2021-06-14 09:55:12,879 | INFO | Initializing Package {'name': 'pycurl', 'version': '7.43.0.2', 'latest_version': '7.43.0.6', 'latest_filetype': 'sdist'} of type <class 'dict'>...
2021-06-14 09:55:12,879 | INFO | Initializing Package {'name': 'pygame', 'version': '1.9.4.post1', 'latest_version': '2.0.1', 'latest_filetype': 'sdist'} of type <class 'dict'>...
2021-06-14 09:55:12,883 | INFO | Fetching package pycurl information from DB...
2021-06-14 09:55:12,883 | INFO | Fetching package pycups information from DB...
2021-06-14 09:55:12,883 | INFO | Fetching package pygame information from DB...
2021-06-14 09:55:12,884 | INFO | Initializing Package {'name': 'Pygments', 'version': '2.3.1', 'latest_version': '2.9.0', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,884 | INFO | Using cached info for package <Package pycurl (7.43.0.2)>.
2021-06-14 09:55:12,884 | INFO | Using cached info for package <Package pygame (1.9.4.post1)>.
2021-06-14 09:55:12,884 | INFO | Using cached info for package <Package pycups (1.9.73)>.
2021-06-14 09:55:12,885 | INFO | Fetching package Pygments information from DB...
2021-06-14 09:55:12,886 | INFO | Initializing Package {'name': 'PyGObject', 'version': '3.30.4', 'latest_version': '3.40.1', 'latest_filetype': 'sdist'} of type <class 'dict'>...
2021-06-14 09:55:12,886 | INFO | Initializing Package {'name': 'pylint', 'version': '2.2.2', 'latest_version': '2.8.3', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,887 | INFO | Fetching package PyGObject information from DB...
2021-06-14 09:55:12,886 | INFO | Initializing Package {'name': 'PyJWT', 'version': '1.7.0', 'latest_version': '2.1.0', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,887 | INFO | Fetching package pylint information from DB...
2021-06-14 09:55:12,887 | INFO | Fetching package PyJWT information from DB...
2021-06-14 09:55:12,887 | INFO | Using cached info for package <Package Pygments (2.3.1)>.
2021-06-14 09:55:12,888 | INFO | Using cached info for package <Package pylint (2.2.2)>.
2021-06-14 09:55:12,888 | INFO | Initializing Package {'name': 'pyOpenSSL', 'version': '19.0.0', 'latest_version': '20.0.1', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,889 | INFO | Using cached info for package <Package PyJWT (1.7.0)>.
2021-06-14 09:55:12,889 | INFO | Fetching package pyOpenSSL information from DB...
2021-06-14 09:55:12,890 | INFO | Initializing Package {'name': 'pysmbc', 'version': '1.0.15.6', 'latest_version': '1.0.23', 'latest_filetype': 'sdist'} of type <class 'dict'>...
2021-06-14 09:55:12,891 | INFO | Fetching package pysmbc information from DB...
2021-06-14 09:55:12,891 | INFO | Using cached info for package <Package pyOpenSSL (19.0.0)>.
2021-06-14 09:55:12,893 | INFO | Initializing Package {'name': 'pyxdg', 'version': '0.25', 'latest_version': '0.27', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,893 | INFO | Fetching package pyxdg information from DB...
2021-06-14 09:55:12,893 | INFO | Using cached info for package <Package pysmbc (1.0.15.6)>.
2021-06-14 09:55:12,895 | INFO | Using cached info for package <Package pyxdg (0.25)>.
2021-06-14 09:55:12,896 | INFO | Initializing Package {'name': 'requests', 'version': '2.21.0', 'latest_version': '2.25.1', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,896 | INFO | Fetching package requests information from DB...
2021-06-14 09:55:12,897 | INFO | Using cached info for package <Package requests (2.21.0)>.
2021-06-14 09:55:12,889 | INFO | Initializing Package {'name': 'pyserial', 'version': '3.4', 'latest_version': '3.5', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,888 | INFO | Using cached info for package <Package PyGObject (3.30.4)>.
2021-06-14 09:55:12,894 | INFO | Initializing Package {'name': 'reportlab', 'version': '3.5.13', 'latest_version': '3.5.67', 'latest_filetype': 'sdist'} of type <class 'dict'>...
2021-06-14 09:55:12,899 | INFO | Fetching package pyserial information from DB...
2021-06-14 09:55:12,899 | INFO | Fetching package reportlab information from DB...
2021-06-14 09:55:12,899 | INFO | Initializing Package {'name': 'requests-oauthlib', 'version': '1.0.0', 'latest_version': '1.3.0', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,900 | INFO | Using cached info for package <Package pyserial (3.4)>.
2021-06-14 09:55:12,900 | INFO | Initializing Package {'name': 'responses', 'version': '0.9.0', 'latest_version': '0.13.3', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,900 | INFO | Fetching package requests-oauthlib information from DB...
2021-06-14 09:55:12,900 | INFO | Fetching package responses information from DB...
2021-06-14 09:55:12,901 | INFO | Initializing Package {'name': 'roman', 'version': '2.0.0', 'latest_version': '3.3', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,901 | INFO | Using cached info for package <Package reportlab (3.5.13)>.
2021-06-14 09:55:12,901 | INFO | Fetching package roman information from DB...
2021-06-14 09:55:12,902 | INFO | Using cached info for package <Package roman (2.0.0)>.
2021-06-14 09:55:12,903 | INFO | Using cached info for package <Package responses (0.9.0)>.
2021-06-14 09:55:12,903 | INFO | Initializing Package {'name': 'SecretStorage', 'version': '2.3.1', 'latest_version': '3.3.1', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,903 | INFO | Initializing Package {'name': 'scrollphathd', 'version': '1.2.1', 'latest_version': '1.3.0', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,903 | INFO | Fetching package SecretStorage information from DB...
2021-06-14 09:55:12,903 | INFO | Fetching package scrollphathd information from DB...
2021-06-14 09:55:12,904 | INFO | Initializing Package {'name': 'simplejson', 'version': '3.16.0', 'latest_version': '3.17.2', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,904 | INFO | Using cached info for package <Package SecretStorage (2.3.1)>.
2021-06-14 09:55:12,904 | INFO | Fetching package simplejson information from DB...
2021-06-14 09:55:12,904 | INFO | Using cached info for package <Package requests-oauthlib (1.0.0)>.
2021-06-14 09:55:12,905 | INFO | Initializing Package {'name': 'six', 'version': '1.12.0', 'latest_version': '1.16.0', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,905 | INFO | Using cached info for package <Package scrollphathd (1.2.1)>.
2021-06-14 09:55:12,906 | INFO | Fetching package six information from DB...
2021-06-14 09:55:12,906 | INFO | Using cached info for package <Package simplejson (3.16.0)>.
2021-06-14 09:55:12,907 | INFO | Using cached info for package <Package six (1.12.0)>.
2021-06-14 09:55:12,907 | INFO | Initializing Package {'name': 'soupsieve', 'version': '1.8', 'latest_version': '2.2.1', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,908 | INFO | Initializing Package {'name': 'ssh-import-id', 'version': '5.7', 'latest_version': '5.11', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,908 | INFO | Fetching package soupsieve information from DB...
2021-06-14 09:55:12,908 | INFO | Initializing Package {'name': 'speedtest-cli', 'version': '2.0.2', 'latest_version': '2.1.3', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,908 | INFO | Fetching package ssh-import-id information from DB...
2021-06-14 09:55:12,910 | INFO | Using cached info for package <Package ssh-import-id (5.7)>.
2021-06-14 09:55:12,909 | INFO | Fetching package speedtest-cli information from DB...
2021-06-14 09:55:12,910 | INFO | Using cached info for package <Package soupsieve (1.8)>.
2021-06-14 09:55:12,911 | INFO | Initializing Package {'name': 'twython', 'version': '3.7.0', 'latest_version': '3.8.2', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,911 | INFO | Initializing Package {'name': 'typed-ast', 'version': '1.3.1', 'latest_version': '1.4.3', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,912 | INFO | Fetching package twython information from DB...
2021-06-14 09:55:12,912 | INFO | Fetching package typed-ast information from DB...
2021-06-14 09:55:12,912 | INFO | Initializing Package {'name': 'urllib3', 'version': '1.24.1', 'latest_version': '1.26.5', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,912 | INFO | Fetching package urllib3 information from DB...
2021-06-14 09:55:12,913 | INFO | Using cached info for package <Package typed-ast (1.3.1)>.
2021-06-14 09:55:12,913 | INFO | Using cached info for package <Package speedtest-cli (2.0.2)>.
2021-06-14 09:55:12,913 | INFO | Using cached info for package <Package twython (3.7.0)>.
2021-06-14 09:55:12,914 | INFO | Initializing Package {'name': 'Werkzeug', 'version': '0.14.1', 'latest_version': '2.0.1', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,914 | INFO | Fetching package Werkzeug information from DB...
2021-06-14 09:55:12,914 | INFO | Using cached info for package <Package urllib3 (1.24.1)>.
2021-06-14 09:55:12,915 | INFO | Using cached info for package <Package Werkzeug (0.14.1)>.
2021-06-14 09:55:12,915 | INFO | Initializing Package {'name': 'wheel', 'version': '0.32.3', 'latest_version': '0.36.2', 'latest_filetype': 'wheel'} of type <class 'dict'>...
2021-06-14 09:55:12,916 | INFO | Fetching package wheel information from DB...
2021-06-14 09:55:12,916 | INFO | Initializing Package {'name': 'wrapt', 'version': '1.10.11', 'latest_version': '1.12.1', 'latest_filetype': 'sdist'} of type <class 'dict'>...
2021-06-14 09:55:12,917 | INFO | Fetching package wrapt information from DB...
2021-06-14 09:55:12,917 | INFO | Using cached info for package <Package wheel (0.32.3)>.
2021-06-14 09:55:12,919 | INFO | Using cached info for package <Package wrapt (1.10.11)>.
2021-06-14 09:55:13,022 | INFO | Packages within `pip` /home/pi/.local/bin/pip3 found: [<Package asn1crypto (0.24.0)>, <Package astroid (2.1.0)>, <Package asttokens (1.1.13)>, <Package automationhat (0.2.0)>, <Package beautifulsoup4 (4.7.1)>, <Package certifi (2018.8.24)>, <Package chardet (3.0.4)>, <Package Click (7.0)>, <Package colorama (0.3.7)>, <Package colorzero (1.1)>, <Package cryptography (2.6.1)>, <Package docutils (0.14)>, <Package envirophat (1.0.0)>, <Package Flask (1.0.2)>, <Package html5lib (1.0.1)>, <Package idna (2.6)>, <Package isort (4.3.4)>, <Package itsdangerous (0.24)>, <Package jedi (0.13.2)>, <Package Jinja2 (2.10)>, <Package keyring (17.1.1)>, <Package keyrings.alt (3.1.1)>, <Package lazy-object-proxy (1.3.1)>, <Package logilab-common (1.4.2)>, <Package lxml (4.3.2)>, <Package MarkupSafe (1.1.0)>, <Package mypy (0.670)>, <Package mypy-extensions (0.4.1)>, <Package numpy (1.16.2)>, <Package oauthlib (2.1.0)>, <Package parso (0.3.1)>, <Package pexpect (4.6.0)>, <Package pgzero (1.2)>, <Package Pillow (5.4.1)>, <Package psutil (5.5.1)>, <Package pycairo (1.16.2)>, <Package pycups (1.9.73)>, <Package pycurl (7.43.0.2)>, <Package pygame (1.9.4.post1)>, <Package Pygments (2.3.1)>, <Package PyGObject (3.30.4)>, <Package PyJWT (1.7.0)>, <Package pylint (2.2.2)>, <Package pyOpenSSL (19.0.0)>, <Package pyserial (3.4)>, <Package pysmbc (1.0.15.6)>, <Package pyxdg (0.25)>, <Package reportlab (3.5.13)>, <Package requests (2.21.0)>, <Package requests-oauthlib (1.0.0)>, <Package responses (0.9.0)>, <Package roman (2.0.0)>, <Package scrollphathd (1.2.1)>, <Package SecretStorage (2.3.1)>, <Package simplejson (3.16.0)>, <Package six (1.12.0)>, <Package soupsieve (1.8)>, <Package speedtest-cli (2.0.2)>, <Package ssh-import-id (5.7)>, <Package twython (3.7.0)>, <Package typed-ast (1.3.1)>, <Package urllib3 (1.24.1)>, <Package Werkzeug (0.14.1)>, <Package wheel (0.32.3)>, <Package wrapt (1.10.11)>]...

multiprocessing.pool.RemoteTraceback:
"""
Traceback (most recent call last):
  File "/usr/lib/python3.7/multiprocessing/pool.py", line 121, in worker
    result = (True, func(*args, **kwds))
  File "/home/pi/.local/lib/python3.7/site-packages/pipupgrade/commands/helper.py", line 321, in get_registry_from_pip
    format = "json", pip_exec = pip_path, output = True)
  File "/home/pi/.local/lib/python3.7/site-packages/pipupgrade/_pip.py", line 75, in call
    output = popen(*params, output = output, raise_err = raise_err)
  File "/home/pi/.local/lib/python3.7/site-packages/pipupgrade/util/system.py", line 92, in popen
    raise PopenError(code, command)
pipupgrade.exception.PopenError: Command '/usr/bin/pip2 list --outdated --format json' returned non-zero exit status 2.
"""

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/home/pi/.local/lib/python3.7/site-packages/pipupgrade/commands/__init__.py", line 78, in command
    return _command(**ARGUMENTS)
  File "/home/pi/.local/lib/python3.7/site-packages/pipupgrade/commands/__init__.py", line 233, in _command
    pip_path
  File "/usr/lib/python3.7/multiprocessing/pool.py", line 748, in next
    raise value
pipupgrade.exception.PopenError: Command '/usr/bin/pip2 list --outdated --format json' returned non-zero exit status 2.

An error occured while performing the above command. This could be an issue with
"pipupgrade". Kindly post an issue at https://github.com/achillesrasquinha/pipupgrade/issues"

Upgrading pip2 solved this.


pi@hop4:~ $ pip2 --version
pip 18.1 from /usr/lib/python2.7/dist-packages/pip (python 2.7)

pi@hop4:~ $ pip2 install -U pip
Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple
Collecting pip
  Downloading https://files.pythonhosted.org/packages/27/79/8a850fe3496446ff0d584327ae44e7500daf6764ca1a382d2d02789accf7/pip-20.3.4-py2.py3-none-any.whl (1.5MB)
    100% |████████████████████████████████| 1.5MB 314kB/s
Installing collected packages: pip
Successfully installed pip-20.3.4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants