[14:13:49] <mablanch> Hello. I've got a Python package that declares extra targets (extras_require) that I can install from local sources with `pip install ".[docs,tests]"`. Is there a way to install these targets from a `git+https://` source? I'd like to do something like: `pip install `git+https://...@master#[docs,tests]`. Thanks.
[14:18:19] <xafer> `pip install "pkg[extras] @ git+ssh://git@github.com/user/pkg_repo.git"` should work
[14:19:04] <xafer> (and also work with git+https:// urls