Installing Unicorn for Python 2.7 fails when installing with Python 2.7 when the tar.gz is used. This will happen on any platform which does not already have a suitable wheel present. It would also be seen if a version of pip prior to the introduction of the wheel architecture changes is installed (eg around 19.x or earlier).
This might not be a big deal as there may already be versions present for all the major OS versions that are supported, but it's a thing that currently happens.
As such this is probably not a very important bug.
Summary
Installing Unicorn for Python 2.7 fails when installing with Python 2.7 when the tar.gz is used. This will happen on any platform which does not already have a suitable wheel present. It would also be seen if a version of
pip
prior to the introduction of the wheel architecture changes is installed (eg around 19.x or earlier).This might not be a big deal as there may already be versions present for all the major OS versions that are supported, but it's a thing that currently happens.
As such this is probably not a very important bug.
Steps to provoke
docker run -it --rm ubuntu:18.04
apt-get update && apt-get install -y python python-pip
pip install --no-binary :all: -U unicorn
Failing output
Expected behaviour
You would expect it to build and install the package.