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
Wondering how to use the setup.pyextras_require feature for dev requirements rather than dev-requirements.in. I tried pip-compile --pip-args '-e ".[dev]"' but I didn't have any luck.
Example config
For example, I've got the following setup.py where pytest and freezegun are only required in a dev context:
Question
Hi folks!
Wondering how to use the
setup.py
extras_require
feature for dev requirements rather thandev-requirements.in
. I triedpip-compile --pip-args '-e ".[dev]"'
but I didn't have any luck.Example config
For example, I've got the following
setup.py
wherepytest
andfreezegun
are only required in adev
context:and I get the following
requirements.txt
which does not includepytest
orfreezegun
at all:The text was updated successfully, but these errors were encountered: