apio icon indicating copy to clipboard operation
apio copied to clipboard

make deps target requests the installation of package "black" which does not seem to be available

Open dsw opened this issue 2 years ago • 0 comments

Your make deps target requests the installation of package "black" which does not seem to be available. I manually installed pip, so that seems to be up to date.

NOTE: I have python3 version 3.10.4 installed, which seems to be the latest version, so I do not understand the python 2.7 deprecation warnings below.

$ python3 --version
Python 3.10.4

Here is what happens when I run your "deps" target.

~/apio$ make deps
python -m pip install --upgrade pip
DEPRECATION: Python 2.7 reached the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer maintained. pip 21.0 will drop support for Python 2.7 in January 2021. More details about Python 2 support in pip can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support pip 21.0 will remove support for this functionality.
Defaulting to user installation because normal site-packages is not writeable
Requirement already up-to-date: pip in /usr/local/lib/python2.7/site-packages (20.3.4)
python -m pip install black flake8 flit pylint tox tox-gh-actions semantic_version polib
DEPRECATION: Python 2.7 reached the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer maintained. pip 21.0 will drop support for Python 2.7 in January 2021. More details about Python 2 support in pip can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support pip 21.0 will remove support for this functionality.
Defaulting to user installation because normal site-packages is not writeable
ERROR: Could not find a version that satisfies the requirement black (from versions: none)
ERROR: No matching distribution found for black
make: *** [Makefile:5: deps] Error 1

dsw avatar May 24 '22 00:05 dsw