Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Alphabetically ordered output flag #160

Open
PatMyron opened this issue Apr 30, 2019 · 2 comments
Open

Alphabetically ordered output flag #160

PatMyron opened this issue Apr 30, 2019 · 2 comments

Comments

@PatMyron
Copy link
Contributor

PatMyron commented Apr 30, 2019

Requesting a flag to generate requirements.txt in deterministic order for easier reviews / diffs

#133

@katrinleinweber
Copy link

+1. Is it furthermore feasible to make that a default?

@isaacnorman82
Copy link

First, it would be good to add the word 'sort' somewhere in the title of this issue so it's easier to find. I wanted to raise the same thing because it's a pain to have complex diffs when committing requirements.txt updates to repos.

To do this, I think all that's needed is in pipreqs/pipreqs.py generate_requirements_file() the file write could become:

output_lines = sorted([fmt.format(**item) if item['version'] else '{name}'.format(**item) for item in imports])
out_file.write('\n'.join(output_lines) + '\n')

If there's currently no defined behaviour for the order, I'd avoid making it an option, seems like unnecessary complexity.

Obviously you'd also need to write a test and update the docs.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants