Browse Source
New release of pyinstaller (4.3) broke the script (which is used by freeze_packages.sh). ----- Compare: $ wget https://pypi.org/pypi/pyinstaller/4.3/json $ cat json | jq ".info.requires_dist" [ "setuptools", "altgraph", "pyinstaller-hooks-contrib (>=2020.6)", "importlib-metadata ; python_version < \"3.8\"", "macholib (>=1.8) ; sys_platform == \"darwin\"", "pefile (>=2017.8.1) ; sys_platform == \"win32\"", "pywin32-ctypes (>=0.2.0) ; sys_platform == \"win32\"", "tinyaes (>=1.0.0) ; extra == 'encryption'", "pytest (>=2.7.3) ; extra == 'hook_testing'", "execnet (>=1.5.0) ; extra == 'hook_testing'", "psutil ; extra == 'hook_testing'" ] $ wget https://pypi.org/pypi/pyinstaller/4.2/json | jq . $ cat json | jq ".info.requires_dist" null $ wget https://pypi.org/pypi/qrcode/6.1/json $ cat json | jq ".info.requires_dist" [ "six", "colorama ; platform_system == \"Windows\"", "tox ; extra == 'dev'", "pytest ; extra == 'dev'", "mock ; (python_version < \"3\") and extra == 'dev'", "zest.releaser[recommended] ; extra == 'maintainer'", "pillow ; extra == 'pil'", "pytest ; extra == 'test'", "pytest-cov ; extra == 'test'", "mock ; (python_version < \"3\") and extra == 'test'" ]patch-4
1 changed files with 9 additions and 5 deletions
Loading…
Reference in new issue