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'm using riot for a package that has a couple of "contrib" sub-packages that add some support for 3rd party libraries. To manage the peer dependencies for these, I'm using the extras_require dict in setup.py.
I have a Venv to run tests, but for those tests I need to have the extra requirements installed, I guess using something like this pip install -e .[feature1].
It would be cool if this was possible, maybe something like this:
I'm using riot for a package that has a couple of "contrib" sub-packages that add some support for 3rd party libraries. To manage the peer dependencies for these, I'm using the
extras_require
dict in setup.py.I have a
Venv
to run tests, but for those tests I need to have the extra requirements installed, I guess using something like thispip install -e .[feature1]
.It would be cool if this was possible, maybe something like this:
In the meantime, I think I'll work around this by just adding the dependencies to the
pkgs
of the test Venv.The text was updated successfully, but these errors were encountered: