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
Poetry has now deprecated --dev, and instead uses different named groups via --group. Eg:
% poetry add flask
% poetry add --group foo black
Since nox-poetry currently uses something like poetry export --dev --format=requirements.txt, this does not include dependencies defined in other groups—like group foo above. (Worth noting that this still works for the dev group though.)
There currently does not seem to be a way to force poetry export to export all dependencies. See: