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
In my particular case, I have the line -e . in my requirements.in file. When this is compiled with pip-compile, it transforms that line to the full path of the current directory, like -e /Users/ryanhiebert/Code/python/my-project. Unfortunately, that's not the correct directory for my production servers, so I have to go back into the generated requirements.txt file and change it back to -e ., which is quite annoying.
Can we make it so that -e lines are kept verbatim, or would that cause problems that I've not thought about?
The text was updated successfully, but these errors were encountered:
In my particular case, I have the line
-e .
in myrequirements.in
file. When this is compiled withpip-compile
, it transforms that line to the full path of the current directory, like-e /Users/ryanhiebert/Code/python/my-project
. Unfortunately, that's not the correct directory for my production servers, so I have to go back into the generatedrequirements.txt
file and change it back to-e .
, which is quite annoying.Can we make it so that
-e
lines are kept verbatim, or would that cause problems that I've not thought about?The text was updated successfully, but these errors were encountered: