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
As discussed in pypa/pipenv#4900, Requirementslib has an issue when the given relative path and the working directory are different. For example, if the working directory is changed to something other than where the python script is executed, but the relative path is relative to where the script was executed, Requirementslib will fail resolving the requirement.
While it might make sense as to why it's impossible to do so, I wish that the error message was worded clearer and not so crypticly.
The text was updated successfully, but these errors were encountered:
Thanks for this example @PythonCoderAS -- and if you go up a directory and do it with pipenv install sphinx/ works just fine, so the dot is causing an issue for a regex somewhere it seems. Thanks for checking that other patch which seems to solve a different issue I was checking on. Will take some more investigating to figure out where to patch this in requirementslib.
As discussed in pypa/pipenv#4900, Requirementslib has an issue when the given relative path and the working directory are different. For example, if the working directory is changed to something other than where the python script is executed, but the relative path is relative to where the script was executed, Requirementslib will fail resolving the requirement.
While it might make sense as to why it's impossible to do so, I wish that the error message was worded clearer and not so crypticly.
The text was updated successfully, but these errors were encountered: