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
Our build system installs a python package that contains khoros==5.4.0, and it is installed through pip. I'm seeing this error:
khoros 5.4.0 has requirement urllib3<1.27.0,>=1.26.2, but you'll have urllib3 2.2.3 which is incompatible.
For some reason pip does not exit with a non-zero status, so everything seems to work. However, this is concerning since pip may actual start treating this as a severe enough error to not allow khoros to be installed.
Steps to Reproduce
I think you should be able to reproduce this by creating a requirements.txt file that contains the following:
khoros==5.4.0
urllib3==2.2.3
In a virtualenv, run pip install -r requirements.txt
Expected Behavior
The pip error should be not shown.
Suggestions or Proposals
I'm not sure how this package uses urllib3, but it should support the 2.x versions since they have a lot of security fixes.
The text was updated successfully, but these errors were encountered:
Details
Our build system installs a python package that contains
khoros==5.4.0
, and it is installed throughpip
. I'm seeing this error:For some reason
pip
does not exit with a non-zero status, so everything seems to work. However, this is concerning sincepip
may actual start treating this as a severe enough error to not allowkhoros
to be installed.Steps to Reproduce
I think you should be able to reproduce this by creating a
requirements.txt
file that contains the following:In a
virtualenv
, runpip install -r requirements.txt
Expected Behavior
The
pip
error should be not shown.Suggestions or Proposals
I'm not sure how this package uses
urllib3
, but it should support the2.x
versions since they have a lot of security fixes.The text was updated successfully, but these errors were encountered: