You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am building a Docker image with supervisor and other Python packages. The Docker image is based on debian:bullseye with Python 3.9.2. All the installs in the image are happening as root user and the installation of supervisor via pip3 install supervisor downgrades setuptools from 57.x to 40.8. This causes other package installations to fail.
If I tried to install supervisor on my non-root environment the setuptools is not downgraded.
The text was updated successfully, but these errors were encountered:
the installation of supervisor via pip3 install supervisor downgrades setuptools from 57.x to 40.8.
The version of the supervisor package being installed in the screenshots above, 4.2.5, has setuptools as its only dependency in setup.py. It lists only setuptools and not any particular version of setuptools.
Since supervisor does not require any particular version of setuptools and has no other dependencies which might, I don't know why setuptools is being downgraded.
I am building a Docker image with supervisor and other Python packages. The Docker image is based on
debian:bullseye
with Python 3.9.2. All the installs in the image are happening as root user and the installation ofsupervisor
viapip3 install supervisor
downgradessetuptools
from57.x
to40.8
. This causes other package installations to fail.If I tried to install
supervisor
on my non-root environment thesetuptools
is not downgraded.The text was updated successfully, but these errors were encountered: