dparse icon indicating copy to clipboard operation
dparse copied to clipboard

Keep whitespace on updates (Python dependencies)

Open jayfk opened this issue 8 years ago • 1 comments

Reference: https://github.com/pyupio/pyup/issues/256

jayfk avatar Oct 30 '17 11:10 jayfk

If you don't have the time to go through https://github.com/pyupio/pyup/issues/256 this issue is about respecting an existing file format, like the one done by pip-compile, in a way that comments aligned to some virtual right column would stick to the same column, even when you change this:

somelibrary==1.9.2      # some comment
other==2.10.2           # some comment

...to something like this:

somelibrary==1.10.2     # some comment
other==2.10.2           # some comment

... and avoid something like this:

somelibrary==1.9.3 # some comment
other==2.10.2 # some comment

rafaelpivato avatar Mar 23 '20 23:03 rafaelpivato