Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: pypa/installer
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: pypa/installer
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: release/0.7.0
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 3 commits
  • 6 files changed
  • 4 contributors

Commits on Mar 2, 2023

  1. Configuration menu
    Copy the full SHA
    bd87216 View commit details
    Browse the repository at this point in the history
  2. Explicitly use policy=compat32

    The documentation in
    https://packaging.python.org/en/latest/specifications/core-metadata/
    claims that metadata should be parsed with compat32 policy.
    
    The documentation in
    https://docs.python.org/3/library/email.parser.html#feedparser-api
    claims that policy should always be specified and that the default will
    change at some point.
    hauntsaninja authored and pradyunsg committed Mar 2, 2023
    Configuration menu
    Copy the full SHA
    b541f6a View commit details
    Browse the repository at this point in the history
  3. Normalize RECORD file paths when parsing

    The `RECORD` file is permitted contain paths with backslashes (eg: on
    Windows). Normalising these paths to forward slashes on parse makes it
    so that consumers of the `RECORD` file that use `parse_record_file`
    do not need to worry about handling this edge case/normalisation. This
    does mean that `RECORD` parsing with this function would not be
    round-trip safe, but that is not an intended use case.
    
    Co-Authored-By: Pradyun Gedam <[email protected]>
    yodaldevoid and pradyunsg committed Mar 2, 2023
    Configuration menu
    Copy the full SHA
    f9b9fc8 View commit details
    Browse the repository at this point in the history
Loading