Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fleshing out pipFlags comment * Filter pip freeze based on normalized form pip freeze output is actually pip's internal canonicalized form, which can be different from the normalized package name format. Example: `discord.py` gets normalized into `discord-py`, but `pip show discord-py` still outputs `Name: discord.py`. * Avoid normalizing pip canonical package name Names in requirements.txt are the package as tracked in package metadata, not necessarily the normalized name of the package. Example: pip install discord-py will add `discord.py` to the output of `pip freeze`.
- Loading branch information