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
For example, --editable "mypkg[dist] @ git+https://github.com/username/mypkg" is supposed to work. That it doesn't work in pip right now is an implementation limitation. See: pypa/pip#1289.
The text was updated successfully, but these errors were encountered:
## Summary
This will help prevent bugs like #3934 by unifying the implementations
for editables and non-editable unnamed requirements. Specifically, both
of these now go through the same parsing paths and use the same struct
representations (with the exception that the editable flag is flipped in
the first case):
```
-e ./foo/bar
./foo/bar
```
We also now support PEP 508 in editable URLs. It turns out this is just
a limitation in pip, so it's correct to support it. For example, this
now works:
```
-e black[d] @ file://${PROJECT_ROOT}/scripts/packages/black_editable
```
Closes#3941.
Closes#3942.
For example,
--editable "mypkg[dist] @ git+https://github.com/username/mypkg"
is supposed to work. That it doesn't work in pip right now is an implementation limitation. See: pypa/pip#1289.The text was updated successfully, but these errors were encountered: