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 have a service that is installing some internal and external packages. In the internal package I have a few extras_require and in the service I have a package that is in conflict with extras_require.
I expect to see this conflict when running pip check
Expected behavior
pip check will display a conflict on the package tenacity. It does show it as conflict if I move it from extras_require to install_requires
pip version
24.0
Python version
3.10
OS
Ubuntu 20.04.6 LTS
How to Reproduce
Have an internal package, called: pack_a with the following info in setup.py
Have a service requirements (tenacity==8.0.1) in requirements.txt file
In the same service, list Internal packages in requirements-internal.txt as install from git with pack_a[b,c] @ git+https://github.com/*****/pack_a.git@0.0.1
Install all packages with pip install -r requirements.txt -r requirements-internal.txt --no-deps
Description
I have a service that is installing some internal and external packages. In the internal package I have a few extras_require and in the service I have a package that is in conflict with extras_require.
I expect to see this conflict when running
pip check
Expected behavior
pip check
will display a conflict on the packagetenacity
. It does show it as conflict if I move it fromextras_require
toinstall_requires
pip version
24.0
Python version
3.10
OS
Ubuntu 20.04.6 LTS
How to Reproduce
pack_a
with the following info insetup.py
tenacity==8.0.1
) inrequirements.txt
filerequirements-internal.txt
as install from git withpack_a[b,c] @ git+https://github.com/*****/pack_a.git@0.0.1
pip install -r requirements.txt -r requirements-internal.txt --no-deps
pip check
tenacity
packageOutput
No broken requirements found.
Code of Conduct
The text was updated successfully, but these errors were encountered: