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
This becomes -e .; os_name == 'nt', and Pipenv would run pip like this
pip install -e ".; os_name == 'nt'"
The solution is probably to drop the markers completely from the line. They are not needed since Pipenv already evaluates them before running the pip command anyway.
The text was updated successfully, but these errors were encountered:
This is probably not a problem of Passa, but only a TODO when we eventually integrate Passa into Pipenv.
The problem is that Pipenv passes the line directly to pip, so say if you have
This becomes
-e .; os_name == 'nt'
, and Pipenv would run pip like thisThe solution is probably to drop the markers completely from the line. They are not needed since Pipenv already evaluates them before running the pip command anyway.
The text was updated successfully, but these errors were encountered: